/* Lucky 33 - Ultra Light & Fast Design - Zero CLS */

/* ========== CSS Variables - Light Theme ========== */
:root {
    --primary: #3b82f6;
    --primary-light: #60a5fa;
    --secondary: #10b981;
    --accent: #f59e0b;
    --dark: #1f2937;
    --text: #374151;
    --text-light: #6b7280;
    --bg: #ffffff;
    --bg-light: #f9fafb;
    --border: #e5e7eb;
    --shadow: rgba(0,0,0,0.1);
}

/* ========== Base - Performance First ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    contain: layout;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--primary-light);
}

/* ========== Header - Fixed Height ========== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
    height: 72px;
    contain: layout style;
    box-shadow: 0 1px 3px var(--shadow);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
}

.logo img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 40px;
    height: 40px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: transform 0.2s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ========== Mobile Navigation ========== */
.mobile-nav {
    position: fixed;
    top: 72px;
    left: -100%;
    width: 280px;
    height: calc(100vh - 72px);
    background: var(--bg);
    border-right: 1px solid var(--border);
    transition: left 0.3s ease;
    z-index: 999;
    overflow-y: auto;
    padding: 20px 0;
    box-shadow: 2px 0 10px var(--shadow);
}

.mobile-nav.active {
    left: 0;
}

.mobile-nav a {
    display: block;
    padding: 14px 20px;
    color: var(--text);
    font-weight: 500;
    border-bottom: 1px solid var(--border);
    transition: background 0.2s ease;
    min-height: 52px;
}

.mobile-nav a:hover {
    background: var(--bg-light);
    color: var(--primary);
}

.mobile-nav .nav-cta {
    margin: 16px;
    padding: 14px !important;
    background: var(--primary);
    color: #fff !important;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    border: none;
}

.mobile-nav .nav-cta:hover {
    background: var(--primary-light);
}

/* ========== Hero Section - Light & Clean ========== */
.hero {
    padding: 60px 20px;
    text-align: center;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-bottom: 1px solid var(--border);
    min-height: 450px;
    display: flex;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 20px;
    min-height: 32px;
}

.hero h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
    color: var(--dark);
    min-height: 120px;
}

.hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 30px;
    color: var(--text-light);
    line-height: 1.6;
    min-height: 54px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px auto;
    max-width: 800px;
    min-height: 110px;
}

.stat-item {
    background: var(--bg);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: 0 2px 8px var(--shadow);
    min-height: 100px;
}

.stat-item strong {
    display: block;
    font-size: 1.75rem;
    color: var(--primary);
    margin-bottom: 8px;
    font-weight: 700;
}

.stat-item span {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* ========== Buttons - Clean Design ========== */
.btn-primary {
    display: inline-block;
    padding: 16px 32px;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.125rem;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    min-height: 56px;
    line-height: 1.4;
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.25rem;
    min-height: 64px;
}

.hero-note {
    margin-top: 20px;
    font-size: 0.875rem;
    color: var(--text-light);
    min-height: 28px;
}

/* ========== Main Content - Light Sections ========== */
.main-content {
    padding: 60px 0 100px;
}

section {
    margin-bottom: 80px;
    min-height: 200px;
}

h2 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
    min-height: 64px;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 20px;
    font-weight: 600;
    min-height: 48px;
}

h4 {
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 12px;
    font-weight: 600;
    min-height: 40px;
}

p {
    margin-bottom: 16px;
    line-height: 1.7;
}

/* ========== Content Boxes - Light Style ========== */
.content-box {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
    margin-bottom: 30px;
    min-height: 140px;
}

/* ========== How-To Article ========== */
.how-to-article {
    max-width: 900px;
    margin: 0 auto;
}

.article-intro {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
    border-left: 4px solid var(--secondary);
    min-height: 120px;
}

/* ========== Table of Contents ========== */
.toc-box {
    background: var(--bg);
    border: 2px solid var(--primary);
    border-radius: 12px;
    padding: 30px;
    margin: 40px 0;
    min-height: 280px;
}

.toc-list {
    list-style: none;
    counter-reset: toc-counter;
}

.toc-list li {
    counter-increment: toc-counter;
    margin-bottom: 12px;
    min-height: 48px;
}

.toc-list li a {
    color: var(--text);
    font-weight: 500;
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 8px;
    transition: background 0.2s ease;
    min-height: 48px;
}

.toc-list li a:before {
    content: counter(toc-counter);
    background: var(--primary);
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-weight: 600;
    flex-shrink: 0;
    font-size: 0.875rem;
}

.toc-list li a:hover {
    background: var(--bg-light);
}

/* ========== Step Sections - Clean Cards ========== */
.step-section {
    margin: 50px 0;
    padding: 40px;
    background: var(--bg);
    border-radius: 12px;
    border: 1px solid var(--border);
    min-height: 380px;
}

.steps-container {
    display: grid;
    gap: 20px;
    margin-top: 30px;
}

.step-card {
    background: var(--bg-light);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.2s ease;
    min-height: 160px;
}

.step-card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 12px var(--shadow);
    transform: translateY(-2px);
}

.step-number {
    display: inline-flex;
    background: var(--primary);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

/* ========== Requirements Grid ========== */
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.req-item {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--border);
    min-height: 90px;
}

/* ========== Alert Boxes - Light ========== */
.alert-box, .tip-box, .bonus-note, .success-box {
    padding: 16px 20px;
    border-radius: 8px;
    margin-top: 16px;
    min-height: 56px;
    border-left: 4px solid;
}

.alert-box {
    background: #fef3c7;
    border-color: #f59e0b;
}

.tip-box {
    background: #dbeafe;
    border-color: #3b82f6;
}

.bonus-note, .success-box {
    background: #d1fae5;
    border-color: #10b981;
}

/* ========== Download Box ========== */
.btn-download-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 30px;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    margin: 40px 0;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
    transition: all 0.2s ease;
    min-height: 110px;
}

.btn-download-box:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
}

.download-icon {
    font-size: 3rem;
    line-height: 1;
}

.download-text strong {
    display: block;
    font-size: 1.375rem;
    margin-bottom: 4px;
}

/* ========== Grids - Clean & Light ========== */
.tips-grid, .features-grid, .games-grid, .bonuses-grid, .reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.tip-card, .feature-card, .reason-card {
    background: var(--bg);
    padding: 28px;
    border-radius: 12px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.2s ease;
    min-height: 240px;
}

.tip-card:hover, .feature-card:hover, .reason-card:hover {
    border-color: var(--primary);
    box-shadow: 0 6px 20px var(--shadow);
    transform: translateY(-3px);
}

.tip-icon, .feature-icon, .reason-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 16px;
    line-height: 1;
}

/* ========== Games - Colorful Cards ========== */
.game-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #fff;
    padding: 28px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.2s ease;
    box-shadow: 0 4px 12px var(--shadow);
    min-height: 180px;
}

.game-card:hover {
    transform: scale(1.02);
}

.game-card h3 {
    color: #fff;
}

/* ========== Bonuses ========== */
.bonus-card {
    background: var(--bg);
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--primary);
    transition: all 0.2s ease;
    min-height: 260px;
}

.bonus-card:hover {
    border-color: var(--primary-light);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.2);
    transform: scale(1.02);
}

.bonus-badge {
    background: var(--accent);
    color: #fff;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 16px;
    min-height: 44px;
}

/* ========== FAQ ========== */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg);
    padding: 28px;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    min-height: 140px;
}

.faq-item h3 {
    text-align: left;
    margin-bottom: 12px;
    font-size: 1.125rem;
}

/* ========== CTA Section ========== */
.cta-section {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 16px;
    margin: 80px 0;
    border: 1px solid var(--border);
    min-height: 380px;
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
}

.cta-box h2 {
    color: var(--dark);
}

.cta-box p {
    color: var(--text);
    font-size: 1.125rem;
}

/* ========== Footer - Light ========== */
.footer {
    background: var(--bg-light);
    border-top: 1px solid var(--border);
    padding: 50px 0 20px;
    min-height: 180px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
}

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text);
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 20px;
    text-align: center;
    color: var(--text-light);
    font-size: 0.875rem;
}

/* ========== Bottom Nav ========== */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-around;
    padding: 8px 0;
    z-index: 1000;
    height: 64px;
    box-shadow: 0 -2px 10px var(--shadow);
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 0.75rem;
    transition: color 0.2s ease;
    padding: 6px 12px;
    border-radius: 8px;
    min-width: 64px;
    min-height: 52px;
}

.bottom-nav-item span {
    font-size: 1.375rem;
    margin-bottom: 2px;
}

.bottom-nav-item.active,
.bottom-nav-item.cta-item {
    color: var(--primary);
    font-weight: 600;
}

/* ========== Download Page Specific ========== */
.download-hero {
    padding: 60px 20px;
    text-align: center;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-bottom: 1px solid var(--border);
    min-height: 400px;
}

.download-badge {
    display: inline-block;
    background: var(--accent);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
    min-height: 32px;
}

.app-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 12px;
    margin: 30px auto;
    max-width: 560px;
}

.info-item {
    background: var(--bg);
    padding: 14px;
    border-radius: 10px;
    font-size: 0.875rem;
    border: 1px solid var(--border);
    min-height: 64px;
}

.btn-download {
    display: inline-block;
    padding: 18px 40px;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
    transition: all 0.2s ease;
    min-height: 64px;
}

.btn-download:hover {
    background: var(--primary-light);
    transform: scale(1.03);
}

.btn-download-large {
    padding: 20px 48px;
    font-size: 1.375rem;
    min-height: 68px;
}

.details-table {
    background: var(--bg);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.detail-row {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    border-bottom: 1px solid var(--border);
    min-height: 56px;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    padding: 18px 20px;
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text);
}

.detail-value {
    padding: 18px 20px;
    color: var(--text);
}

.instruction-card {
    display: flex;
    gap: 20px;
    background: var(--bg);
    padding: 28px;
    border-radius: 12px;
    border: 1px solid var(--border);
    align-items: start;
    min-height: 140px;
    transition: all 0.2s ease;
}

.instruction-card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 12px var(--shadow);
}

.step-num {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
}

.step-content h3 {
    font-size: 1.125rem;
    margin-bottom: 8px;
    min-height: auto;
}

.cta-box-large {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
        min-height: 96px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    h2 {
        font-size: 1.75rem;
        min-height: 56px;
    }
    
    .detail-row {
        grid-template-columns: 1fr;
    }
    
    .instruction-card {
        flex-direction: column;
        text-align: center;
    }
    
    .main-content {
        padding-bottom: 80px;
    }
}

@media (min-width: 769px) {
    .bottom-nav {
        display: none;
    }
}

/* ========== Utility ========== */
.mt-20 {
    margin-top: 20px;
}

/* ========== Download Page Additional Styles ========== */

.features-list {
    display: grid;
    gap: 16px;
    margin-top: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item {
    display: flex;
    gap: 16px;
    align-items: start;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 10px;
    border: 1px solid var(--border);
    min-height: 80px;
    transition: all 0.2s ease;
}

.feature-item:hover {
    border-color: var(--primary);
    box-shadow: 0 3px 10px var(--shadow);
}

.check-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: var(--secondary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
}

.feature-item strong {
    display: block;
    margin-bottom: 4px;
    color: var(--dark);
    font-size: 1.0625rem;
}

.feature-item p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9375rem;
}

.requirements-box {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border);
    max-width: 800px;
    margin: 0 auto;
}

.requirements-box h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: var(--dark);
    min-height: auto;
}

.requirements-box ul {
    list-style: none;
    padding: 0;
}

.requirements-box li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: var(--text);
}

.requirements-box li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 700;
}

.security-content {
    max-width: 900px;
    margin: 0 auto;
}

.security-content > p {
    text-align: center;
    font-size: 1.125rem;
    margin-bottom: 40px;
}

.security-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.security-point {
    display: flex;
    gap: 16px;
    align-items: start;
    padding: 24px;
    background: var(--bg);
    border-radius: 12px;
    border: 1px solid var(--border);
    min-height: 140px;
}

.security-icon {
    font-size: 2.5rem;
    line-height: 1;
    flex-shrink: 0;
}

.security-point h3 {
    font-size: 1.125rem;
    margin-bottom: 8px;
    color: var(--dark);
    min-height: auto;
}

.security-point p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9375rem;
}

.cta-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stat-mini {
    text-align: center;
    padding: 16px;
    background: var(--bg);
    border-radius: 10px;
    border: 1px solid var(--border);
    min-height: 80px;
}

.stat-mini strong {
    display: block;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 4px;
    font-weight: 700;
}

.stat-mini small {
    font-size: 0.8125rem;
    color: var(--text-light);
}

@media (max-width: 640px) {
    .cta-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .security-points {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
}

/* ========== ENHANCED DOWNLOAD SECTION (Homepage) ========== */

.download-section-enhanced {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    padding: 80px 20px;
    border-radius: 16px;
    margin: 80px 0;
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.3);
}

.download-section-enhanced .container {
    max-width: 1000px;
}

.download-section-enhanced h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.download-section-enhanced .section-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.6;
}

.download-visual-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.visual-step {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    min-height: 240px;
}

.visual-step:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-5px);
}

.visual-step-number {
    display: inline-flex;
    width: 60px;
    height: 60px;
    background: #fff;
    color: var(--primary);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.visual-step-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
}

.visual-step h3 {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 12px;
    min-height: auto;
}

.visual-step p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.download-cta-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.download-cta-box h3 {
    color: #fff;
    font-size: 1.75rem;
    margin-bottom: 16px;
    min-height: auto;
}

.download-cta-box p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.125rem;
    margin-bottom: 30px;
}

.btn-download-hero {
    display: inline-block;
    padding: 20px 50px;
    background: #fff;
    color: var(--primary);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.375rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    min-height: 68px;
    line-height: 1.4;
}

.btn-download-hero:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
    color: var(--primary);
}

.download-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.download-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9375rem;
}

.download-feature-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .download-section-enhanced {
        padding: 60px 20px;
    }
    
    .download-section-enhanced h2 {
        font-size: 2rem;
    }
    
    .download-visual-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .visual-step {
        min-height: 200px;
    }
    
    .download-cta-box {
        padding: 30px 20px;
    }
    
    .btn-download-hero {
        padding: 18px 40px;
        font-size: 1.25rem;
    }
}

/* ========== App Info Grid Enhancement ========== */

.app-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin: 30px auto;
    max-width: 600px;
}

.info-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 16px 12px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-height: 72px;
}

.info-item strong {
    display: block;
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 4px;
    font-weight: 700;
}

.info-item span {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 640px) {
    .app-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========== Download Badge ========== */

.download-badge {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 20px;
    min-height: 32px;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

.hero-note {
    margin-top: 20px;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.9);
    min-height: 28px;
}
