/* Reset and Base Styles - Mobile Optimized */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Orbitron', monospace;
    background: linear-gradient(135deg, #4a1a6b 0%, #6b2c91 50%, #8b3db8 100%);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    /* Performance optimizations */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    /* Prevent zoom on input focus */
    touch-action: manipulation;
}

/* Background Pattern */
.bg-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px, 80px 80px;
    animation: float 20s ease-in-out infinite;
    z-index: 1;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

/* Sparkles Animation */
.sparkles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.sparkles::before,
.sparkles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: #ffd700;
    border-radius: 50%;
    animation: sparkle 3s linear infinite;
}

.sparkles::before {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.sparkles::after {
    top: 60%;
    right: 15%;
    animation-delay: 1.5s;
}

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

/* Main Container */
.funnel-container {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    max-width: 100%;
}

/* Character Illustrations */
.character-left,
.character-right {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    pointer-events: none;
}

.character-left {
    left: -50px;
}

.character-right {
    right: -50px;
}

/* Archer Character */
.archer-character {
    width: 120px;
    height: 150px;
    background: linear-gradient(45deg, #8B4513, #A0522D);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    position: relative;
    margin-bottom: 20px;
    animation: bounce 4s ease-in-out infinite;
}

.archer-character::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 100px;
    background: linear-gradient(45deg, #DC143C, #FF6347);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    z-index: -1;
}

.archer-character::after {
    content: '🏹';
    position: absolute;
    top: 10px;
    right: -20px;
    font-size: 30px;
    transform: rotate(-30deg);
}

/* Jester Mask */
.jester-mask {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border-radius: 50%;
    position: relative;
    margin: 20px 0;
    animation: wiggle 3s ease-in-out infinite;
}

.jester-mask::before {
    content: '🎭';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
}

/* Leprechaun Character */
.leprechaun-character {
    width: 100px;
    height: 120px;
    background: linear-gradient(45deg, #228B22, #32CD32);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    position: relative;
    animation: hop 5s ease-in-out infinite;
}

.leprechaun-character::before {
    content: '🍀';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 25px;
}

/* Zeus Character */
.zeus-character {
    width: 130px;
    height: 160px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    position: relative;
    margin-bottom: 20px;
    animation: powerGlow 6s ease-in-out infinite;
}

.zeus-character::before {
    content: '⚡';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 35px;
    animation: lightning 2s ease-in-out infinite;
}

/* Fisherman Character */
.fisherman-character {
    width: 110px;
    height: 140px;
    background: linear-gradient(45deg, #4682B4, #87CEEB);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    position: relative;
    animation: fish 4s ease-in-out infinite;
}

.fisherman-character::before {
    content: '🐟';
    position: absolute;
    top: 30px;
    right: -25px;
    font-size: 30px;
    animation: swim 3s ease-in-out infinite;
}

/* Character Animations */
@keyframes bounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

@keyframes hop {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

@keyframes powerGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.5); }
    50% { box-shadow: 0 0 40px rgba(255, 215, 0, 0.8); }
}

@keyframes lightning {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

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

@keyframes swim {
    0%, 100% { transform: translateX(0px); }
    50% { transform: translateX(10px); }
}

/* Slot Machine Panel */
.slot-machine-panel {
    background: linear-gradient(145deg, #1a0d2e, #2d1b4e);
    border: 4px solid #FFD700;
    border-radius: 25px;
    padding: 30px;
    margin: 40px 0;
    box-shadow: 
        0 0 30px rgba(255, 215, 0, 0.6),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 10;
    max-width: 400px;
    width: 100%;
    animation: panelGlow 4s ease-in-out infinite;
}

@keyframes panelGlow {
    0%, 100% { box-shadow: 0 0 30px rgba(255, 215, 0, 0.6), inset 0 0 20px rgba(255, 255, 255, 0.1); }
    50% { box-shadow: 0 0 50px rgba(255, 215, 0, 0.8), inset 0 0 30px rgba(255, 255, 255, 0.2); }
}

/* Panel Header */
.panel-header {
    text-align: center;
    margin-bottom: 30px;
}

.title-banner {
    background: linear-gradient(45deg, #1e3a8a, #3b82f6);
    padding: 8px 20px;
    border-radius: 15px;
    margin-bottom: 10px;
    display: inline-block;
    position: relative;
}

.title-banner::before {
    content: '⭐';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
}

.title-banner::after {
    content: '⭐';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
}

.title-small {
    color: white;
    font-size: 16px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.title-main {
    font-family: 'Fredoka One', cursive;
    font-size: 32px;
    background: linear-gradient(45deg, #00bfff, #87ceeb, #00bfff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    margin: 0;
    animation: titleShine 3s ease-in-out infinite;
}

@keyframes titleShine {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

/* Slot Machine */
.slot-machine {
    background: linear-gradient(145deg, #0f0f23, #1a1a2e);
    border: 3px solid #FFD700;
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 25px;
    position: relative;
    box-shadow: 
        0 0 20px rgba(255, 215, 0, 0.3),
        inset 0 0 20px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.slot-machine.spinning {
    box-shadow: 
        0 0 40px rgba(255, 215, 0, 0.8),
        inset 0 0 30px rgba(0, 0, 0, 0.3);
    transform: scale(1.02);
    border-color: #FFA500;
}

.reels-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    gap: 10px;
}

.reel {
    flex: 1;
    height: 120px;
    background: linear-gradient(145deg, #2a2a3e, #1a1a2e);
    border: 2px solid #FFD700;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    /* Performance optimizations */
    will-change: transform, box-shadow;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Reel strip background - like the reference */
.reel-strip {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 600px; /* 5 symbols * 120px each */
    background-image: 
        linear-gradient(45deg, #FFD700 25%, transparent 25%),
        linear-gradient(-45deg, #FFD700 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #FFD700 75%),
        linear-gradient(-45deg, transparent 75%, #FFD700 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    background-color: #1a1a2e;
    /* Performance optimizations */
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.reel.spinning {
    border-color: #FFA500;
    box-shadow: 
        inset 0 0 15px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 165, 0, 0.6);
    animation: reelPulse 0.5s ease-in-out infinite alternate;
}

@keyframes reelPulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

.reel-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: transform 0.1s ease-out;
    /* Performance optimizations */
    will-change: transform, filter;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.reel-strip.spinning {
    animation: reelBlur 0.1s ease-in-out infinite alternate;
}

.reel-strip.motion-blur {
    filter: blur(2px) brightness(1.3);
}

.reel-strip.micro-shake {
    animation: microShake 0.1s ease-in-out infinite alternate;
}

@keyframes reelBlur {
    0% { filter: blur(0px) brightness(1); }
    100% { filter: blur(1px) brightness(1.2); }
}

@keyframes microShake {
    0% { transform: translateX(0px) translateZ(0); }
    25% { transform: translateX(2px) translateZ(0); }
    50% { transform: translateX(-3px) translateZ(0); }
    75% { transform: translateX(1px) translateZ(0); }
    100% { transform: translateX(-2px) translateZ(0); }
}

.symbol {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    background: linear-gradient(145deg, #2a2a3e, #1a1a2e);
    position: relative;
    /* Performance optimizations */
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Symbol Styles */
.archer-symbol::before { content: '🏹'; }
.jester-symbol::before { content: '🎭'; }
.gem-symbol::before { content: '💎'; }
.zeus-symbol::before { content: '⚡'; }
.fisherman-symbol::before { content: '🐟'; }

/* Spin Button */
.spin-button {
    width: 100%;
    height: 60px;
    background: linear-gradient(45deg, #32CD32, #228B22);
    border: none;
    border-radius: 15px;
    color: white;
    font-size: 24px;
    font-weight: 900;
    font-family: 'Orbitron', monospace;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(50, 205, 50, 0.4);
}

.spin-button.spinning {
    background: linear-gradient(45deg, #FF6B6B, #FF8E53);
    animation: buttonPulse 0.5s ease-in-out infinite alternate;
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
}

@keyframes buttonPulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

.spin-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(50, 205, 50, 0.6);
}

.spin-button:active {
    transform: translateY(0);
}

.spin-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.button-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.spin-button:hover .button-glow {
    left: 100%;
}

/* Bonus Display */
.bonus-display {
    text-align: center;
    margin-top: 20px;
}

.bonus-text {
    font-size: 24px;
    font-weight: 900;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    animation: bonusPulse 2s ease-in-out infinite;
}

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

/* Win Screen */
.win-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn 0.5s ease-in;
}

.win-screen.showing {
    display: flex;
    animation: winScreenEnter 0.8s ease-out;
}

@keyframes winScreenEnter {
    0% { 
        opacity: 0; 
        transform: scale(0.8);
        backdrop-filter: blur(0px);
    }
    100% { 
        opacity: 1; 
        transform: scale(1);
        backdrop-filter: blur(10px);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* New Banner-Style Win Screen */
.win-banner {
    background: linear-gradient(90deg, #2d1b4e 0%, #4a1a6b 50%, #6b2c91 100%);
    border: 3px solid #FFD700;
    border-radius: 20px;
    padding: 30px;
    max-width: 90%;
    width: 100%;
    max-width: 800px;
    position: relative;
    animation: winBounce 0.8s ease-out;
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.8);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.banner-text {
    text-align: center;
    color: white;
}

.bonus-percentage {
    font-size: 4rem;
    font-weight: 900;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 0.9;
    margin-bottom: 5px;
}

.bonus-type {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 0.9;
    margin-bottom: 10px;
}

.bonus-description {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.await-text {
    font-size: 1.2rem;
    color: white;
    font-weight: 400;
}

.bundle-text {
    font-size: 1.4rem;
    color: #00FFFF;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}


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

@keyframes borderGlow {
    0%, 100% { 
        background-position: 0% 50%;
        opacity: 0.8;
    }
    50% { 
        background-position: 100% 50%;
        opacity: 1;
    }
}

@keyframes winBounce {
    0% { transform: scale(0.3) rotate(-10deg); opacity: 0; }
    50% { transform: scale(1.1) rotate(5deg); }
    100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

.win-title {
    font-size: 28px;
    color: #FFD700;
    margin-bottom: 20px;
    animation: winTitleGlow 1s ease-in-out infinite alternate;
    position: relative;
    z-index: 1;
}

.win-title::before {
    content: '🎉';
    position: absolute;
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    animation: emojiBounce 1s ease-in-out infinite;
}

.win-title::after {
    content: '🎉';
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    animation: emojiBounce 1s ease-in-out infinite 0.5s;
}

@keyframes emojiBounce {
    0%, 100% { transform: translateY(-50%) scale(1); }
    50% { transform: translateY(-50%) scale(1.3); }
}

@keyframes winTitleGlow {
    from { text-shadow: 0 0 10px #FFD700; }
    to { text-shadow: 0 0 20px #FFD700, 0 0 30px #FFD700; }
}

.win-reward {
    font-size: 32px;
    font-weight: 900;
    color: #00bfff;
    margin-bottom: 30px;
    animation: rewardShine 2s ease-in-out infinite;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.win-reward::before {
    content: '💰';
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 25px;
    animation: moneyShake 0.5s ease-in-out infinite;
}

.win-reward::after {
    content: '💰';
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 25px;
    animation: moneyShake 0.5s ease-in-out infinite 0.25s;
}

@keyframes moneyShake {
    0%, 100% { transform: translateY(-50%) rotate(0deg); }
    25% { transform: translateY(-50%) rotate(-10deg); }
    75% { transform: translateY(-50%) rotate(10deg); }
}

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

.claim-button {
    width: 100%;
    height: 60px;
    background: linear-gradient(45deg, #FF6B6B, #FF8E53);
    border: none;
    border-radius: 15px;
    color: white;
    font-size: 24px;
    font-weight: 900;
    font-family: 'Orbitron', monospace;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.claim-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
}

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

.confetti::before,
.confetti::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: #FFD700;
    animation: confettiFall 3s linear infinite;
}

.confetti::before {
    left: 20%;
    animation-delay: 0s;
}

.confetti::after {
    right: 20%;
    animation-delay: 1s;
}

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

@keyframes sparklePop {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

@keyframes confettiBurst {
    0% {
        transform: scale(0) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: scale(1.5) rotate(180deg);
        opacity: 0.8;
    }
    100% {
        transform: scale(0.5) rotate(360deg);
        opacity: 0;
    }
}

@keyframes victoryBurst {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    50% {
        transform: scale(2);
        opacity: 0.8;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

/* User Flow Steps */
.user-flow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 30px 0;
    max-width: 400px;
    width: 100%;
    gap: 10px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
    color: #1a0d2e;
    margin-bottom: 8px;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
    animation: stepPulse 2s ease-in-out infinite;
}

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

.step-text {
    font-size: 12px;
    color: white;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Legal Disclaimer */
.disclaimer {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    max-width: 400px;
    line-height: 1.4;
    margin-top: 20px;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .funnel-container {
        padding: 15px;
    }
    
    .character-left,
    .character-right {
        display: none;
    }
    
    .slot-machine-panel {
        margin: 20px 0;
        padding: 20px;
    }
    
    .title-main {
        font-size: 24px;
    }
    
    .reel {
        height: 100px;
    }
    
    .symbol {
        height: 100px;
        font-size: 30px;
    }
    
    .spin-button {
        height: 50px;
        font-size: 20px;
        /* Mobile touch optimization */
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
    
    .bonus-text {
        font-size: 20px;
    }
    
    .user-flow {
        flex-direction: column;
        gap: 15px;
    }
    
    .step {
        flex-direction: row;
        gap: 10px;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 18px;
        margin-bottom: 0;
    }
    
    .step-text {
        font-size: 14px;
    }
    
    /* Reduce animations on mobile for better performance */
    .reel-strip.motion-blur {
        filter: blur(1px) brightness(1.1);
    }
    
    .reel-strip.micro-shake {
        animation: none;
    }
}

/* Low-end device optimizations */
@media (max-width: 480px) {
    .title-main {
        font-size: 20px;
    }
    
    .slot-machine-panel {
        padding: 15px;
    }
    
    .reel {
        height: 80px;
    }
    
    .symbol {
        height: 80px;
        font-size: 25px;
    }
    
    .bonus-text {
        font-size: 18px;
    }
    
    /* Mobile Banner Styles */
    .win-banner {
        padding: 20px 15px;
        max-width: 95%;
        gap: 15px;
    }
    
    .banner-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .banner-text {
        text-align: center;
    }
    
    .bonus-percentage {
        font-size: 3rem;
    }
    
    .bonus-type {
        font-size: 2rem;
    }
    
    .await-text {
        font-size: 1rem;
    }
    
    .bundle-text {
        font-size: 1.2rem;
    }
    
    /* Disable complex animations on very small screens */
    .reel-strip.motion-blur {
        filter: none;
    }
    
    .reel-strip.micro-shake {
        animation: none;
    }
}

/* Performance Optimizations */
.reel-content {
    will-change: transform;
}

/* Low-end device optimizations */
.low-end-device .reel-strip.motion-blur {
    filter: none !important;
}

.low-end-device .reel-strip.micro-shake {
    animation: none !important;
}


.low-end-device .confetti {
    display: none !important;
}

.symbol {
    will-change: transform;
}

.spin-button,
.claim-button {
    will-change: transform;
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .slot-machine-panel {
        border-width: 6px;
    }
    
    .title-main {
        -webkit-text-fill-color: #00bfff;
    }
}
