/* style/download-center.css */

/* Base styles for the download center page */
.page-download-center {
    font-family: 'Arial', sans-serif;
    color: #e5dfd3; /* Light text for contrast on dark backgrounds */
    background-color: #1A202C; /* Main background color */
    line-height: 1.6;
    scroll-behavior: smooth;
}

.page-download-center__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-download-center__section-title {
    font-size: 2.8em;
    color: #FFD700; /* Gold for main titles */
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-download-center__section-subtitle {
    font-size: 1.2em;
    color: #e5dfd3; /* Light text for readability */
    text-align: center;
    margin-bottom: 60px;
    opacity: 0.9;
}

/* Hero Section */
.page-download-center__hero-section {
    background: linear-gradient(135deg, #1A202C 0%, #3e4d6d 100%); /* Dark blue gradient */
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid #FFD700;
}

.page-download-center__hero-title {
    font-size: 3.5em;
    color: #FFD700; /* Gold title */
    margin-bottom: 25px;
    font-weight: bold;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-download-center__hero-description {
    font-size: 1.4em;
    color: #e5dfd3; /* Light text */
    max-width: 800px;
    margin: 0 auto 40px auto;
    opacity: 0.95;
}

.page-download-center__hero-cta {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-download-center__btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-download-center__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #1A202C; /* Dark text on gold */
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-download-center__btn--primary:hover {
    background-color: #e6c200; /* Darker gold on hover */
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-download-center__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text on dark background */
    border: 2px solid #FFD700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.page-download-center__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A202C;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.page-download-center__hero-image {
    max-width: 600px;
    height: auto;
    margin-top: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s ease;
}

.page-download-center__hero-image:hover {
    transform: scale(1.02);
}

/* Features Section */
.page-download-center__features-section {
    padding: 80px 0;
    background-color: #2a344a; /* Slightly lighter dark blue */
}

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

.page-download-center__feature-item {
    background-color: #1A202C;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.page-download-center__feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.page-download-center__feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.5));
}

.page-download-center__feature-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-download-center__feature-description {
    font-size: 1em;
    color: #e5dfd3;
    opacity: 0.85;
}

/* Download Guide Section */
.page-download-center__download-guide-section {
    padding: 80px 0;
    background-color: #1A202C;
}

.page-download-center__guide-item {
    background-color: #2a344a;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.page-download-center__guide-title {
    font-size: 2.2em;
    color: #FFD700;
    margin-bottom: 25px;
    text-align: center;
    font-weight: bold;
}

.page-download-center__guide-description {
    font-size: 1.1em;
    color: #e5dfd3;
    text-align: center;
    margin-bottom: 30px;
    opacity: 0.9;
}

.page-download-center__qr-code-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.page-download-center__qr-code {
    width: 200px;
    height: 200px;
    border: 5px solid #FFD700;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.page-download-center__qr-info {
    text-align: left;
    max-width: 500px;
    color: #e5dfd3;
}

.page-download-center__qr-info p {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-download-center__qr-info strong {
    color: #FFD700;
}

.page-download-center__btn--download {
    margin-top: 20px;
    background-color: #FFD700;
    color: #1A202C;
    padding: 12px 25px;
    border-radius: 6px;
    font-size: 1em;
    font-weight: bold;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-download-center__btn--download:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

/* Requirements Section */
.page-download-center__requirements-section {
    padding: 80px 0;
    background-color: #2a344a;
}

.page-download-center__requirements-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-download-center__requirements-card {
    background-color: #1A202C;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.page-download-center__card-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: bold;
    text-align: center;
}

.page-download-center__requirements-card ul {
    list-style: none;
    padding: 0;
}

.page-download-center__requirements-card ul li {
    background-color: #2a344a;
    margin-bottom: 10px;
    padding: 15px 20px;
    border-radius: 8px;
    color: #e5dfd3;
    font-size: 1.05em;
    border-left: 3px solid #FFD700;
}

.page-download-center__requirements-card ul li strong {
    color: #FFD700;
}

.page-download-center__cta-bottom {
    text-align: center;
    margin-top: 60px;
}

.page-download-center__cta-bottom p {
    font-size: 1.1em;
    color: #e5dfd3;
    margin-bottom: 30px;
}

/* Updates Section */
.page-download-center__updates-section {
    padding: 80px 0;
    background-color: #1A202C;
}

.page-download-center__update-info {
    background-color: #2a344a;
    padding: 40px;
    border-radius: 12px;
    margin-top: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.1);
    color: #e5dfd3;
}

.page-download-center__update-info p {
    margin-bottom: 20px;
    font-size: 1.1em;
}

.page-download-center__update-info ul {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
}

.page-download-center__update-info ul li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

/* Detail Pages Section */
.page-download-center__detail-pages-section {
    padding: 80px 0;
    background-color: #2a344a;
}

.page-download-center__detail-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-download-center__detail-item {
    background-color: #1A202C;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-download-center__detail-item-title {
    font-size: 1.6em;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-download-center__detail-item-title a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-download-center__detail-item-title a:hover {
    color: #e6c200;
    text-decoration: underline;
}

.page-download-center__detail-item-description {
    font-size: 1em;
    color: #e5dfd3;
    opacity: 0.85;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* FAQ Section */
.page-download-center__faq-section {
    padding: 80px 0;
    background-color: #1A202C;
}

.page-download-center__faq-accordion {
    margin-top: 50px;
}

.page-download-center__faq-item {
    background-color: #2a344a;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.page-download-center__faq-question {
    font-size: 1.4em;
    color: #FFD700;
    padding: 20px 25px;
    cursor: pointer;
    margin: 0;
    position: relative;
    transition: background-color 0.3s ease;
}

.page-download-center__faq-question::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
    font-weight: bold;
    color: #FFD700;
}

.page-download-center__faq-question.active::after {
    content: '-';
}

.page-download-center__faq-question:hover {
    background-color: #3e4d6d;
}

.page-download-center__faq-answer {
    font-size: 1.05em;
    color: #e5dfd3;
    padding: 0 25px 20px 25px;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out, opacity 0.5s ease-out;
    opacity: 0;
}

.page-download-center__faq-answer.active {
    max-height: 200px; /* Adjust based on expected content length */
    padding: 0 25px 20px 25px;
    opacity: 1;
}

/* Final CTA Section */
.page-download-center__cta-final-section {
    padding: 80px 0;
    background: linear-gradient(45deg, #1A202C, #3e4d6d); /* Another gradient */
    text-align: center;
    border-top: 5px solid #FFD700;
}

.page-download-center__final-cta-buttons {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.page-download-center__btn--large {
    padding: 18px 45px;
    font-size: 1.2em;
    border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-download-center__hero-title {
        font-size: 2.8em;
    }
    .page-download-center__hero-description {
        font-size: 1.2em;
    }
    .page-download-center__section-title {
        font-size: 2.2em;
    }
    .page-download-center__section-subtitle {
        font-size: 1em;
    }
    .page-download-center__qr-code-wrapper {
        flex-direction: column;
    }
    .page-download-center__qr-info {
        text-align: center;
    }
    .page-download-center__requirements-content {
        grid-template-columns: 1fr;
    }
    .page-download-center__detail-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-download-center__hero-section {
        padding: 80px 0 50px;
    }
    .page-download-center__hero-title {
        font-size: 2.2em;
    }
    .page-download-center__hero-description {
        font-size: 1em;
    }
    .page-download-center__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-download-center__section-title {
        font-size: 1.8em;
    }
    .page-download-center__features-grid,
    .page-download-center__detail-list {
        gap: 20px;
    }
    .page-download-center__feature-title {
        font-size: 1.5em;
    }
    .page-download-center__guide-title {
        font-size: 1.8em;
    }
    .page-download-center__qr-code-wrapper {
        flex-direction: column;
    }
    .page-download-center__qr-info {
        text-align: center;
    }
    .page-download-center__faq-question {
        font-size: 1.2em;
        padding: 15px 20px;
    }
    .page-download-center__faq-question::after {
        right: 20px;
    }
    .page-download-center__faq-answer {
        padding: 0 20px 15px 20px;
    }
    .page-download-center__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-download-center__hero-section {
        padding: 60px 0 40px;
    }
    .page-download-center__hero-title {
        font-size: 1.8em;
    }
    .page-download-center__hero-description {
        font-size: 0.9em;
    }
    .page-download-center__hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    .page-download-center__btn {
        width: 80%;
        max-width: 250px;
        margin: 0 auto;
    }
    .page-download-center__section-title {
        font-size: 1.5em;
    }
    .page-download-center__section-subtitle {
        font-size: 0.9em;
    }
    .page-download-center__qr-code {
        width: 150px;
        height: 150px;
    }
    .page-download-center__qr-info p {
        font-size: 0.9em;
    }
    .page-download-center__btn--download {
        width: 100%;
        max-width: 200px;
    }
    .page-download-center__faq-question {
        font-size: 1em;
        padding: 12px 15px;
    }
    .page-download-center__faq-question::after {
        right: 15px;
    }
    .page-download-center__faq-answer {
        font-size: 0.9em;
        padding: 0 15px 12px 15px;
    }
    .page-download-center__final-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}