/* Base Variables & Reset */
:root {
    --deep-dark-green: #01220b;
    --hero-bg-green: #023311;
    --gold-primary: linear-gradient(180deg, #ffe868 0%, #f1c40f 50%, #b7860b 100%);
    --gold-text: #f1c40f;
    --text-white: #ffffff;
    --transition-smooth: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--deep-dark-green);
    color: var(--text-white);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Header Styles */
.main-header {
    background-color: var(--deep-dark-green);
    border-bottom: 2px solid #044618;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-name {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 1px;
    background: var(--gold-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0px 2px 4px rgba(0,0,0,0.3);
}

.nav-download-btn {
    background: var(--gold-primary);
    color: #000000;
    text-decoration: none;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.95rem;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(241, 196, 15, 0.4);
    transition: var(--transition-smooth);
    border: 1px solid #ffffff;
    white-space: nowrap;
}

.nav-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(241, 196, 15, 0.7);
    background: #ffffff;
    color: var(--deep-dark-green);
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    background-color: var(--hero-bg-green);
    background-image: radial-gradient(#034417 20%, transparent 20%),
                      radial-gradient(#034417 20%, transparent 20%);
    background-size: 30px 30px;
    background-position: 0 0, 15px 15px;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(1, 34, 11, 0.3) 0%, rgba(1, 34, 11, 0.9) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    width: 100%;
}

.hero-logo-box {
    margin-bottom: 25px;
}

.hero-logo {
    max-width: 220px;
    height: auto;
    filter: drop-shadow(0px 8px 20px rgba(0, 0, 0, 0.7));
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.6);
    padding: 6px 16px;
    border-radius: 50px;
    border: 1px solid #046322;
    margin-bottom: 20px;
}

.badge-new {
    color: #f1c40f;
    font-weight: 800;
    margin-right: 8px;
    letter-spacing: 1px;
}

.badge-hot {
    color: #ff4757;
    font-weight: 800;
    animation: flash 1.2s infinite;
}

@keyframes flash {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 2px;
    background: var(--gold-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0px 4px 15px rgba(0, 0, 0, 0.9);
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #e0e0e0;
    max-width: 650px;
    margin: 0 auto 40px auto;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.main-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gold-primary);
    color: #000000;
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 850;
    padding: 18px 55px;
    border-radius: 12px;
    border: 2px solid #ffffff;
    box-shadow: 0 10px 30px rgba(241, 196, 15, 0.4), inset 0 -4px 0px rgba(0,0,0,0.2);
    transition: var(--transition-smooth);
    letter-spacing: 1px;
}

.main-download-btn:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 15px 40px rgba(241, 196, 15, 0.6);
    background: linear-gradient(180deg, #ffffff 0%, #f1c40f 100%);
}

.btn-icon {
    font-size: 1.8rem;
    animation: bounceDown 1.5s infinite;
}

@keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.badge-item {
    background: rgba(1, 23, 7, 0.8);
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid #034f19;
}

/* Banner Section Styles */
.banner-section {
    background-color: var(--deep-dark-green);
    padding: 80px 20px;
}

.section-title-box {
    text-align: center;
    margin-bottom: 40px;
}

.section-title-box h2 {
    font-size: 2.2rem;
    color: var(--text-white);
    font-weight: 700;
    letter-spacing: 1px;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: var(--gold-primary);
    margin: 12px auto 0 auto;
    border-radius: 2px;
}

.banner-container {
    max-width: 1200px;
    margin: 0 auto;
    background: #011908;
    padding: 10px;
    border-radius: 20px;
    border: 2px solid #045219;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

.main-banner-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* Footer Styles */
.main-footer {
    background-color: #001405;
    border-top: 3px solid #b7860b;
    padding: 50px 20px 30px 20px;
    margin-top: 40px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-brand {
    font-size: 2.2rem;
    font-weight: 900;
    background: var(--gold-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.footer-tagline {
    color: #a0a0a0;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 30px 0;
}

.copyright-text {
    color: #707070;
    font-size: 0.95rem;
    font-weight: 600;
}

.footer-disclaimer {
    margin-top: 15px;
    font-size: 0.8rem;
    color: #666666;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

/* Responsive Optimization - Fixed Mobile View */
@media (max-width: 768px) {
    .header-container {
        padding: 10px 15px;
        height: 60px;
    }

    .brand-name {
        font-size: 1.2rem; /* Mobile ke liye text size chota */
        white-space: nowrap;
        flex: 1;
    }

    .nav-download-btn {
        padding: 6px 15px;
        font-size: 12px;
        flex-shrink: 0;
    }

    .hero-section {
        padding: 40px 15px;
        min-height: auto;
    }

    .hero-logo {
        max-width: 110px; /* Logo size 50% kar di */
        margin-bottom: 15px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .main-download-btn {
        font-size: 1.0rem;
        padding: 12px 30px;
        width: 90%;
        justify-content: center;
    }

    .trust-badges {
        gap: 10px;
        margin-top: 30px;
    }

    .badge-item {
        font-size: 0.8rem;
        padding: 8px 12px;
    }

    .section-title-box h2 {
        font-size: 1.5rem;
    }
}

/* Screen size 320px ke liye special fix */
@media (max-width: 320px) {
    .brand-name {
        font-size: 1rem;
    }
    .nav-download-btn {
        padding: 5px 10px;
        font-size: 11px;
    }
}