/* style/download.css */

/* Global styles for the download page content */
.page-download {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #FFF6D6; /* Main text color for dark background */
    background-color: #0A0A0A; /* Page background color */
}

/* Section styling */
.page-download__hero-section,
.page-download__video-showcase-section,
.page-download__why-download-section,
.page-download__how-to-download-section,
.page-download__app-features-section,
.page-download__supported-devices-section,
.page-download__security-section,
.page-download__exclusive-bonuses-section,
.page-download__faq-section,
.page-download__cta-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    box-sizing: border-box;
}

/* Specific padding for the first content section to avoid header overlap */
.page-download__hero-section {
    padding-top: 10px; /* Small top padding, body handles header offset */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-download__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #FFD36B; /* Glow color for main title */
}

.page-download__intro-text {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 800px;
}

.page-download__hero-content {
    order: 2; /* Content below image on desktop, default on mobile */
    width: 100%;
}

.page-download__hero-image-wrapper {
    order: 1; /* Image above content on desktop */
    width: 100%;
    margin-bottom: 40px;
}

.page-download__hero-image {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 211, 107, 0.3); /* Glow effect */
}