:root {
    --bg-color: #050505;
    --card-bg: #111111;
    --primary-color: #39FF14; /* Neon Green */
    --primary-glow: rgba(57, 255, 20, 0.4);
    --text-color: #ffffff;
    --text-muted: #aaaaaa;
    --danger-color: #ff3b3b;
    --font-main: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.5;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 480px; /* Mobile focused max-width */
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

/* --- Typography --- */
h1 {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 10px;
    text-transform: uppercase;
}

h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
}

p {
    font-size: 1rem;
    color: var(--text-muted);
}

.highlight {
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-glow);
}

.strikethrough {
    text-decoration: line-through;
    opacity: 0.7;
}

/* --- Header & Hero --- */
.hero {
    padding: 30px 0;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000000 70%);
}

.alert-box {
    display: inline-block;
    background-color: rgba(57, 255, 20, 0.1);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid var(--primary-color);
}

.subheadline {
    margin-bottom: 25px;
    font-size: 1.1rem;
    color: #ddd;
}

.hero-image-container {
    position: relative;
    margin: 20px auto 30px;
    max-width: 300px;
}

.hero-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    position: relative;
    z-index: 2;
    border: 2px solid #222;
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    opacity: 0.2;
    filter: blur(40px);
    z-index: 1;
    border-radius: 50%;
}

/* --- Buttons --- */
.cta-button {
    display: block;
    width: 100%;
    background: var(--primary-color);
    color: #000;
    padding: 18px 20px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 1.1rem;
    text-decoration: none;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 20px var(--primary-glow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-top: 10px;
}

.cta-button:active {
    transform: scale(0.98);
}

.btn-subtext {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 5px;
    opacity: 0.8;
}

/* --- Value Block --- */
.value-block {
    padding: 40px 0;
    background-color: var(--card-bg);
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.benefits-list {
    list-style: none;
    text-align: left;
    display: inline-block;
}

.benefits-list li {
    margin-bottom: 12px;
    font-size: 1rem;
    color: #fff;
    display: flex;
    align-items: center;
}

.check {
    color: var(--primary-color);
    margin-right: 10px;
    font-weight: bold;
}

/* --- Gallery --- */
.gallery {
    padding: 30px 0;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.game-thumb {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #333;
    opacity: 0.8;
}

/* --- Urgency Block --- */
.urgency-block {
    padding: 20px 0 40px;
}

.urgency-box {
    background: linear-gradient(135deg, rgba(255,59,59,0.1) 0%, rgba(0,0,0,0) 100%);
    border: 1px solid var(--danger-color);
    border-radius: 12px;
    padding: 25px 20px;
    position: relative;
    overflow: hidden;
}

.warning-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--danger-color);
}

.urgency-box h3 {
    color: var(--danger-color);
    text-transform: uppercase;
    font-size: 1.1rem;
}

.timer-container {
    margin-top: 20px;
    font-weight: 700;
    font-size: 1.5rem;
    color: #fff;
    font-feature-settings: "tnum";
    font-variant-numeric: tabular-nums;
}

.timer-container p {
    font-size: 0.85rem;
    margin-bottom: 5px;
}

/* --- Social Proof --- */
.social-proof {
    padding: 0 0 40px;
    border-bottom: 1px solid #222;
}

.stars {
    color: #FFD700; /* Gold */
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

/* --- Final CTA --- */
.final-cta {
    padding: 40px 0 60px;
    background-color: #080808;
}

.mini-cover {
    width: 80px;
    border-radius: 6px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.guarantee {
    margin-top: 15px;
    font-size: 0.8rem;
    opacity: 0.6;
}

/* --- Animations --- */
.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(57, 255, 20, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(57, 255, 20, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(57, 255, 20, 0);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s forwards;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Desktop Tweaks --- */
@media (min-width: 768px) {
    .container {
        max-width: 600px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
}
