:root {
    --bg-color: #051c14; /* Deep emerald/black matching the image */
    --gold: #d4af37;
    --green-gradient-start: #4ade80;
    --green-gradient-end: #16a34a;
    --text-white: #ffffff;
    --text-gray: #a3a3a3;
    --card-bg: rgba(255, 255, 255, 0.05);
    --red: #ef4444;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-white);
    display: flex;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 480px; /* Mobile focused width */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
}

/* VIP Badge */
.badge-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}
.vip-badge {
    background: linear-gradient(90deg, #f0fdf4 0%, #dcfce7 100%);
    color: #064e3b;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(22, 163, 74, 0.15);
}

/* App Logo area */
.logo-wrapper {
    margin-bottom: 30px;
}
.logo-container {
    background: linear-gradient(145deg, #0d2f23, #082017);
    padding: 12px;
    border-radius: 28px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.6), inset 0 2px 10px rgba(255,255,255,0.05);
    border: 1px solid rgba(212, 175, 55, 0.1);
}
.app-logo {
    width: 160px;
    height: 160px;
    border-radius: 20px;
    object-fit: cover;
    display: block;
}

/* Text */
.main-title {
    font-size: 34px;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    text-align: center;
}
.subtitle {
    color: var(--text-gray);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 40px;
    text-align: center;
    text-transform: uppercase;
}

/* Download Button */
.cta-button {
    display: block;
    width: 100%;
    background: linear-gradient(180deg, var(--green-gradient-start) 0%, var(--green-gradient-end) 100%);
    color: white;
    text-align: center;
    text-decoration: none;
    font-size: 24px;
    font-weight: 800;
    padding: 22px 0;
    border-radius: 40px;
    box-shadow: 0 10px 30px rgba(22, 163, 74, 0.3), inset 0 2px 5px rgba(255,255,255,0.3);
    margin-bottom: 40px;
    transition: transform 0.1s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
.cta-button:active {
    transform: scale(0.96);
    box-shadow: 0 5px 15px rgba(22, 163, 74, 0.3);
}

/* Countdown Timer */
.urgency-section {
    text-align: center;
    margin-bottom: 50px;
    width: 100%;
}
.hurry-text {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}
.timer-container {
    display: flex;
    justify-content: center;
    gap: 25px;
}
.time-block {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    padding: 18px 30px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}
.time-value {
    font-size: 38px;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 8px;
}
.time-label {
    font-size: 13px;
    font-weight: 800;
    color: var(--red);
    letter-spacing: 2px;
}

/* Footer Features */
.footer-features {
    text-align: center;
    width: 100%;
    margin-bottom: 40px;
}
.features-title {
    color: var(--gold);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
}
.features-list {
    list-style: none;
    color: var(--text-gray);
    font-size: 15px;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Legal Links */
.legal-footer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    width: 100%;
}
.legal-footer a {
    color: #666;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}
.legal-footer a:hover {
    color: var(--text-gray);
}
