/* style/download-center.css */
.page-download-center {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text on dark background */
    background-color: #0A192F; /* Main background color */
    line-height: 1.6;
}

.page-download-center h1, .page-download-center h2, .page-download-center h3, .page-download-center h4 {
    color: #FFD700; /* Gold for headings */
    margin-bottom: 1rem;
    font-weight: bold;
}

.page-download-center h1 {
    font-size: 2.8rem;
    text-align: center;
}

.page-download-center h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
}

.page-download-center h3 {
    font-size: 1.8rem;
    color: #FFD700; /* Gold for sub-headings */
}

.page-download-center h4 {
    font-size: 1.4rem;
    color: #FFD700; /* Gold for step titles */
}

.page-download-center a {
    color: #FFD700; /* Gold for links */
    text-decoration: none;
}

.page-download-center a:hover {
    text-decoration: underline;
    color: #FFF; /* White on hover */
}

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

.page-download-center__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 10px 10px 10px 0;
    white-space: nowrap;
}

.page-download-center__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #0A192F; /* Dark blue */
    border: 2px solid #FFD700;
}

.page-download-center__btn--primary:hover {
    background-color: #e6c200; /* Darker gold */
    color: #000;
    transform: translateY(-2px);
}

.page-download-center__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold */
    border: 2px solid #FFD700;
}

.page-download-center__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A192F;
    transform: translateY(-2px);
}

.page-download-center__btn--download {
    background-color: #FFD700;
    color: #0A192F;
    border: none;
    padding: 10px 20px;
    font-size: 0.95rem;
    margin-top: 15px;
}

.page-download-center__btn--download:hover {
    background-color: #e6c200;
    color: #000;
}

.page-download-center__btn--details {
    background-color: #2a4163; /* A slightly lighter shade of dark blue */
    color: #FFD700;
    border: 1px solid #FFD700;
    padding: 8px 15px;
    font-size: 0.9rem;
    margin-top: 10px;
}

.page-download-center__btn--details:hover {
    background-color: #FFD700;
    color: #0A192F;
}

/* Hero Section */
.page-download-center__hero {
    background: linear-gradient(135deg, #0A192F 0%, #2a4163 100%); /* Dark blue gradient */
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    color: #E0E0E0;
    position: relative;
    overflow: hidden;
}

.page-download-center__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract_geometric,dark_blue_gold]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 1;
}

.page-download-center__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin-right: 40px;
}

.page-download-center__hero-image-wrapper {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    width: 350px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-download-center__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: float 3s ease-in-out infinite;
}

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

.page-download-center__hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #FFD700;
    line-height: 1.2;
}

.page-download-center__hero-description {
    font-size: 1.25rem;
    margin-bottom: 30px;
    color: #C0C0C0;
}

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

/* Overview Section */
.page-download-center__overview, .page-download-center__app-downloads, .page-download-center__installation-guide, .page-download-center__detail-pages, .page-download-center__mobile-web, .page-download-center__faq, .page-download-center__cta {
    padding: 60px 0;
    background-color: #1a2a44; /* Slightly lighter dark blue for sections */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-download-center__section-title {
    color: #FFD700;
    margin-bottom: 20px;
}

.page-download-center__section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    font-size: 1.1rem;
    color: #C0C0C0;
}

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

.page-download-center__feature-item {
    background-color: #0A192F;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-download-center__feature-item:hover {
    transform: translateY(-10px);
}

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

.page-download-center__feature-item h3 {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.page-download-center__feature-item p {
    color: #B0B0B0;
    font-size: 1rem;
}

/* App Downloads Section */
.page-download-center__download-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-download-center__download-card {
    background-color: #0A192F;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: transform 0.3s ease;
}

.page-download-center__download-card:hover {
    transform: translateY(-10px);
}

.page-download-center__download-image {
    max-width: 180px;
    height: auto;
    margin-bottom: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.page-download-center__download-card h3 {
    color: #FFD700;
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.page-download-center__download-card p {
    color: #B0B0B0;
    font-size: 1rem;
    flex-grow: 1;
    margin-bottom: 20px;
}

/* Installation Guide Section */
.page-download-center__guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-download-center__step {
    background-color: #0A192F;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-download-center__step h4 {
    color: #FFD700;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.page-download-center__step p {
    color: #B0B0B0;
}

.page-download-center__note {
    text-align: center;
    margin-top: 40px;
    font-style: italic;
    color: #C0C0C0;
    font-size: 1rem;
}

/* Detail Pages Section */
.page-download-center__detail-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.page-download-center__detail-item {
    background-color: #0A192F;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-download-center__detail-item h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.page-download-center__detail-item h3 a {
    color: #FFD700;
}

.page-download-center__detail-item p {
    color: #B0B0B0;
    font-size: 0.95rem;
    flex-grow: 1;
    margin-bottom: 15px;
}

/* Mobile Web Section */
.page-download-center__mobile-web {
    background-color: #0A192F;
}

.page-download-center__mobile-web-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
}

.page-download-center__mobile-web-image {
    max-width: 450px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-download-center__mobile-web-text {
    max-width: 500px;
}

.page-download-center__mobile-web-text h3 {
    color: #FFD700;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.page-download-center__mobile-web-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-download-center__mobile-web-text ul li {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="%23FFD700"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>') no-repeat left 8px;
    background-size: 18px;
    padding-left: 30px;
    margin-bottom: 10px;
    color: #E0E0E0;
    font-size: 1.05rem;
}

.page-download-center__mobile-web-text ul li strong {
    color: #FFD700;
}

/* FAQ Section */
.page-download-center__faq-items {
    margin-top: 40px;
}

.page-download-center__faq-item {
    background-color: #0A192F;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-download-center__faq-item h3 {
    color: #FFD700;
    font-size: 1.4rem;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-download-center__faq-item h3::after {
    content: '+';
    font-size: 1.8rem;
    transition: transform 0.3s ease;
}

.page-download-center__faq-item.active h3::after {
    content: '-';
    transform: rotate(180deg);
}

.page-download-center__faq-item p {
    color: #B0B0B0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
    opacity: 0;
    padding-top: 0;
}

.page-download-center__faq-item.active p {
    max-height: 200px; /* Adjust as needed */
    opacity: 1;
    padding-top: 15px;
}

/* CTA Section */
.page-download-center__cta {
    text-align: center;
    padding: 80px 0;
    background: linear-gradient(135deg, #2a4163 0%, #0A192F 100%);
}

.page-download-center__cta .page-download-center__section-title {
    color: #FFD700;
    font-size: 2.5rem;
}

.page-download-center__cta .page-download-center__section-intro {
    color: #C0C0C0;
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.page-download-center__btn--large {
    padding: 15px 35px;
    font-size: 1.1rem;
    margin: 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-download-center__hero .page-download-center__container {
        flex-direction: column;
        text-align: center;
    }
    .page-download-center__hero-content {
        margin-right: 0;
        margin-bottom: 40px;
    }
    .page-download-center__hero-title {
        font-size: 3rem;
    }
    .page-download-center__hero-description {
        font-size: 1.1rem;
    }
    .page-download-center__mobile-web-content {
        flex-direction: column;
    }
    .page-download-center__mobile-web-image {
        max-width: 80%;
    }
    .page-download-center__mobile-web-text {
        text-align: center;
    }
    .page-download-center__mobile-web-text ul {
        text-align: left;
        display: inline-block;
    }
}

@media (max-width: 768px) {
    .page-download-center__hero-title {
        font-size: 2.5rem;
    }
    .page-download-center h2 {
        font-size: 1.8rem;
    }
    .page-download-center h3 {
        font-size: 1.5rem;
    }
    .page-download-center__btn {
        width: 100%;
        margin-right: 0;
    }
    .page-download-center__hero-actions {
        flex-direction: column;
        align-items: center;
    }
    .page-download-center__features, .page-download-center__download-options, .page-download-center__guide-steps, .page-download-center__detail-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-download-center__hero {
        padding: 50px 0;
    }
    .page-download-center__hero-title {
        font-size: 2rem;
    }
    .page-download-center__hero-description {
        font-size: 1rem;
    }
    .page-download-center__btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    .page-download-center__section-intro {
        font-size: 1rem;
    }
    .page-download-center__hero-image-wrapper {
        width: 250px;
        height: 250px;
    }
}