/* ===== TELEGRAM PAGE ===== */
.telegram-page {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #0a0e27 100%);
}

.telegram-hero {
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.1) 0%, rgba(0, 136, 204, 0.05) 100%);
    border: 1px solid rgba(0, 136, 204, 0.2);
    border-radius: 12px;
}

.telegram-profile {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.bot-image {
    width: 150px;
    height: 150px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 8px 32px rgba(0, 136, 204, 0.2);
}

.bot-info {
    flex: 1;
}

.bot-name {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.telegram-name span {
    color: var(--accent-pink);
}

.bot-subtitle {
    font-size: 1.1rem;
    color: var(--accent-cyan);
    font-weight: 600;
}

.telegram-subtitle {
    color: var(--accent-cyan);
}

/* ===== BOT CONTENT ===== */
.bot-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.content-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.content-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.content-section p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.feature-list li {
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
    font-weight: bold;
}

/* ===== FEATURES GRID ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.feature-item {
    padding: 1.5rem;
    background-color: rgba(0, 136, 204, 0.05);
    border: 1px solid rgba(0, 136, 204, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background-color: rgba(0, 136, 204, 0.1);
    border-color: var(--accent-cyan);
    transform: translateY(-4px);
}

.feature-item h3 {
    color: var(--accent-cyan);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== CTA SECTION ===== */
.cta-section {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.1) 0%, rgba(0, 136, 204, 0.05) 100%);
    border: 1px solid rgba(0, 136, 204, 0.2);
    border-radius: 12px;
    margin-top: 2rem;
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.cta-section p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.cta-section .btn {
    margin: 0 auto;
    background-color: var(--accent-cyan);
}

.cta-section .btn:hover {
    box-shadow: 0 8px 16px rgba(0, 136, 204, 0.3);
}

/* ===== SOCIAL SECTION ===== */
.social-section {
    text-align: center;
    padding: 2rem;
    background-color: rgba(0, 136, 204, 0.05);
    border: 1px solid rgba(0, 136, 204, 0.2);
    border-radius: 12px;
}

.social-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-link {
    padding: 0.75rem 1.5rem;
    background-color: rgba(0, 136, 204, 0.1);
    border: 1px solid rgba(0, 136, 204, 0.3);
    border-radius: 6px;
    color: var(--accent-cyan);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--accent-cyan);
    color: white;
    border-color: var(--accent-cyan);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .telegram-profile {
        flex-direction: column;
        text-align: center;
    }

    .bot-image {
        width: 120px;
        height: 120px;
    }

    .bot-name {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .social-links {
        flex-direction: column;
    }

    .social-link {
        width: 100%;
    }
}

