/* style/download-center.css */

/* Base styles for the download center page */
.page-download-center {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #E0E0E0; /* Light gray for general text on dark background */
    background-color: #1A1A2E; /* Primary dark background */
    line-height: 1.6;
}

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

/* Hero Section */
.page-download-center__hero {
    background: linear-gradient(135deg, #1A1A2E 0%, #3A3A5E 100%); /* Gradient background */
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: #FFFFFF;
}

.page-download-center__hero-title {
    font-size: 3.2em;
    color: #E0B95B; /* Gold for main title */
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-download-center__hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #D0D0D0;
}

.page-download-center__button {
    display: inline-block;
    background-color: #E0B95B; /* Gold button */
    color: #1A1A2E; /* Dark text on gold */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    margin: 10px;
}

.page-download-center__button:hover {
    background-color: #FFD700; /* Lighter gold on hover */
    transform: translateY(-3px);
}

.page-download-center__button--secondary {
    background-color: transparent;
    border: 2px solid #E0B95B;
    color: #E0B95B;
}

.page-download-center__button--secondary:hover {
    background-color: #E0B95B;
    color: #1A1A2E;
}

.page-download-center__button--primary {
    box-shadow: 0 5px 15px rgba(224, 185, 91, 0.4);
}

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

/* General Section Styles */
.page-download-center__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(224, 185, 91, 0.1);
}

.page-download-center__section-title {
    font-size: 2.5em;
    color: #E0B95B; /* Gold for section titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
}

.page-download-center__section-description {
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
    color: #CCCCCC;
}

.page-download-center__content-flex {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.page-download-center__content-flex--reverse {
    flex-direction: row-reverse;
}

.page-download-center__text-content {
    flex: 1;
    min-width: 300px;
}

.page-download-center__text-content p {
    margin-bottom: 20px;
    color: #E0E0E0;
}

.page-download-center__list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-download-center__list 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="%23E0B95B"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>') no-repeat left center;
    background-size: 20px;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1.05em;
    color: #E0E0E0;
}

.page-download-center__list-highlight {
    color: #E0B95B;
}

.page-download-center__image-wrapper {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.page-download-center__platform-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* Benefits Section */
.page-download-center__section--benefits {
    background-color: #2A2A4A;
    padding-bottom: 80px;
}

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

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

.page-download-center__benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-download-center__benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #E0B95B);
}

.page-download-center__benefit-title {
    font-size: 1.5em;
    color: #E0B95B;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-download-center__benefit-item p {
    color: #D0D0D0;
    font-size: 0.95em;
}

.page-download-center__cta-bottom {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(224, 185, 91, 0.1);
}

.page-download-center__cta-bottom p {
    font-size: 1.3em;
    color: #E0E0E0;
    margin-bottom: 30px;
    font-weight: 500;
}

/* Subpages List Section */
.page-download-center__section--subpages {
    background-color: #1A1A2E;
    padding-bottom: 80px;
}

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

.page-download-center__subpage-item {
    background-color: #2A2A4A;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-download-center__subpage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-download-center__subpage-title {
    font-size: 1.3em;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-download-center__subpage-title a {
    color: #E0B95B; /* Gold for subpage titles */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-download-center__subpage-title a:hover {
    color: #FFD700;
    text-decoration: underline;
}

.page-download-center__subpage-description {
    color: #D0D0D0;
    font-size: 0.9em;
    margin-bottom: 20px;
}

.page-download-center__button--small {
    padding: 10px 20px;
    font-size: 0.9em;
    border-radius: 5px;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-download-center__hero-title {
        font-size: 2.8em;
    }
    .page-download-center__section-title {
        font-size: 2em;
    }
    .page-download-center__content-flex {
        flex-direction: column;
        text-align: center;
    }
    .page-download-center__content-flex--reverse {
        flex-direction: column;
    }
    .page-download-center__text-content, .page-download-center__image-wrapper {
        min-width: unset;
        width: 100%;
    }
    .page-download-center__list {
        text-align: left;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    .page-download-center__platform-image {
        max-width: 80%;
    }
}

@media (max-width: 768px) {
    .page-download-center__hero {
        padding: 60px 0;
    }
    .page-download-center__hero-title {
        font-size: 2.2em;
    }
    .page-download-center__hero-description {
        font-size: 1em;
    }
    .page-download-center__button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-download-center__section {
        padding: 40px 0;
    }
    .page-download-center__section-title {
        font-size: 1.8em;
    }
    .page-download-center__section-description {
        font-size: 1em;
    }
    .page-download-center__grid, .page-download-center__subpage-grid {
        grid-template-columns: 1fr;
    }
    .page-download-center__benefit-item {
        padding: 25px;
    }
    .page-download-center__subpage-item {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .page-download-center__hero-title {
        font-size: 1.8em;
    }
    .page-download-center__hero-description {
        font-size: 0.9em;
    }
    .page-download-center__button {
        padding: 10px 20px;
        font-size: 0.9em;
        margin: 5px;
    }
    .page-download-center__section-title {
        font-size: 1.5em;
    }
    .page-download-center__section-description {
        font-size: 0.9em;
    }
    .page-download-center__list li {
        font-size: 0.9em;
    }
    .page-download-center__cta-bottom p {
        font-size: 1em;
    }
}