/* ===== DISCORD PAGE ===== */
.discord-page {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a1f3a 100%);
}

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

.discord-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(88, 101, 242, 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;
}

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

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

.discord-subtitle {
    color: var(--accent-blue);
}

/* ===== 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;
}

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

.command-item {
    padding: 1.5rem;
    background-color: rgba(88, 101, 242, 0.05);
    border: 1px solid rgba(88, 101, 242, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.command-item:hover {
    background-color: rgba(88, 101, 242, 0.1);
    border-color: var(--accent-blue);
    transform: translateY(-4px);
}

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

.command-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(88, 101, 242, 0.1) 0%, rgba(88, 101, 242, 0.05) 100%);
    border: 1px solid rgba(88, 101, 242, 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-blue);
}

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

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

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

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

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

