/* style/download.css */

/* Base styles for the download page */
.page-download {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #FFF6D6; /* Text Main */
    background-color: #0A0A0A; /* Background */
    /* padding-top is handled by body from shared.css */
}

/* Ensure all links within the content are visible */
.page-download a {
    color: #FFD36B; /* Auxiliary color for general links */
    text-decoration: underline;
}
.page-download a:hover {
    color: #F2C14E; /* Primary color on hover */
}

/* Hero Section */
.page-download__hero-section {
    position: relative;
    overflow: hidden;
    padding-top: 10px; /* Small top padding after body offset */
    padding-bottom: 50px; /* Space below content */
}

.page-download__hero-image-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.page-download__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* filter: brightness(0.4); Removed to comply with no-filter rule */
}

.page-download__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 80px 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.page-download__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: #FFF6D6; /* Text Main */
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    max-width: 800px;
}

.page-download__description,
.page-download__description-intro {
    font-size: 1.1rem;
    color: #FFD36B; /* Auxiliary color for description */
    margin-bottom: 30px;
    max-width: 700px;
}

.page-download__cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.page-download__btn-primary,
.page-download__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-download__btn-primary {
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
    color: #111111; /* Dark text for bright button */
    border: none;
}

.page-download__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-download__btn-secondary {
    background: transparent;
    color: #FFF6D6; /* Text Main */
    border: 2px solid #F2C14E; /* Primary color border */
}

.page-download__btn-secondary:hover {
    background: #F2C14E; /* Primary color background on hover */
    color: #111111; /* Dark text for bright button */
    transform: translateY(-2px);
}

.page-download__cta-buttons--centered {
    margin-top: 40px;
}

/* General Section Styling */
.page-download__why-download-section,
.page-download__how-to-download-section,
.page-download__security-section,
.page-download__app-features-section,
.page-download__seamless-experience-section,
.page-download__faq-section,
.page-download__cta-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.page-download__section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: #F2C14E; /* Primary color */
    margin-bottom: 40px;
    font-weight: bold;
}

/* Features Grid */
.page-download__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-download__feature-card {
    background-color: #111111; /* Card BG */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #3A2A12; /* Border */
    text-align: center;
}

.page-download__feature-icon {
    width: 200px;
    height: 200px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-download__feature-title {
    font-size: 1.5rem;
    color: #FFF6D6; /* Text Main */
    margin-bottom: 15px;
}

.page-download__feature-text {
    font-size: 1rem;
    color: #E0E0E0;
}

/* How to Download Section */
.page-download__download-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    margin-top: 40px;
}

.page-download__download-platform {
    background-color: #111111; /* Card BG */
    padding: 40px;
    border-radius: 10px;
    text-align: left;
    border: 1px solid #3A2A12; /* Border */
}

.page-download__platform-title {
    font-size: 2rem;
    color: #F2C14E; /* Primary color */
    margin-bottom: 30px;
    text-align: center;
}

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

.page-download__step-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #FFF6D6; /* Text Main */
}

.page-download__step-number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    min-width: 35px;
    min-height: 35px;
    background-color: #F2C14E; /* Primary color */
    color: #111111; /* Dark text */
    border-radius: 50%;
    font-weight: bold;
    margin-right: 15px;
    font-size: 1.2rem;
}

.page-download__platform-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 30px;
    border: 1px solid #3A2A12;
}

.page-download__qr-code-section {
    margin-top: 60px;
    background-color: #111111; /* Card BG */
    padding: 40px;
    border-radius: 10px;
    border: 1px solid #3A2A12; /* Border */
}

.page-download__qr-title {
    font-size: 2rem;
    color: #F2C14E; /* Primary color */
    margin-bottom: 25px;
}

.page-download__qr-code {
    width: 250px;
    height: 250px;
    margin: 0 auto 25px;
    display: block;
    border: 5px solid #FFF6D6; /* Text Main border for QR */
    border-radius: 5px;
    object-fit: contain;
}

.page-download__qr-text {
    font-size: 1.1rem;
    color: #E0E0E0;
    max-width: 600px;
    margin: 0 auto;
}

/* Security Section */
.page-download__security-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
    text-align: left;
}

.page-download__security-image {
    flex: 1;
    min-width: 300px;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    border: 1px solid #3A2A12;
}

.page-download__security-text-block {
    flex: 2;
    min-width: 300px;
    color: #E0E0E0;
}

.page-download__security-text-block p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.page-download__security-text-block a {
    color: #FFD36B; /* Auxiliary color for links */
    text-decoration: underline;
}

.page-download__security-text-block a:hover {
    color: #F2C14E; /* Primary color on hover */
}

.page-download__btn--small {
    padding: 10px 20px;
    font-size: 0.95rem;
    margin-top: 10px;
}