/* Bot Page Specific Styles */

.bot-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 80px 20px;
    text-align: center;
}

.bot-hero-content {
    max-width: 800px;
    margin: 0 auto;
    z-index: 10;
}

.telegram-icon-large {
    margin-bottom: 30px;
    animation: float 3s ease-in-out infinite;
}

.telegram-icon-large svg {
    filter: drop-shadow(0 0 30px rgba(0, 168, 255, 0.6));
    fill: #00A8FF;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.bot-hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #00A8FF 0%, #0077FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bot-hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* About Section */
.bot-about {
    padding: 80px 20px;
}

.bot-about .container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.bot-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 30px;
}

/* Features Section */
.bot-features {
    padding: 80px 20px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.bot-feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.bot-feature-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 168, 255, 0.5);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: block;
}

.bot-feature-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.bot-feature-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* How It Works Section */
.bot-how-it-works {
    padding: 80px 20px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.step-card {
    text-align: center;
    padding: 30px;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00A8FF 0%, #0077FF 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 900;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(0, 168, 255, 0.4);
}

.step-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.step-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Commands Section */
.bot-commands {
    padding: 80px 20px;
}

.commands-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.command-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
}

.command-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 168, 255, 0.5);
    transform: translateX(5px);
}

.command-item code {
    display: block;
    background: rgba(0, 168, 255, 0.1);
    color: #00A8FF;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: 'Courier New', monospace;
}

.command-item p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

.commands-note {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(0, 168, 255, 0.05);
    border: 1px solid rgba(0, 168, 255, 0.2);
    border-radius: 12px;
    text-align: center;
}

.commands-note p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

/* Mobile App Section */
.bot-mobile-app {
    padding: 80px 20px;
}

.bot-mobile-app .container {
    max-width: 1000px;
    margin: 0 auto;
}

.mobile-app-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 30px;
    margin-bottom: 50px;
    text-align: center;
}

.mobile-app-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.mobile-app-feature {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.mobile-app-feature:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 168, 255, 0.5);
    transform: translateY(-5px);
}

.mobile-app-feature h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.mobile-app-feature p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.bot-cta {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(0, 168, 255, 0.1) 0%, rgba(0, 119, 255, 0.1) 100%);
    text-align: center;
    border-top: 1px solid rgba(0, 168, 255, 0.2);
}

.cta-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

/* Telegram Button in Navbar */
.telegram-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #00A8FF 0%, #0077FF 100%);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 168, 255, 0.3);
    margin-right: 15px;
}

.telegram-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 168, 255, 0.5);
}

.telegram-btn svg {
    width: 22px;
    height: 22px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .bot-hero-title {
        font-size: 2.5rem;
    }

    .bot-hero-subtitle {
        font-size: 1.2rem;
    }

    .feature-grid,
    .steps-grid,
    .commands-list {
        grid-template-columns: 1fr;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-subtitle {
        font-size: 1.1rem;
    }

    .telegram-icon-large svg {
        width: 80px;
        height: 80px;
    }
}
