/* Bold/Edgy Theme - Aggressive, High-energy with Gambling Elements */
body {
    font-family: 'Oswald', 'Arial Black', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background: #000000;
    position: relative;
    overflow: hidden;
}

body::before {
    content: '🎰⚡🎲🎰⚡🎲';
    position: absolute;
    top: -50px;
    left: -50px;
    font-size: 80px;
    opacity: 0.15;
    animation: floatEdgy 15s infinite linear;
    white-space: nowrap;
    filter: drop-shadow(0 0 10px #ff0000);
}

body::after {
    content: '⚡🎲🎰⚡🎲🎰';
    position: absolute;
    bottom: -50px;
    right: -50px;
    font-size: 80px;
    opacity: 0.15;
    animation: floatEdgy 20s infinite linear reverse;
    white-space: nowrap;
    filter: drop-shadow(0 0 10px #ff0000);
}

@keyframes floatEdgy {
    0% { transform: translateX(-100px) rotate(-10deg); }
    100% { transform: translateX(calc(100vw + 100px)) rotate(-10deg); }
}

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

@keyframes pulseRed {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 0 40px rgba(255, 0, 0, 0.9);
    }
}

@keyframes spinFast {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes glitch {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-2px); }
    40% { transform: translateX(2px); }
    60% { transform: translateX(-2px); }
    80% { transform: translateX(2px); }
}

.welcome-screen,
.bonus-form,
.age-verification,
.zip-code-form,
.loading-screen,
.gambling-question {
    animation: fadeInUp 0.4s ease-out;
    position: relative;
}

.welcome-screen {
    background: #0a0a0a;
    padding: 2rem 1.5rem;
    border-radius: 0;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.5);
    max-width: 400px;
    width: 100%;
    text-align: center;
    border: 3px solid #ff0000;
    color: #ffffff;
    position: relative;
}

.welcome-title {
    font-size: 1.75rem;
    color: #ff0000;
    margin-bottom: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(255, 0, 0, 0.6);
    line-height: 1.3;
}

.welcome-title::before {
    content: '🎰 ';
    animation: spinFast 1s infinite linear;
    display: inline-block;
    filter: drop-shadow(0 0 10px #ff0000);
}

.welcome-title::after {
    content: ' 🎰';
    animation: spinFast 1s infinite linear reverse;
    display: inline-block;
    filter: drop-shadow(0 0 10px #ff0000);
}

.welcome-subtitle {
    font-size: 0.9375rem;
    color: #ff3333;
    margin-bottom: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.5;
}

.begin-btn {
    width: 100%;
    min-height: 48px;
    padding: 1rem;
    background: #ff0000;
    color: #000000;
    border: 3px solid #ff0000;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.begin-btn::before {
    content: '⚡ ';
}

.begin-btn:active {
    transform: scale(0.97);
}

@media (min-width: 768px) {
    .welcome-screen {
        max-width: 500px;
        padding: 2.5rem;
    }
    
    .welcome-title {
        font-size: 2.25rem;
    }
    
    .begin-btn:hover {
        background: #ffffff;
        color: #000000;
        box-shadow: 0 0 30px rgba(255, 0, 0, 0.8);
        transform: scale(1.05);
    }
}

@media (min-width: 1024px) {
    .welcome-screen {
        max-width: 600px;
    }
    
    .welcome-title {
        font-size: 2.75rem;
        animation: glitch 3s infinite;
    }
}

.bonus-form {
    background: #0a0a0a;
    padding: 2.5rem;
    border-radius: 0;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.5), inset 0 0 30px rgba(255, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
    color: #ffffff;
    border: 3px solid #ff0000;
    position: relative;
}

.bonus-form::before,
.bonus-form::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 3px solid #ff0000;
}

.bonus-form::before {
    top: -3px;
    left: -3px;
    border-right: none;
    border-bottom: none;
}

.bonus-form::after {
    bottom: -3px;
    right: -3px;
    border-left: none;
    border-top: none;
}

.bonus-form {
    animation: pulseRed 2s infinite, fadeInUp 0.4s ease-out;
}

.form-title {
    font-size: 2.75rem;
    color: #ff0000;
    text-align: center;
    margin-bottom: 0.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.8), 0 0 40px rgba(255, 0, 0, 0.4);
    animation: glitch 3s infinite;
}

.form-title::before {
    content: '🎰 ';
    animation: spinFast 1s infinite linear;
    display: inline-block;
    filter: drop-shadow(0 0 10px #ff0000);
}

.form-title::after {
    content: ' 🎰';
    animation: spinFast 1s infinite linear reverse;
    display: inline-block;
    filter: drop-shadow(0 0 10px #ff0000);
}

.location-subtitle {
    font-size: 1rem;
    color: #ff3333;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.bonus-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bonus-card {
    background: #1a1a1a;
    border: 2px solid #333333;
    border-left: 5px solid #ff0000;
    border-radius: 0;
    padding: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out backwards;
}

.bonus-card:nth-child(1) { animation-delay: 0.1s; }
.bonus-card:nth-child(2) { animation-delay: 0.2s; }
.bonus-card:nth-child(3) { animation-delay: 0.3s; }

.bonus-card::before {
    content: '⚡';
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    filter: drop-shadow(0 0 5px #ff0000);
    animation: spinFast 1s infinite linear;
}

.bonus-card:hover {
    transform: translateX(10px) scale(1.02);
    border-left-color: #ff0000;
    border-color: #ff0000;
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.6);
    background: #0f0f0f;
}

.bonus-card:hover::before {
    opacity: 1;
}

.bonus-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.bonus-number {
    font-size: 1rem;
    font-weight: 900;
    color: #ff0000;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
}

.bonus-number::before {
    content: '🎲 ';
    animation: spinFast 2s infinite linear;
    display: inline-block;
}

.bonus-amount {
    font-size: 1.5rem;
    color: #ffffff;
    font-weight: 900;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
    animation: pulseRed 2s infinite;
}

.bonus-description {
    color: #cccccc;
    margin-bottom: 1rem;
    font-size: 0.9375rem;
    line-height: 1.6;
    font-weight: 400;
}

.bonus-btn {
    width: 100%;
    padding: 1.25rem;
    background: #ff0000;
    color: #000000;
    border: 3px solid #ff0000;
    border-radius: 0;
    font-size: 1.125rem;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 3px;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.bonus-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.bonus-btn::after {
    content: '🎯';
    position: absolute;
    left: 20px;
    animation: spinFast 1s infinite linear;
}

.bonus-btn:hover {
    background: #ffffff;
    color: #000000;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.8);
    transform: scale(1.08);
}

.bonus-btn:hover::before {
    width: 300px;
    height: 300px;
}

.bonus-btn:active {
    transform: scale(0.98);
}

.back-link {
    display: block;
    text-align: center;
    margin-top: 1.5rem;
    color: #ff3333;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.back-link:hover {
    text-decoration: none;
    color: #ff0000;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
    transform: translateX(-5px);
}

.age-verification,
.zip-code-form,
.loading-screen,
.gambling-question {
    background: #0a0a0a;
    padding: 2.5rem;
    border-radius: 0;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.5);
    max-width: 400px;
    width: 100%;
    text-align: center;
    border: 3px solid #ff0000;
    color: #ffffff;
    position: relative;
}

.age-question,
.zip-question,
.loading-message,
.gambling-question-text {
    font-size: 1.75rem;
    color: #ff0000;
    margin-bottom: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(255, 0, 0, 0.6);
}

.age-question::before,
.zip-question::before {
    content: '⚡ ';
    animation: spinFast 1s infinite linear;
    display: inline-block;
}

.age-buttons,
.gambling-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.age-btn,
.gambling-btn {
    padding: 1rem 2rem;
    border: 2px solid;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: transparent;
}

.age-btn.yes,
.gambling-btn.yes {
    border-color: #00ff00;
    color: #00ff00;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.3);
}

.age-btn.yes:hover,
.gambling-btn.yes:hover {
    background: #00ff00;
    color: #000000;
    box-shadow: 0 0 25px rgba(0, 255, 0, 0.6);
    transform: scale(1.15) translateY(-3px);
}

.age-btn.no,
.gambling-btn.no {
    border-color: #ff0000;
    color: #ff0000;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
}

.age-btn.no:hover,
.gambling-btn.no:hover {
    background: #ff0000;
    color: #ffffff;
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.6);
    transform: scale(1.15) translateY(-3px);
}

.hidden {
    display: none !important;
}

.zip-input-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.zip-input-group::before {
    content: '🎰';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    filter: drop-shadow(0 0 5px #ff0000);
    animation: spinFast 2s infinite linear;
}

.zip-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #333333;
    border-radius: 0;
    font-size: 1.125rem;
    box-sizing: border-box;
    text-align: center;
    background: #1a1a1a;
    color: #ffffff;
    font-weight: 700;
    transition: all 0.3s ease;
}

.zip-input:focus {
    outline: none;
    border-color: #ff0000;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
    background: #0f0f0f;
}

.zip-input::placeholder {
    color: #666666;
}

.zip-submit-btn {
    padding: 1rem 2rem;
    background: #ff0000;
    color: #000000;
    border: 3px solid #ff0000;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

.zip-submit-btn::before {
    content: '⚡ ';
}

.zip-submit-btn:hover {
    background: #ffffff;
    color: #000000;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.8);
    transform: scale(1.08);
}

.loading-spinner {
    border: 4px solid #333333;
    border-top: 4px solid #ff0000;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 0.8s linear infinite;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

.loading-spinner::after {
    content: '🎰';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 28px;
    animation: spinFast 1s infinite linear reverse;
    filter: drop-shadow(0 0 5px #ff0000);
}

.loading-message::after {
    content: ' ⚡';
    animation: spinFast 1s infinite linear;
    display: inline-block;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Smooth transitions */
body > div {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

body > div.hidden {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    pointer-events: none;
}

body > div:not(.hidden) {
    opacity: 1;
    transform: translateY(0) scale(1);
}
