/* ===== PAGE HEADER ===== */
.page-header {
    margin-top: 80px;
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(6, 182, 212, 0.1));
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.header-content h1 {
    margin-bottom: 0.5rem;
}

.header-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* ===== INFO BANNER ===== */
.info-banner {
    padding: 2rem 0;
    background-color: rgba(16, 185, 129, 0.1);
    border-bottom: 1px solid rgba(16, 185, 129, 0.3);
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.banner-content i {
    font-size: 2rem;
    color: var(--success);
    flex-shrink: 0;
}

.banner-content h3 {
    margin-bottom: 0.25rem;
    color: var(--success);
}

.banner-content p {
    margin: 0;
    font-size: 0.95rem;
}

/* ===== DOWNLOADS SECTION ===== */
.downloads-section {
    padding: 6rem 0;
}


/* ===== DOWNLOADS GRID ===== */
.downloads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.download-card {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(6, 182, 212, 0.05));
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.download-card:hover {
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.2);
    transform: translateY(-10px);
}

.download-card.hidden {
    display: none;
}

/* ===== DOWNLOAD HEADER ===== */
.download-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.download-icon {
    width: 80px;
    height: 80px;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    flex-shrink: 0;
}

.download-icon.minecraft {
    background: linear-gradient(135deg, #2d5016, #4a7c2c);
}

.download-icon.games {
    background: linear-gradient(135deg, #7c2d16, #c44536);
}

.download-icon.tools {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
}

.download-header h3 {
    margin: 0;
    font-size: 1.25rem;
}

/* ===== DOWNLOAD BUTTONS ===== */
.download-buttons {
    display: flex;
    justify-content: center;
    width: 100%;
}

.download-btn {
    width: 100%;
    max-width: 250px;
    justify-content: center;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 6rem 0;
    background-color: var(--dark-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(6, 182, 212, 0.05));
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.2);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(124, 58, 237, 0.1);
}

.faq-question h4 {
    margin: 0;
    font-size: 1rem;
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: rgba(124, 58, 237, 0.05);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ===== SUPPORT SECTION ===== */
.support-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(6, 182, 212, 0.1));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.support-content {
    text-align: center;
}

.support-content h2 {
    margin-bottom: 1rem;
}

.support-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .page-header {
        padding: 2rem 0;
    }

    .header-content h1 {
        font-size: 2rem;
    }

    .downloads-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .download-buttons {
        flex-direction: column;
    }

    .download-btn {
        width: 100%;
        max-width: 100%;
    }

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

    .banner-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 1.5rem 0;
    }

    .header-content h1 {
        font-size: 1.5rem;
    }

    .header-content p {
        font-size: 0.95rem;
    }

    .download-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .download-header h3 {
        font-size: 1.1rem;
    }

    .faq-question {
        padding: 1rem;
    }

    .faq-question h4 {
        font-size: 0.95rem;
    }

    .faq-answer p {
        padding: 0 1rem 1rem;
        font-size: 0.9rem;
    }
}
