/* style/download.css */

/* Base styles for the page content */
.page-download {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Dark body background #1a1a2e, so light text */
    background-color: #1a1a2e; /* Inherited from shared, but for clarity */
}

.page-download__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Sections */
.page-download__hero-section,
.page-download__benefits-section,
.page-download__installation-guide-section,
.page-download__game-showcase-section,
.page-download__security-support-section,
.page-download__faq-section,
.page-download__cta-section {
    padding: 80px 0;
    text-align: center;
}

.page-download__dark-bg {
    background-color: #017439; /* Brand primary color for dark sections */
    color: #ffffff;
}

.page-download__light-bg {
    background-color: #ffffff;
    color: #333333; /* Dark text for light background */
}

/* Hero Section */
.page-download__hero-section {
    padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    background-color: #1a1a2e; /* Match body background for hero */
    color: #ffffff;
}

.page-download__hero-section .page-download__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.page-download__hero-content {
    max-width: 700px;
    text-align: center;
}

.page-download__main-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #ffffff;
    line-height: 1.2;
}

.page-download__description {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #f0f0f0;
}

.page-download__download-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
}

.page-download__btn-primary {
    background-color: #C30808; /* Register/Login color for primary action */
    color: #FFFF00; /* Register/Login font color */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-download__btn-primary:hover {
    background-color: #a00606;
}

/* Button icons must be >= 200x200px as per strict rule */
.page-download__button-icon {
    width: 200px; /* Enforce min 200x200px for all images including icons */
    height: 200px; /* Enforce min 200x200px for all images including icons */
    object-fit: contain; /* Ensure icon scales within its bounds */
}

.page-download__qr-code-area {
    margin-top: 30px;
}

.page-download__qr-text {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #f0f0f0;
}

.page-download__qr-image {
    width: 300px;
    height: 300px;
    border: 5px solid #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-download__hero-image-wrapper {
    margin-top: 40px;
}

.page-download__hero-image {
    width: 800px;
    height: 600px;
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* General Section Titles and Descriptions */
.page-download__section-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: inherit; /* Inherit from section for contrast */
}

.page-download__section-description {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 50px auto;
    color: inherit;
}