/* ========== RESET & BASE ========== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --blue-dark: #0a0e1a;
    --blue-primary: #0066ff;
    --blue-secondary: #0044cc;
    --blue-light: #3388ff;
    --blue-glow: #4d9fff;
    --blue-neon: #00b4ff;
    --black: #000000;
    --black-soft: #0d1117;
    --white: #ffffff;
    --white-soft: #e0e6ed;
    --gray: #8892a4;
    --gold: #ffd700;
    --green-whatsapp: #25D366;
    --red-hot: #ff4444;
    --gradient-main: linear-gradient(135deg, #0066ff 0%, #00b4ff 100%);
    --gradient-dark: linear-gradient(180deg, #0a0e1a 0%, #0d1b2a 100%);
    --gradient-card: linear-gradient(145deg, rgba(10,14,26,0.9) 0%, rgba(0,40,80,0.6) 100%);
    --shadow-blue: 0 0 30px rgba(0, 102, 255, 0.3);
    --shadow-glow: 0 0 60px rgba(0, 180, 255, 0.2);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--blue-dark);
    color: var(--white);
    overflow-x: hidden;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

/* ========== LOADER ========== */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s, visibility 0.6s;
}

#loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 30px;
    animation: logoFlicker 2s ease-in-out infinite;
}

.logo-gox {
    color: var(--white);
    text-shadow: 0 0 20px rgba(255,255,255,0.5);
}

.logo-gain {
    color: var(--blue-neon);
    text-shadow: 0 0 20px rgba(0,180,255,0.8), 0 0 40px rgba(0,180,255,0.4);
}

.loader-bar {
    width: 250px;
    height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    margin: 0 auto 20px;
    overflow: hidden;
}

.loader-bar-fill {
    width: 0%;
    height: 100%;
    background: var(--gradient-main);
    border-radius: 10px;
    animation: loaderFill 2.5s ease-in-out forwards;
    box-shadow: 0 0 10px var(--blue-neon);
}

.loader-text {
    color: var(--gray);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes loaderFill {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

@keyframes logoFlicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* ========== VIDEO BACKGROUND ========== */
.video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(10, 14, 26, 0.7) 0%,
        rgba(10, 14, 26, 0.5) 40%,
        rgba(10, 14, 26, 0.8) 100%
    );
}

/* ========== PARTICLES ========== */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* ========== STEPS ========== */
.step {
    display: none;
    position: relative;
    z-index: 2;
    min-height: 100vh;
    padding: 20px 0;
    align-items: center;
    justify-content: center;
}

.step.active {
    display: flex;
    animation: fadeInStep 0.8s ease-out;
}

@keyframes fadeInStep {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

/* ========== BADGE LIVE ========== */
.badge-live {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 0, 0, 0.15);
    border: 1px solid rgba(255, 0, 0, 0.4);
    color: #ff4444;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    animation: fadeInDown 0.8s ease-out;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #ff4444;
    border-radius: 50%;
    animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255, 68, 68, 0.7); }
    50% { opacity: 0.5; box-shadow: 0 0 0 8px rgba(255, 68, 68, 0); }
}

.pulse-glow {
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 5px rgba(255, 0, 0, 0.2); }
    50% { box-shadow: 0 0 20px rgba(255, 0, 0, 0.4); }
}

/* ========== HERO (STEP 1) ========== */
.hero-content {
    text-align: center;
}

.hero-icon-row {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.iphone-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 0 15px rgba(0, 180, 255, 0.6));
}

.float-anim {
    animation: floatPhone 3s ease-in-out infinite;
}

.float-anim.delay-1 {
    animation-delay: 0.3s;
}

.float-anim.delay-2 {
    animation-delay: 0.6s;
}

@keyframes floatPhone {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    line-height: 1.2;
    margin-bottom: 15px;
}

.title-line-1 {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 5px;
    animation: fadeInDown 0.6s ease-out 0.3s both;
}

.title-highlight {
    display: block;
    font-size: clamp(2rem, 8vw, 3.5rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--blue-neon), var(--blue-light), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(0, 180, 255, 0.5));
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.title-line-2 {
    display: block;
    font-size: clamp(1.1rem, 4vw, 1.6rem);
    font-weight: 700;
    color: var(--gold);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    animation: fadeInUp 0.8s ease-out 0.7s both;
}

.title-line-3 {
    display: block;
    font-size: clamp(1.3rem, 5vw, 2rem);
    font-weight: 800;
    color: var(--white);
    animation: fadeInUp 0.8s ease-out 0.9s both;
}

.hero-brand {
    margin: 15px 0;
    animation: fadeInUp 0.8s ease-out 1s both;
}

.brand-by {
    color: var(--gray);
    font-size: 0.85rem;
    margin-right: 8px;
}

.brand-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
}

.brand-bet {
    color: var(--gold);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.hero-subtitle {
    color: var(--white-soft);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 1.2s both;
}

.hero-subtitle strong {
    color: var(--blue-neon);
}

/* Prize Cards */
.prize-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 25px;
    animation: fadeInUp 0.8s ease-out 1.4s both;
}

.prize-card {
    background: var(--gradient-card);
    border: 1px solid rgba(0, 102, 255, 0.3);
    border-radius: var(--radius-sm);
    padding: 15px 10px;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.prize-card:hover {
    transform: translateY(-5px);
    border-color: var(--blue-neon);
    box-shadow: var(--shadow-blue);
}

.prize-card-icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

.prize-card-label {
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--white);
    margin-bottom: 4px;
}

.prize-card-sub {
    font-size: 0.7rem;
    color: var(--blue-neon);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Urgency Bar */
.urgency-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50px;
    padding: 10px 20px;
    margin-bottom: 25px;
    animation: fadeInUp 0.8s ease-out 1.6s both;
}

.urgency-text {
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 600;
}

.urgency-count {
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    color: var(--white);
}

/* ========== BUTTONS ========== */
.btn-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 400px;
    padding: 18px 30px;
    background: var(--gradient-main);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    text-transform: uppercase;
}

.btn-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-main:hover::before {
    left: 100%;
}

.btn-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(0, 102, 255, 0.5);
}

.btn-main:active {
    transform: translateY(-1px);
}

.btn-glow {
    animation: btnGlow 2s ease-in-out infinite;
}

@keyframes btnGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 102, 255, 0.3), 0 0 40px rgba(0, 102, 255, 0.1); }
    50% { box-shadow: 0 0 30px rgba(0, 102, 255, 0.5), 0 0 60px rgba(0, 102, 255, 0.2); }
}

.btn-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.btn-main:hover .btn-arrow {
    transform: translateX(5px);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    animation: fadeInUp 0.8s ease-out 1.8s both;
}

.trust-badges span {
    font-size: 0.75rem;
    color: var(--gray);
    font-weight: 500;
}

/* ========== PROGRESS BAR ========== */
.progress-bar-container {
    margin-bottom: 30px;
    animation: fadeInDown 0.6s ease-out;
}

.progress-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.progress-step span {
    font-size: 0.65rem;
    color: var(--gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.step-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.2);
    color: var(--gray);
    transition: var(--transition);
}

.progress-step.completed .step-circle {
    background: var(--blue-primary);
    border-color: var(--blue-neon);
    color: var(--white);
    box-shadow: 0 0 15px rgba(0, 102, 255, 0.5);
}

.progress-step.completed span {
    color: var(--blue-neon);
}

.progress-step.active-step .step-circle {
    background: rgba(0, 102, 255, 0.2);
    border-color: var(--blue-neon);
    color: var(--blue-neon);
    animation: stepPulse 2s ease-in-out infinite;
}

.progress-step.active-step span {
    color: var(--white);
}

@keyframes stepPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 180, 255, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(0, 180, 255, 0); }
}

.progress-line {
    width: 30px;
    height: 2px;
    background: rgba(255,255,255,0.1);
    margin: 0 5px;
    margin-bottom: 20px;
    border-radius: 2px;
}

.progress-line.active-line {
    background: var(--gradient-main);
    box-shadow: 0 0 8px rgba(0, 102, 255, 0.4);
}

/* ========== GLASS CARD ========== */
.glass-card {
    background: linear-gradient(145deg, rgba(10, 14, 26, 0.95) 0%, rgba(0, 30, 60, 0.85) 100%);
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: var(--radius);
    padding: 30px 25px;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* ========== FORM (STEP 2) ========== */
.form-header {
    text-align: center;
    margin-bottom: 25px;
}

.form-icon-wrapper {
    display: inline-block;
    font-size: 3rem;
    margin-bottom: 10px;
}

.spin-slow {
    animation: spinSlow 8s linear infinite;
}

@keyframes spinSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.form-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--white), var(--blue-neon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.form-desc {
    color: var(--white-soft);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Input Groups */
.input-group {
    margin-bottom: 20px;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInInput 0.5s ease-out forwards;
}

.ig-1 { animation-delay: 0.2s; }
.ig-2 { animation-delay: 0.4s; }
.ig-3 { animation-delay: 0.6s; }

@keyframes slideInInput {
    to { opacity: 1; transform: translateX(0); }
}

.input-group label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white-soft);
    margin-bottom: 8px;
}

.input-icon {
    font-size: 1rem;
}

.input-group input {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}

.input-group input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.input-group input:focus {
    border-color: var(--blue-neon);
    box-shadow: 0 0 0 3px rgba(0, 180, 255, 0.15), 0 0 20px rgba(0, 180, 255, 0.1);
    background: rgba(0, 102, 255, 0.05);
}

.input-line {
    height: 2px;
    width: 0%;
    background: var(--gradient-main);
    border-radius: 2px;
    margin-top: 3px;
    transition: width 0.4s ease;
}

.input-group input:focus ~ .input-line {
    width: 100%;
}

.form-security {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    font-size: 0.78rem;
    color: var(--gray);
    margin-bottom: 20px;
    padding: 10px;
    background: rgba(0, 255, 0, 0.03);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(0, 255, 0, 0.1);
}

.form-footer-info {
    text-align: center;
    margin-top: 20px;
}

.next-draw {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--white-soft);
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 50px;
    padding: 10px 20px;
}

.next-draw strong {
    font-family: 'Orbitron', sans-serif;
    color: var(--gold);
    font-size: 0.95rem;
}

/* ========== THANK YOU (STEP 3) ========== */
.thank-card {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.confetti-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.confetti-piece {
    position: absolute;
    width: 10px;
    height: 10px;
    top: -10px;
    animation: confettiFall 3s ease-in-out forwards;
}

@keyframes confettiFall {
    0% { transform: translateY(0) rotate(0deg); opacity: 1; }
    100% { transform: translateY(500px) rotate(720deg); opacity: 0; }
}

.thank-icon-wrapper {
    margin-bottom: 20px;
}

.checkmark-svg {
    width: 80px;
    height: 80px;
}

.checkmark-circle {
    stroke: var(--blue-neon);
    stroke-width: 2;
    stroke-dasharray: 157;
    stroke-dashoffset: 157;
    animation: drawCircle 0.8s ease-out 0.3s forwards;
}

.checkmark-check {
    stroke: var(--blue-neon);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
    animation: drawCheck 0.5s ease-out 1s forwards;
}

@keyframes drawCircle {
    to { stroke-dashoffset: 0; }
}

@keyframes drawCheck {
    to { stroke-dashoffset: 0; }
}

.thank-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.thank-title span {
    color: var(--blue-neon);
}

.thank-text {
    font-size: 1rem;
    color: var(--white-soft);
    margin-bottom: 10px;
    animation: fadeInUp 0.8s ease-out 0.7s both;
}

.thank-text-sub {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 25px;
    animation: fadeInUp 0.8s ease-out 0.9s both;
}

.thank-text-sub strong {
    color: var(--blue-neon);
}

.notification-preview {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    padding: 15px;
    margin-bottom: 25px;
    text-align: left;
    animation: slideInNotif 0.6s ease-out 1.2s both;
}

@keyframes slideInNotif {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

.notif-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.notif-content strong {
    display: block;
    font-size: 0.85rem;
    color: var(--white);
    margin-bottom: 4px;
}

.notif-content p {
    font-size: 0.78rem;
    color: var(--gray);
    line-height: 1.4;
}

/* ========== BONUS (STEP 4) ========== */
.bonus-section {
    text-align: center;
}

.bonus-header {
    margin-bottom: 25px;
}

.bonus-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--gold), #ffeb3b, var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bonus-desc {
    font-size: 0.9rem;
    color: var(--white-soft);
    line-height: 1.6;
}

.bonus-desc strong {
    color: var(--blue-neon);
}

/* Coupons Grid */
.coupons-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.coupon-card {
    position: relative;
    background: linear-gradient(145deg, rgba(10, 14, 26, 0.95), rgba(0, 40, 80, 0.7));
    border-radius: var(--radius);
    padding: 25px 20px;
    border: 1px solid rgba(0, 102, 255, 0.3);
    overflow: hidden;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.coupon-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.coupon-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-blue);
}

.coupon-bronze { border-color: rgba(205, 127, 50, 0.4); }
.coupon-silver { border-color: rgba(0, 180, 255, 0.4); }
.coupon-gold { border-color: rgba(255, 215, 0, 0.4); }

.coupon-ribbon {
    position: absolute;
    top: 12px;
    right: -30px;
    background: var(--blue-primary);
    color: var(--white);
    padding: 4px 40px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1px;
    transform: rotate(45deg);
}

.ribbon-hot {
    background: linear-gradient(135deg, #ff4444, #ff6b00);
}

.ribbon-best {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    color: var(--black);
}

.coupon-code-display {
    margin-bottom: 12px;
}

.coupon-code {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 3px;
    color: var(--white);
    text-shadow: 0 0 20px rgba(0, 180, 255, 0.5);
    user-select: all;
}

.coupon-gold .coupon-code {
    background: linear-gradient(135deg, var(--gold), #ffeb3b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5));
}

.coupon-info {
    margin-bottom: 15px;
}

.coupon-deposit {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 8px;
}

.coupon-deposit strong {
    color: var(--white);
    font-size: 1rem;
}

.reward-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--blue-neon);
    display: block;
    line-height: 1;
    text-shadow: 0 0 30px rgba(0, 180, 255, 0.4);
}

.coupon-gold .reward-number {
    color: var(--gold);
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
}

.reward-label {
    font-size: 0.8rem;
    color: var(--white-soft);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-coupon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    background: var(--gradient-main);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-coupon:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 102, 255, 0.4);
}

.btn-coupon-hot {
    background: linear-gradient(135deg, #ff4444, #ff6b00);
}

.btn-coupon-hot:hover {
    box-shadow: 0 8px 30px rgba(255, 68, 68, 0.4);
}

.btn-coupon-gold {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    color: var(--black);
}

.btn-coupon-gold:hover {
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
}

/* WhatsApp Section */
.whatsapp-section {
    margin-top: 25px;
    border-color: rgba(37, 211, 102, 0.3) !important;
    background: linear-gradient(145deg, rgba(10, 14, 26, 0.95), rgba(0, 40, 20, 0.7)) !important;
}

.whatsapp-icon-big {
    margin-bottom: 15px;
}

.wa-svg {
    filter: drop-shadow(0 0 20px rgba(37, 211, 102, 0.5));
}

.whatsapp-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
}

.whatsapp-desc {
    font-size: 0.9rem;
    color: var(--white-soft);
    margin-bottom: 15px;
}

.whatsapp-desc strong {
    color: var(--green-whatsapp);
}

.whatsapp-benefits {
    list-style: none;
    text-align: left;
    max-width: 300px;
    margin: 0 auto 20px;
}

.whatsapp-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.88rem;
    color: var(--white-soft);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.benefit-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.whatsapp-guarantee {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(37, 211, 102, 0.08);
    border: 1px solid rgba(37, 211, 102, 0.2);
    border-radius: var(--radius-sm);
    padding: 15px;
    margin-bottom: 20px;
    text-align: left;
}

.guarantee-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.whatsapp-guarantee p {
    font-size: 0.82rem;
    color: var(--white-soft);
    line-height: 1.6;
}

.whatsapp-guarantee strong {
    color: var(--green-whatsapp);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 400px;
    padding: 18px 30px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.4);
}

.btn-glow-green {
    animation: btnGlowGreen 2s ease-in-out infinite;
}

@keyframes btnGlowGreen {
    0%, 100% { box-shadow: 0 0 20px rgba(37, 211, 102, 0.3), 0 0 40px rgba(37, 211, 102, 0.1); }
    50% { box-shadow: 0 0 30px rgba(37, 211, 102, 0.5), 0 0 60px rgba(37, 211, 102, 0.2); }
}

/* ========== PROGRESS BAR WRAPPER (used in steps 2-9) ========== */
.progress-bar-wrapper {
    position: relative;
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 25px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-main);
    border-radius: 10px;
    transition: width 0.6s ease;
    box-shadow: 0 0 10px rgba(0, 180, 255, 0.4);
}

.progress-fill.progress-animated {
    animation: progressPulse 2s ease-in-out infinite;
}

@keyframes progressPulse {
    0%, 100% { box-shadow: 0 0 10px rgba(0, 180, 255, 0.4); }
    50% { box-shadow: 0 0 20px rgba(0, 180, 255, 0.8); }
}

.progress-label {
    position: absolute;
    top: 12px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--gray);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ========== QUIZ (STEPS 3-5) ========== */
.quiz-card {
    text-align: center;
}

.quiz-slot-machine {
    margin-bottom: 15px;
}

.slot-reel {
    display: inline-flex;
    gap: 8px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 102, 255, 0.3);
    border-radius: var(--radius-sm);
    padding: 10px 20px;
    font-size: 1.8rem;
    animation: slotBounce 2s ease-in-out infinite;
}

@keyframes slotBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.quiz-question-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--blue-neon);
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.quiz-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--white), var(--blue-neon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    line-height: 1.4;
}

.quiz-subtitle {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.5;
    margin-bottom: 25px;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.quiz-option {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
}

.quiz-option:hover {
    border-color: var(--blue-neon);
    background: rgba(0, 102, 255, 0.08);
    transform: translateX(5px);
}

.quiz-option.selected {
    border-color: var(--blue-neon);
    background: rgba(0, 102, 255, 0.15);
    box-shadow: 0 0 20px rgba(0, 180, 255, 0.2);
}

.quiz-option.selected .quiz-option-check {
    opacity: 1;
    color: var(--blue-neon);
}

.quiz-option-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.quiz-option-text {
    flex: 1;
}

.quiz-option-check {
    opacity: 0;
    font-size: 1.1rem;
    color: var(--blue-neon);
    font-weight: 800;
    transition: var(--transition);
    flex-shrink: 0;
}

.quiz-players-answering {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.78rem;
    color: var(--gray);
}

.mini-avatars {
    display: flex;
    gap: -4px;
}

.mini-avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--gradient-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 800;
    color: var(--white);
    border: 2px solid var(--blue-dark);
    margin-left: -6px;
}

.mini-avatar:first-child {
    margin-left: 0;
}

/* ========== ANALYSIS (STEP 6) ========== */
.analysis-card {
    text-align: center;
}

.analysis-spinner {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
}

.spinner-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top-color: var(--blue-neon);
    border-radius: 50%;
    animation: spinnerRotate 1.2s linear infinite;
}

.spinner-ring.ring-2 {
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    border-top-color: var(--blue-primary);
    animation-duration: 1.8s;
    animation-direction: reverse;
}

.spinner-ring.ring-3 {
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
    border-top-color: var(--blue-light);
    animation-duration: 2.4s;
}

@keyframes spinnerRotate {
    to { transform: rotate(360deg); }
}

.spinner-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    animation: pulse 1.5s ease-in-out infinite;
}

.analysis-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 25px;
    animation: pulse 2s ease-in-out infinite;
}

.analysis-steps-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
    text-align: left;
}

.analysis-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--gray);
    transition: var(--transition);
}

.analysis-item.done {
    border-color: rgba(0, 180, 255, 0.3);
    background: rgba(0, 102, 255, 0.08);
    color: var(--white);
}

.analysis-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray);
    flex-shrink: 0;
    transition: var(--transition);
}

.analysis-item.done .analysis-dot {
    background: var(--blue-neon);
    box-shadow: 0 0 8px rgba(0, 180, 255, 0.6);
}

.analysis-status {
    margin-left: auto;
    flex-shrink: 0;
}

.analysis-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.analysis-bar-fill {
    height: 100%;
    width: 0%;
    background: var(--gradient-main);
    border-radius: 10px;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 180, 255, 0.5);
}

.analysis-percent {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--blue-neon);
}

/* ========== VICTORY (STEP 7) ========== */
.victory-card {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.victory-fireworks {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.firework-spark {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    animation: sparkBurst 2s ease-out forwards;
}

@keyframes sparkBurst {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.8;
    }
    100% {
        transform: scale(0);
        opacity: 0;
    }
}

.victory-glow-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 180, 255, 0.15) 0%, transparent 70%);
    animation: glowExpand 2s ease-in-out infinite;
    z-index: 0;
}

@keyframes glowExpand {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.3); opacity: 1; }
}

.victory-trophy-wrapper {
    position: relative;
    z-index: 1;
    margin-bottom: 15px;
}

.trophy-bounce {
    font-size: 4rem;
    animation: trophyBounce 1s ease-out;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.6));
}

@keyframes trophyBounce {
    0% { transform: scale(0) rotate(-30deg); opacity: 0; }
    50% { transform: scale(1.3) rotate(10deg); opacity: 1; }
    70% { transform: scale(0.9) rotate(-5deg); }
    100% { transform: scale(1) rotate(0deg); }
}

.victory-stars {
    position: relative;
    z-index: 1;
    margin-bottom: 15px;
}

.v-star {
    display: inline-block;
    font-size: 1.2rem;
    margin: 0 4px;
    animation: starTwinkle 1.5s ease-in-out infinite;
}

.v-star.s1 { animation-delay: 0s; }
.v-star.s2 { animation-delay: 0.2s; }
.v-star.s3 { animation-delay: 0.4s; }
.v-star.s4 { animation-delay: 0.6s; }
.v-star.s5 { animation-delay: 0.8s; }

@keyframes starTwinkle {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.6; }
}

.victory-title {
    position: relative;
    z-index: 1;
    margin-bottom: 15px;
}

.victory-line-1 {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--gold);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.victory-line-2 {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--blue-neon), var(--white));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.victory-message {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

.victory-text-main {
    font-size: 1rem;
    color: var(--white-soft);
    line-height: 1.6;
}

.victory-highlight {
    color: var(--blue-neon);
    font-weight: 800;
    font-size: 1.1rem;
    text-shadow: 0 0 15px rgba(0, 180, 255, 0.4);
}

.victory-slot-result {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

.slot-display {
    display: inline-flex;
    gap: 8px;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid var(--gold);
    border-radius: var(--radius-sm);
    padding: 15px 25px;
    margin-bottom: 10px;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
}

.slot-col {
    font-size: 2.5rem;
    min-width: 50px;
    text-align: center;
    transition: transform 0.1s;
}

.slot-col.spinning {
    animation: slotSpin 0.1s linear infinite;
}

.slot-col.landed {
    animation: slotLand 0.4s ease-out;
}

@keyframes slotSpin {
    0% { transform: translateY(-3px); }
    50% { transform: translateY(3px); }
    100% { transform: translateY(-3px); }
}

@keyframes slotLand {
    0% { transform: scale(1.3); }
    50% { transform: scale(0.9); }
    100% { transform: scale(1); }
}

.slot-win-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--gold);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
    letter-spacing: 4px;
    animation: jackpotPulse 1s ease-in-out infinite;
}

@keyframes jackpotPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.victory-prize-reveal {
    position: relative;
    z-index: 1;
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: var(--radius-sm);
    padding: 15px;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out 1s both;
}

.prize-reveal-icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

.victory-prize-reveal p {
    font-size: 0.88rem;
    color: var(--white-soft);
    line-height: 1.5;
}

.victory-prize-reveal strong {
    color: var(--gold);
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-25px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Shake animation for validation */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.shake {
    animation: shake 0.5s ease-in-out;
}

.input-error {
    border-color: var(--red-hot) !important;
    box-shadow: 0 0 0 3px rgba(255, 68, 68, 0.2) !important;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 480px) {
    .container {
        padding: 15px;
    }

    .hero-title {
        margin-bottom: 10px;
    }

    .title-line-1 {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }

    .title-highlight {
        font-size: 2rem;
    }

    .title-line-2 {
        font-size: 1rem;
    }

    .title-line-3 {
        font-size: 1.3rem;
    }

    .brand-name {
        font-size: 1.2rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    .prize-cards {
        gap: 8px;
    }

    .prize-card {
        padding: 12px 8px;
    }

    .prize-card-icon {
        font-size: 1.5rem;
    }

    .prize-card-label {
        font-size: 0.7rem;
    }

    .prize-card-sub {
        font-size: 0.6rem;
    }

    .btn-main {
        padding: 16px 25px;
        font-size: 0.95rem;
    }

    .trust-badges {
        gap: 10px;
        flex-wrap: wrap;
    }

    .trust-badges span {
        font-size: 0.7rem;
    }

    .glass-card {
        padding: 25px 18px;
    }

    .form-title {
        font-size: 1.2rem;
    }

    .iphone-icon {
        font-size: 2rem;
    }

    .urgency-bar {
        padding: 8px 15px;
    }

    .urgency-text {
        font-size: 0.78rem;
    }

    .badge-live {
        font-size: 0.65rem;
        padding: 6px 15px;
    }

    .progress-step span {
        font-size: 0.55rem;
    }

    .step-circle {
        width: 28px;
        height: 28px;
        font-size: 0.65rem;
    }

    .progress-line {
        width: 20px;
    }

    .coupon-code {
        font-size: 1.2rem;
    }

    .reward-number {
        font-size: 2rem;
    }

    .bonus-title {
        font-size: 1.1rem;
    }

    .whatsapp-title {
        font-size: 0.95rem;
    }

    .quiz-title {
        font-size: 1rem;
    }

    .quiz-option {
        padding: 14px 15px;
        font-size: 0.85rem;
    }

    .slot-reel {
        font-size: 1.4rem;
        padding: 8px 15px;
    }

    .analysis-title {
        font-size: 1rem;
    }

    .analysis-item {
        font-size: 0.8rem;
        padding: 10px 12px;
    }

    .victory-line-1 {
        font-size: 1.1rem;
    }

    .victory-line-2 {
        font-size: 1.2rem;
    }

    .trophy-bounce {
        font-size: 3rem;
    }

    .slot-col {
        font-size: 2rem;
        min-width: 40px;
    }

    .slot-display {
        padding: 12px 18px;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .title-highlight {
        font-size: 2.5rem;
    }

    .container {
        padding: 20px;
    }
}

@media (min-width: 769px) {
    .step {
        padding: 40px 0;
    }

    .glass-card {
        padding: 40px 35px;
    }

    .coupons-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .coupon-card {
        padding: 25px 15px;
    }

    .coupon-code {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }

    .reward-number {
        font-size: 2.2rem;
    }
}

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--black-soft);
}

::-webkit-scrollbar-thumb {
    background: var(--blue-primary);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--blue-neon);
}

/* Selection */
::selection {
    background: var(--blue-primary);
    color: var(--white);
}
