:root {
    --neon-yellow: #DAFF01;
    --dark-bg: #111111;
    --card-bg: #0F0F0F;
    --input-bg: #1A1A1A;
    --input-border: #333333;
    --text-primary: #FFFFFF;
    --text-secondary: #888888;
    --pill-bg: #2A1A1A;
    --pill-text: #FFD700;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ccff00;
    /* Fallback */
    background: linear-gradient(135deg, #ccff00 0%, #aadd00 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-primary);
    overflow-x: hidden;
    padding: 20px;
}

/* Background Effects */
.page-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: url('background.png') no-repeat center center fixed;
    background-size: cover;
}

/* Removed CSS-generated grid and deco overlay in favor of the image */

/* Card Container */
.card-container {
    background-color: var(--card-bg);
    width: 100%;
    max-width: 400px;
    /* Default mobile width */
    border-radius: 24px;
    padding: 32px 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 10;
    transition: max-width 0.3s ease;
}

@media (min-width: 1024px) {
    .card-container {
        max-width: 900px;
        /* Wider desktop width as per reference */
        padding: 40px 60px;
    }

    .card-header h1 {
        font-size: 42px;
    }
}

/* Header */
.card-header {
    text-align: center;
    margin-bottom: 24px;
}

/* Logo */
.brand-logo {
    display: block;
    margin: 0 auto 12px auto;
    max-width: 280px;
    /* Wider for text logo */
    width: 100%;
    height: auto !important;
    object-fit: contain;
    /* Yellow smoke effect */
    filter: drop-shadow(0 0 5px rgba(218, 255, 1, 0.6)) drop-shadow(0 0 15px rgba(218, 255, 1, 0.4)) drop-shadow(0 0 30px rgba(218, 255, 1, 0.2));
}

@media (max-width: 1023px) {
    /* Mobile styles if needed */
}

h1 {
    font-family: 'Teko', sans-serif;
    font-size: 32px;
    line-height: 1.1;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    font-style: italic;
}

.subtitle {
    color: var(--text-secondary);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-info-pill {
    background: #1F0B0B;
    color: #FFD233;
    text-align: center;
    padding: 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid #2E1212;
    margin-bottom: 24px;
}

/* Form */
.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

input,
select {
    width: 100%;
    background: var(--input-bg);
    border: 1px solid var(--input-border);
    border-radius: 8px;
    padding: 14px 16px;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}

input:focus,
select:focus {
    border-color: var(--neon-yellow);
}

input::placeholder {
    color: #444;
}

.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: '▼';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--neon-yellow);
    font-size: 10px;
    pointer-events: none;
}

select {
    appearance: none;
    cursor: pointer;
}

.input-instructions {
    list-style: none;
    margin-bottom: 10px;
}

.input-instructions li {
    font-size: 11px;
    color: #888;
    margin-bottom: 4px;
    padding-left: 12px;
    position: relative;
}

.input-instructions li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--neon-yellow);
    font-weight: bold;
}

/* Button */
.submit-btn {
    width: 100%;
    background: var(--neon-yellow);
    color: #000;
    border: none;
    padding: 16px;
    border-radius: 30px;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 16px;
    text-transform: uppercase;
    font-style: italic;
    cursor: pointer;
    margin-top: 12px;
    margin-bottom: 24px;
    transition: transform 0.1s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(218, 255, 1, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(218, 255, 1, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Footer Buttons */
/* Footer Buttons - Inside card */
.app-buttons {
    display: flex;
    justify-content: center;
    margin-top: 24px;
    /* Space from Enter button */
    gap: 16px;
    flex-wrap: wrap;
    width: 100%;
}

@media (max-width: 768px) {
    .app-buttons {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        /* Increased gap for better touch targets */
        margin-top: 24px;
        margin-bottom: 12px;
        /* Ensure space at the bottom */
    }
}

/* .footer-img removed */

.store-link {
    display: inline-block;
    transition: transform 0.1s ease, filter 0.2s ease;
    cursor: pointer;
}

.store-link img {
    height: 42px !important;
    /* Slightly smaller to ensure fit */
    width: auto !important;
    display: block;
    max-width: 100%;
    object-fit: contain;
}

/* 3D Click Animation */
.store-link:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.store-link:active {
    transform: translateY(1px) scale(0.98);
    filter: brightness(0.95);
}

/* Decorative SVGs in background - simplified as simple shapes for CSS */
.deco-trophy {
    position: absolute;
    left: 10%;
    top: 40%;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    z-index: 1;
    display: none;
    /* Just placeholder for now */
}

/* Inline Text Links */
/* Inline Text Links */
.text-link {
    color: var(--neon-yellow) !important;
    text-decoration: underline;
    font-weight: 700;
    transition: opacity 0.2s ease;
}

.text-link:hover {
    opacity: 0.8;
}