/* ==========================================================================
   BOT WELLNESS 2026 - LUXURY BRANDING & SUPER KIT SHOWCASE
   Design System • Glassmorphism • Dynamic Product Stage • Mobile-First
   ========================================================================== */

:root {
    /* Color Palette */
    --bg-deep: #050608;
    --bg-dark: #090a10;
    --bg-card: rgba(14, 16, 26, 0.85);
    --bg-card-elevated: rgba(22, 25, 40, 0.9);
    --bg-input: rgba(7, 8, 14, 0.8);

    /* Accents & Brand Colors */
    --gold: #d4af37;
    --gold-light: #fef08a;
    --gold-dark: #996515;
    --gold-gradient: linear-gradient(135deg, #d4af37 0%, #fef08a 45%, #b8860b 100%);
    --gold-glow: rgba(212, 175, 55, 0.25);

    --dymatize-blue: #0284c7;
    --dymatize-glow: rgba(2, 132, 199, 0.3);
    --dymatize-gradient: linear-gradient(135deg, #0284c7 0%, #38bdf8 100%);

    --quest-cyan: #06b6d4;
    --quest-glow: rgba(6, 182, 212, 0.3);
    --quest-gradient: linear-gradient(135deg, #0891b2 0%, #22d3ee 100%);

    --emerald: #10b981;
    --emerald-light: #34d399;
    --emerald-gradient: linear-gradient(135deg, #059669 0%, #10b981 50%, #34d399 100%);
    --emerald-glow: rgba(16, 185, 129, 0.25);

    --ruby: #f43f5e;

    /* Typography Colors */
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --text-dark: #050507;

    /* Borders */
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-gold: rgba(212, 175, 55, 0.35);
    --border-emerald: rgba(16, 185, 129, 0.4);
    --border-dymatize: rgba(56, 189, 248, 0.35);
    --border-quest: rgba(34, 211, 238, 0.35);

    /* Radii */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-pill: 9999px;

    /* Typography */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Shadows */
    --shadow-card: 0 20px 50px -10px rgba(0, 0, 0, 0.7), 0 0 1px 1px var(--border-subtle);
    --shadow-glow-gold: 0 0 40px rgba(212, 175, 55, 0.2);
    --shadow-glow-emerald: 0 0 40px rgba(16, 185, 129, 0.2);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-smooth: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-family: var(--font-body);
    background-color: var(--bg-deep);
    color: var(--text-primary);
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 30px 16px 60px 16px;
    position: relative;
    overflow-x: hidden;
    background: radial-gradient(circle at 50% 0%, #111422 0%, #050608 70%);
}

/* Ambient Lighting Aura */
.ambient-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(140px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.45;
}

.glow-1 {
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(212, 175, 55, 0.25) 0%, rgba(2, 132, 199, 0.15) 100%);
}

.glow-2 {
    top: 500px;
    right: -200px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.2) 0%, transparent 70%);
}

.glow-3 {
    top: 1100px;
    left: -200px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.18) 0%, transparent 70%);
}

/* Container */
.page-container {
    width: 100%;
    max-width: 660px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    z-index: 1;
    margin: 0 auto;
}

/* ==========================================================================
   1. BRAND HEADER & HERO
   ========================================================================== */

.header-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding-top: 10px;
}

.brand-top-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.logo-trust {
    height: 48px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 16px rgba(255, 255, 255, 0.12));
    transition: var(--transition-smooth);
}

.logo-trust:hover {
    transform: scale(1.03);
}

.brand-partners {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-size: 11px;
}

.partner-label {
    color: var(--text-muted);
    font-weight: 500;
}

.partner-badge {
    font-weight: 800;
    letter-spacing: 1px;
}

.dymatize-badge {
    color: #38bdf8;
}

.quest-badge {
    color: #22d3ee;
}

.partner-divider {
    color: var(--text-muted);
}

/* Event Pill */
.event-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-gold);
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 10px var(--gold);
    animation: pulse 2s infinite ease-in-out;
}

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

/* Hero Typography */
.hero-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.5px;
    color: #ffffff;
    margin-top: 4px;
}

.highlight-gold {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-subtitle {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 580px;
}

/* ==========================================================================
   2. PRIZE SHOWCASE CARD
   ========================================================================== */

.prize-card {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-xl);
    padding: 24px 20px;
    box-shadow: var(--shadow-card), var(--shadow-glow-gold);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

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

.prize-tag {
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid var(--border-gold);
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
}

.prize-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

@media (max-width: 540px) {
    .prize-content {
        grid-template-columns: 1fr;
    }
}

.prize-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: var(--transition-smooth);
}

.prize-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.prize-item-brand {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #38bdf8;
}

.prize-item:last-child .prize-item-brand {
    color: #22d3ee;
}

.prize-item-title {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 800;
    color: #ffffff;
}

.prize-item-desc {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Countdown Box */
.timer-wrapper {
    background: rgba(5, 6, 10, 0.7);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 16px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    box-shadow: inset 0 0 20px rgba(212, 175, 55, 0.06);
}

.timer-title-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.timer-pulse {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse 1.5s infinite ease-in-out;
}

.timer-label {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--gold-light);
    text-align: center;
}

.timer-grid {
    display: flex;
    gap: 8px;
    justify-content: center;
    width: 100%;
}

.timer-unit {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 8px 12px;
    min-width: 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.timer-number {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
}

.timer-desc {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ==========================================================================
   3. CAPTURE FORM STATE
   ========================================================================== */

.form-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 28px 24px;
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.form-badge {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-subtle);
    color: var(--gold-light);
    padding: 4px 12px;
    border-radius: var(--radius-pill);
}

.form-header h2 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
}

.form-header p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

#form-lead {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.trap-field {
    position: absolute;
    left: -9999px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.required-mark {
    color: var(--gold);
    font-weight: 700;
}

.optional-tag {
    font-size: 10px;
    color: var(--text-muted);
    font-weight: 500;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 14px;
    width: 18px;
    height: 18px;
    color: var(--text-muted);
    pointer-events: none;
    transition: var(--transition-fast);
}

.input-field {
    width: 100%;
    background: var(--bg-input);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 14px 16px 14px 44px;
    font-family: var(--font-body);
    font-size: 14px;
    color: #ffffff;
    outline: none;
    transition: var(--transition-fast);
}

.input-field::placeholder {
    color: var(--text-muted);
}

.input-field:focus {
    border-color: var(--gold);
    background: rgba(12, 14, 24, 0.95);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.input-field:focus ~ .input-icon,
.input-wrapper:focus-within .input-icon {
    color: var(--gold);
}

.error-msg {
    font-size: 11px;
    color: var(--ruby);
    display: none;
    margin-top: 2px;
}

.form-group.invalid .input-field {
    border-color: var(--ruby);
    box-shadow: 0 0 0 2px rgba(244, 63, 94, 0.15);
}

.form-group.invalid .error-msg {
    display: block;
}

/* Checkbox */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    padding: 4px 0;
    user-select: none;
}

.checkbox-custom {
    position: relative;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-custom input {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.checkbox-box {
    width: 100%;
    height: 100%;
    background: var(--bg-input);
    border: 1px solid var(--border-subtle);
    border-radius: 4px;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkbox-custom input:checked ~ .checkbox-box {
    background: var(--gold);
    border-color: var(--gold);
}

.checkbox-custom input:checked ~ .checkbox-box::after {
    content: '';
    width: 4px;
    height: 8px;
    border: solid #050507;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-bottom: 2px;
}

.checkbox-label-text {
    font-size: 11.5px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.checkbox-label-text strong {
    color: var(--text-primary);
}

/* Submit Button */
.btn-submit {
    width: 100%;
    background: var(--gold-gradient);
    color: #050507;
    border: none;
    border-radius: var(--radius-md);
    padding: 16px 24px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.btn-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(212, 175, 55, 0.5);
    filter: brightness(1.06);
}

.btn-submit:active:not(:disabled) {
    transform: translateY(0);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    filter: grayscale(0.5);
}

.btn-arrow {
    transition: transform var(--transition-fast);
}

.btn-submit:hover:not(:disabled) .btn-arrow {
    transform: translateX(4px);
}

.spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(5, 5, 7, 0.3);
    border-top-color: #050507;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    display: none;
}

.btn-submit.loading .spinner {
    display: inline-block;
}

.btn-submit.loading .btn-text,
.btn-submit.loading .btn-arrow {
    display: none;
}

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

/* ==========================================================================
   4. THANK YOU STATE (INSTANT TICKET REVEAL)
   ========================================================================== */

.state-thanks {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: fadeInScale 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.96) translateY(12px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.success-badge-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid var(--border-emerald);
    color: var(--emerald);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    box-shadow: var(--shadow-glow-emerald);
}

.thanks-badge {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--emerald-light);
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--border-emerald);
    padding: 4px 14px;
    border-radius: var(--radius-pill);
    margin-bottom: 6px;
}

.thanks-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
}

.thanks-title span {
    background: var(--emerald-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.thanks-subtitle {
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 480px;
}

/* Lucky Coupon Ticket Card */
.lucky-coupon-card {
    width: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(15, 17, 28, 0.95) 100%);
    border: 2px dashed var(--gold);
    border-radius: var(--radius-lg);
    padding: 26px 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    box-shadow: inset 0 0 25px rgba(212, 175, 55, 0.1), var(--shadow-glow-gold);
    overflow: hidden;
}

.ticket-notch {
    position: absolute;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--bg-deep);
    top: 50%;
    transform: translateY(-50%);
}

.notch-left {
    left: -12px;
    border-right: 2px dashed var(--gold);
}

.notch-right {
    right: -12px;
    border-left: 2px dashed var(--gold);
}

.lucky-coupon-label {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
}

.lucky-coupon-code {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 4px;
    text-shadow: 0 0 25px rgba(212, 175, 55, 0.6);
}

.lucky-coupon-note {
    font-size: 11px;
    color: var(--text-secondary);
    line-height: 1.4;
    max-width: 420px;
}

/* Shopify Offer Card */
.shopify-offer-card {
    width: 100%;
    background: linear-gradient(135deg, rgba(20, 24, 38, 0.95), rgba(12, 14, 22, 0.95));
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 22px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.offer-tag {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--emerald-light);
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid var(--border-emerald);
    padding: 4px 12px;
    border-radius: var(--radius-pill);
}

.offer-headline {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
}

.offer-desc {
    font-size: 12px;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.4;
}

.discount-code-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(5, 6, 10, 0.9);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 8px 18px;
}

.discount-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
}

.discount-code-text {
    font-family: 'Courier New', monospace;
    font-size: 22px;
    font-weight: 900;
    color: var(--gold-light);
    letter-spacing: 2px;
}

.btn-copy {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.btn-copy:hover {
    color: var(--gold);
    transform: scale(1.15);
}

.offer-validity {
    font-size: 11px;
    color: var(--text-muted);
}

.btn-store {
    width: 100%;
    background: var(--emerald-gradient);
    color: #ffffff;
    text-decoration: none;
    border-radius: var(--radius-md);
    padding: 15px 20px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.btn-store:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(16, 185, 129, 0.45);
    filter: brightness(1.08);
}

/* ==========================================================================
   5. WINNER ANNOUNCEMENT
   ========================================================================== */

.winner-announcement-card {
    display: none;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(15, 16, 24, 0.95));
    border: 2px solid var(--gold);
    border-radius: var(--radius-xl);
    padding: 26px 20px;
    text-align: center;
    box-shadow: var(--shadow-card), var(--shadow-glow-gold);
    animation: fadeInScale 0.5s ease-out forwards;
}

.winner-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--gold);
    color: #050507;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 4px 14px;
    border-radius: var(--radius-pill);
    margin-bottom: 12px;
}

.winner-name-display {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 6px;
}

.winner-cupom-display {
    font-family: 'Courier New', monospace;
    font-size: 28px;
    font-weight: 900;
    color: var(--gold-light);
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.winner-instructions {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ==========================================================================
   6. TRUST QUALITY FEATURES & FOOTER
   ========================================================================== */

.trust-features-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.trust-feat {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 14px 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.feat-icon {
    font-size: 20px;
    margin-bottom: 2px;
}

.feat-title {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
}

.feat-sub {
    font-size: 10px;
    color: var(--text-muted);
    line-height: 1.3;
}

.footer {
    text-align: center;
    padding: 20px 0 10px 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-text {
    font-size: 11px;
    color: var(--text-muted);
}

.footer-links {
    font-size: 11px;
    color: var(--text-muted);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
}

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

/* ==========================================================================
   7. RESPONSIVE BREAKPOINTS
   ========================================================================== */

@media (max-width: 580px) {
    body {
        padding: 14px 10px 48px 10px;
    }

    .header-wrapper {
        gap: 12px;
        padding-top: 6px;
    }

    .logo-trust {
        height: 42px;
    }

    .hero-title {
        font-size: 25px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 13px;
    }

    .prize-card, .form-card {
        padding: 20px 16px;
        border-radius: var(--radius-lg);
    }

    .prize-item-title {
        font-size: 16px;
    }

    .input-field {
        font-size: 16px; /* Prevents auto-zoom in iOS Safari */
        min-height: 48px;
        padding: 12px 14px 12px 42px;
    }

    .input-icon {
        left: 12px;
        width: 16px;
        height: 16px;
    }

    .btn-submit {
        min-height: 52px;
        font-size: 14px;
        padding: 14px 20px;
        letter-spacing: 0.8px;
    }

    .trust-features-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .timer-unit {
        min-width: 46px;
        padding: 6px 8px;
    }

    .timer-number {
        font-size: 19px;
    }

    .lucky-coupon-code {
        font-size: 28px;
        letter-spacing: 2px;
    }

    .discount-code-box {
        padding: 8px 14px;
    }

    .discount-code-text {
        font-size: 20px;
    }
}
