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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: #000000;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
    /* Colors */
    --black-primary: #000000;
    --black-secondary: #1a1a1a;
    --black-tertiary: #2a2a2a;
    --gold-primary: #FFD700;
    --gold-secondary: #B8860B;
    --gold-tertiary: #DAA520;
    --red-neon: #FF0040;
    --red-dark: #CC0033;
    --white-primary: #ffffff;
    --white-secondary: #f5f5f5;
    
    /* Typography */
    --font-primary: 'Rajdhani', sans-serif;
    --font-display: 'Orbitron', monospace;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;
    --container-max-width: 1200px;
    
    /* Shadows & Effects */
    --gold-glow: 0 0 20px rgba(255, 215, 0, 0.5);
    --red-glow: 0 0 20px rgba(255, 0, 64, 0.5);
    --text-shadow-gold: 0 0 10px rgba(255, 215, 0, 0.8);
    --text-shadow-red: 0 0 10px rgba(255, 0, 64, 0.8);
    
    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #B8860B 100%);
    --gradient-red: linear-gradient(135deg, #FF0040 0%, #CC0033 100%);
    --gradient-black: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    --gradient-marble: linear-gradient(45deg, #1a1a1a 0%, #2a2a2a 25%, #1a1a1a 50%, #2a2a2a 75%, #1a1a1a 100%);
}

/* ===== PRE-ANIMATION SCREEN ===== */
.pre-animation-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 11000;
    transition: opacity 1s ease-out, visibility 1s ease-out;
}

.pre-animation-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}

.pre-animation-content {
    text-align: center;
    max-width: 600px;
    padding: 0 20px;
}

.pre-title {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 30px;
    text-shadow: 
        0 0 20px rgba(0, 0, 0, 0.9),
        0 0 40px rgba(0, 0, 0, 0.7),
        2px 2px 4px rgba(0, 0, 0, 1);
}

.pre-title .title-line {
    display: block;
    color: var(--white-primary);
    animation: slide-in-up 1s ease-out forwards;
    opacity: 0;
    transform: translateY(50px);
}

.pre-title .brand-name {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: var(--text-shadow-gold);
    animation: slide-in-up 1s ease-out 0.3s forwards;
    opacity: 0;
    transform: translateY(50px);
}

.pre-subtitle {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 50px;
    opacity: 0.9;
    color: var(--white-secondary);
    animation: fade-in 1s ease-out 0.6s forwards;
    opacity: 0;
    text-shadow: 
        0 0 10px rgba(0, 0, 0, 0.8),
        1px 1px 2px rgba(0, 0, 0, 1);
}

.take-risk-btn {
    position: relative;
    padding: 20px 50px;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    border: 3px solid var(--black-primary);
    border-radius: 12px;
    cursor: pointer;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 2px;
    min-width: 250px;
    background: var(--white-primary);
    color: var(--black-primary);
    box-shadow: 
        0 0 20px rgba(255, 255, 255, 0.3),
        0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    animation: fade-in 1s ease-out 0.9s forwards;
    opacity: 0;
}

.take-risk-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 0 30px rgba(255, 255, 255, 0.5),
        0 15px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.95);
}

.take-risk-btn:active {
    transform: translateY(-2px) scale(1.02);
}

.take-risk-btn .btn-text {
    position: relative;
    z-index: 2;
}

.take-risk-btn .btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.take-risk-btn:hover .btn-glow {
    transform: translateX(100%);
}

/* ===== LOADING SCREEN ===== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 1s ease-out, visibility 1s ease-out;
}

.loading-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}

.dice-container {
    width: 300px;
    height: 300px;
    margin-bottom: 50px;
    position: relative;
}

#dice-scene {
    width: 100%;
    height: 100%;
}

.loading-text {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
}

.risk-rich-text {
    display: inline-block;
    background: linear-gradient(135deg, #00FF00 0%, #00CC00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: var(--text-shadow-gold);
    animation: pulse-glow 2s ease-in-out infinite alternate;
}

.risk-rich-text.risk {
    background: var(--gradient-red);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: var(--text-shadow-red);
}

.rich-highlight {
    background: linear-gradient(135deg, #00FF00 0%, #00CC00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.8);
    font-weight: inherit;
}

/* ===== AUDIO CONTROLS ===== */
.audio-controls {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.audio-btn {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid var(--gold-primary);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.audio-btn:hover {
    background: rgba(255, 215, 0, 0.1);
    box-shadow: var(--gold-glow);
    transform: scale(1.1);
}

.audio-btn.muted {
    border-color: var(--red-neon);
}

.audio-btn.muted:hover {
    background: rgba(255, 0, 64, 0.1);
    box-shadow: var(--red-glow);
}

.audio-icon {
    font-size: 1.2rem;
}

/* ===== MAIN CONTENT ===== */
.main-content {
    transition: opacity 1s ease-in;
}

.main-content.hidden {
    opacity: 0;
    pointer-events: none;
}

.section-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: var(--container-padding);
}

.section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: var(--text-shadow-gold);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

/* ===== HERO SECTION ===== */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.casino-patterns {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

.floating-dice {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.global-floating-dice {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: -1; /* Behind all content */
    overflow: hidden;
}

.global-floating-dice canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.neon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: transparent;
    animation: pulse-glow 4s ease-in-out infinite alternate;
}

.hero-content {
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 30px;
    text-shadow: 
        0 0 20px rgba(0, 0, 0, 0.9),
        0 0 40px rgba(0, 0, 0, 0.7),
        2px 2px 4px rgba(0, 0, 0, 1);
}

.title-line-1,
.title-line-2,
.title-line-3 {
    display: block;
    animation: slide-in-up 1s ease-out forwards;
    opacity: 0;
    transform: translateY(50px);
}

.title-line-2 {
    animation-delay: 0.3s;
}

.title-line-3 {
    animation-delay: 0.6s;
}

.risk-text {
    color: var(--red-neon);
    text-shadow: var(--text-shadow-red);
    animation: flicker-red 3s ease-in-out infinite;
}

.rich-text {
    background: linear-gradient(135deg, #00FF00 0%, #00CC00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.8);
    animation: flicker-green 3s ease-in-out infinite;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 50px;
    opacity: 0.9;
    animation: fade-in 1s ease-out 0.9s forwards;
    opacity: 0;
    text-shadow: 
        0 0 10px rgba(0, 0, 0, 0.8),
        1px 1px 2px rgba(0, 0, 0, 1);
}

.hero-cta {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fade-in 1s ease-out 1.2s forwards;
    opacity: 0;
}

.cta-btn {
    position: relative;
    padding: 18px 40px;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 200px;
}

.cta-gold {
    background: var(--white-primary);
    color: var(--black-primary);
    border: 3px solid var(--black-primary);
    box-shadow: 
        0 0 20px rgba(255, 255, 255, 0.3),
        0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-gold:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 0 30px rgba(255, 255, 255, 0.5),
        0 8px 25px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.95);
}

.cta-red {
    background: var(--white-primary);
    color: var(--black-primary);
    border: 3px solid var(--black-primary);
    box-shadow: 
        0 0 20px rgba(255, 255, 255, 0.3),
        0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-red:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 0 30px rgba(255, 255, 255, 0.5),
        0 8px 25px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.95);
}

.btn-text,
.btn-hover-text {
    transition: opacity 0.3s ease;
}

.btn-hover-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.cta-btn:hover .btn-text {
    opacity: 0;
}

.cta-btn:hover .btn-hover-text {
    opacity: 1;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--gold-primary);
    font-size: 0.9rem;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-dice {
    width: 20px;
    height: 20px;
    background: var(--gradient-gold);
    border-radius: 3px;
    animation: rotate-dice 2s linear infinite;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: var(--section-padding);
    background: transparent;
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 70%, rgba(255, 215, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 0, 64, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.interactive-dice-container {
    text-align: center;
}

#interactive-dice {
    width: 300px;
    height: 300px;
    margin: 0 auto 20px;
    cursor: grab;
}

#interactive-dice:active {
    cursor: grabbing;
}

.dice-instruction {
    color: var(--gold-primary);
    font-size: 1rem;
    font-weight: 600;
}

.about-text {
    font-size: 1.2rem;
    line-height: 1.8;
    text-shadow: 
        0 0 8px rgba(0, 0, 0, 0.7),
        1px 1px 2px rgba(0, 0, 0, 0.9);
}

.lead-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 30px;
    text-shadow: var(--text-shadow-gold);
}

.highlight-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.philosophy-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid var(--gold-primary);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold-primary);
    text-shadow: var(--text-shadow-gold);
}

.stat-label {
    font-size: 1rem;
    color: var(--white-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* ===== COMMUNITY SECTION ===== */
.community-section {
    padding: var(--section-padding);
    background: transparent;
    position: relative;
}

.club-entrance {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.club-subtitle {
    font-size: 1.3rem;
    color: var(--gold-primary);
    margin-bottom: 50px;
    font-style: italic;
}

.velvet-rope {
    width: 200px;
    height: 20px;
    background: 
        repeating-linear-gradient(
            90deg,
            #8B0000 0px,
            #8B0000 10px,
            #FFD700 10px,
            #FFD700 20px
        );
    margin: 0 auto 50px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
}

.velvet-rope::before,
.velvet-rope::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 15px;
    height: 15px;
    background: var(--gold-primary);
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.velvet-rope::before {
    left: -25px;
}

.velvet-rope::after {
    right: -25px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 30px;
    background: rgba(26, 26, 26, 0.7);
    backdrop-filter: blur(10px);
    border: 2px solid var(--gold-primary);
    border-radius: 15px;
    color: var(--white-primary);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 150px;
    justify-content: center;
}

.social-btn:hover {
    transform: translateY(-5px);
    box-shadow: var(--gold-glow);
    background: rgba(255, 215, 0, 0.1);
}

.social-icon {
    font-size: 1.5rem;
}

.meme-wall {
    background: rgba(26, 26, 26, 0.7);
    backdrop-filter: blur(10px);
    border: 2px solid var(--gold-primary);
    border-radius: 20px;
    padding: 40px;
}

.meme-wall h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--gold-primary);
    margin-bottom: 30px;
}

.meme-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
    min-height: 200px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 20px;
}

.submit-meme-btn {
    background: var(--gradient-gold);
    color: var(--black-primary);
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-meme-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--gold-glow);
}

/* ===== FOOTER ROULETTE ===== */
.footer-roulette {
    padding: 80px 0;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}

.roulette-wheel {
    position: relative;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: 
        conic-gradient(
            from 0deg,
            var(--red-neon) 0deg 72deg,
            var(--black-secondary) 72deg 144deg,
            var(--red-neon) 144deg 216deg,
            var(--black-secondary) 216deg 288deg,
            var(--red-neon) 288deg 360deg
        );
    border: 8px solid var(--gold-primary);
    box-shadow: 
        0 0 50px rgba(255, 215, 0, 0.3),
        inset 0 0 30px rgba(0, 0, 0, 0.5);
    animation: spin-wheel 20s linear infinite;
}

.wheel-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--gold-secondary);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.ticker {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--black-primary);
    text-shadow: none;
}

.wheel-links {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.wheel-link {
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: 0 0;
    transform: 
        translate(-50%, -50%) 
        rotate(var(--angle)) 
        translateY(-120px);
    color: var(--white-primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 5px;
    border: 1px solid var(--gold-primary);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.wheel-link:hover {
    background: var(--gradient-gold);
    color: var(--black-primary);
    transform: 
        translate(-50%, -50%) 
        rotate(var(--angle)) 
        translateY(-130px) 
        scale(1.1);
}

/* ===== COMING SOON MODAL ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 12000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    position: relative;
    background: var(--white-primary);
    border: 3px solid var(--black-primary);
    border-radius: 15px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    box-shadow: 
        0 0 30px rgba(255, 255, 255, 0.3),
        0 10px 40px rgba(0, 0, 0, 0.5);
}

.modal-overlay.show .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--black-primary);
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: scale(1.1);
}

.modal-header {
    margin-bottom: 30px;
}

.modal-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--black-primary);
    margin: 0;
    text-shadow: none;
}

.modal-body {
    color: var(--black-primary);
}

.modal-message {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

.modal-submessage {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 30px;
    line-height: 1.5;
}

.modal-dice {
    font-size: 3rem;
    animation: dice-bounce 2s ease-in-out infinite;
}

@keyframes dice-bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    40% {
        transform: translateY(-10px) rotate(180deg);
    }
    60% {
        transform: translateY(-5px) rotate(360deg);
    }
}

/* ===== UTILITY CLASSES ===== */
.hidden {
    display: none !important;
}

.fade-in {
    opacity: 0;
    animation: fade-in 1s ease-out forwards;
}

.slide-up {
    transform: translateY(50px);
    opacity: 0;
    animation: slide-in-up 1s ease-out forwards;
}

/* ===== KEYFRAME ANIMATIONS ===== */
@keyframes pulse-glow {
    0% { opacity: 0.8; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.05); }
}

@keyframes flicker-gold {
    0%, 100% { text-shadow: var(--text-shadow-gold); }
    50% { text-shadow: 0 0 20px rgba(255, 215, 0, 1); }
}

@keyframes flicker-red {
    0%, 100% { text-shadow: var(--text-shadow-red); }
    50% { text-shadow: 0 0 20px rgba(255, 0, 64, 1); }
}

@keyframes flicker-green {
    0%, 100% { text-shadow: 0 0 10px rgba(0, 255, 0, 0.8); }
    50% { text-shadow: 0 0 20px rgba(0, 255, 0, 1); }
}

@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slide-in-up {
    from { 
        opacity: 0;
        transform: translateY(50px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

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

@keyframes spin-wheel {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
