/* Chicken Dash - Slot Machine CSS */

/* Slot Container */
.slot-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.slot-machine {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: var(--spacing-lg);
    border: 3px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.slot-machine::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color), var(--accent-color));
    border-radius: var(--radius-xl);
    z-index: -1;
    animation: borderGlow 3s ease-in-out infinite;
}

/* Slot Header */
.slot-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.slot-header h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: var(--spacing-sm);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.paylines-info {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    color: var(--text-color);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-lg);
    font-weight: bold;
    display: inline-block;
    font-size: 0.9rem;
}

/* Slot Reels */
.slot-reels {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.3);
}

.reel-container {
    background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
    height: 240px;
}

.reel-strip {
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-slow);
    position: relative;
}

.reel-strip.spinning {
    animation: reelSpin 0.1s linear infinite;
}

.reel {
    background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.reel-symbols {
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-slow);
}

.symbol {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-bottom: 1px solid #dee2e6;
    position: relative;
    transition: all var(--transition-fast);
}

.symbol:last-child {
    border-bottom: none;
}

.symbol.winning {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #f7dc6f 100%);
    animation: symbolWin 1s ease-in-out;
    box-shadow: 0 0 20px rgba(244, 208, 63, 0.6);
}

.symbol.spinning {
    filter: blur(2px);
}

/* Symbol Types - Alpine Fiesta Theme */
.symbol[data-symbol="accordion"] {
    background: linear-gradient(135deg, #8e44ad 0%, #9b59b6 100%);
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-size: 2.8rem;
}

.symbol[data-symbol="tyrolean_hat"] {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-size: 2.8rem;
}

.symbol[data-symbol="cheese"] {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-size: 2.8rem;
}

.symbol[data-symbol="beer"] {
    background: linear-gradient(135deg, #f1c40f 0%, #f39c12 100%);
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-size: 2.8rem;
}

.symbol[data-symbol="sausage"] {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-size: 2.8rem;
}

.symbol[data-symbol="alpenflower"] {
    background: linear-gradient(135deg, #e91e63 0%, #ad1457 100%);
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-size: 2.8rem;
}

.symbol[data-symbol="pretzel"] {
    background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-size: 2.8rem;
}

.symbol[data-symbol="alpenhorn"] {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-size: 2.8rem;
}

.symbol[data-symbol="wild"] {
    background: linear-gradient(135deg, #b3e5fc 0%, #fffde7 100%);
    color: #1565c0;
    border: 3px solid #81d4fa;
    font-size: 3.2rem;
    text-shadow: 1px 1px 6px #fff, 0 0 8px #81d4fa;
    animation: wildGlow 2s ease-in-out infinite;
}

.symbol[data-symbol="scatter"] {
    background: linear-gradient(135deg, #fffde7 0%, #ffe082 100%);
    color: #ff7043;
    border: 3px solid #ffb300;
    font-size: 3.2rem;
    text-shadow: 1px 1px 6px #fff, 0 0 8px #ffb300;
    animation: scatterGlow 2s ease-in-out infinite;
}

/* Fallback text styles for symbols that don't render as emoji */
.symbol[style*="font-size: 1.2rem"] {
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Slot Controls */
.slot-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
}

.bet-info {
    background: rgba(74, 124, 89, 0.1);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    font-weight: bold;
    color: var(--primary-color);
}

.spin-btn {
    background: linear-gradient(135deg, var(--accent-color) 0%, #e67e22 100%);
    color: white;
    border: none;
    padding: var(--spacing-lg) var(--spacing-xl);
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 150px;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.spin-btn::before {
    content: '';
    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;
}

.spin-btn:hover::before {
    left: 100%;
}

.spin-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-lg);
}

.spin-btn:active {
    transform: translateY(-1px) scale(1.02);
}

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

.spin-btn.spinning {
    animation: spinButtonPulse 1s ease-in-out infinite;
}

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

/* Auto Spin Controls */
.auto-spin-controls {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.auto-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, #5a8a6a 100%);
    color: white;
    border: none;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: bold;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.auto-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.auto-btn.active {
    background: linear-gradient(135deg, var(--error-color) 0%, #c0392b 100%);
    animation: pulse 2s infinite;
}

.auto-select {
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-sm);
    padding: var(--spacing-xs) var(--spacing-sm);
    font-size: 0.9rem;
    font-weight: bold;
    color: var(--primary-color);
    cursor: pointer;
}

.auto-select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.2);
}

/* Bonus Buy Button */
.bonus-buy-btn {
    background: linear-gradient(135deg, var(--accent-color) 0%, #e67e22 100%);
    color: white;
    border: none;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: bold;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    min-width: 80px;
}

.bonus-buy-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
}

.bonus-buy-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.bonus-buy-btn .btn-text {
    font-size: 0.8rem;
    line-height: 1;
}

.bonus-buy-btn .btn-cost {
    font-size: 0.7rem;
    opacity: 0.9;
    line-height: 1;
}

/* Win Display */
.win-display {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: var(--z-overlay);
    pointer-events: none;
    transition: all var(--transition-normal);
}

.win-display.hidden {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
}

.win-content {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    color: white;
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-lg);
    animation: winAppear 0.5s ease-out;
}

.win-amount {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: var(--spacing-sm);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.win-message {
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Bonus Trigger */
.bonus-trigger {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: var(--z-overlay);
    transition: all var(--transition-normal);
}

.bonus-trigger.hidden {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
    pointer-events: none;
}

.bonus-content {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-lg);
    animation: bonusAppear 0.8s ease-out;
}

.bonus-content h3 {
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: pulse 2s infinite;
}

.bonus-content p {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-lg);
    opacity: 0.9;
}

.bonus-start-btn {
    background: linear-gradient(135deg, var(--accent-color) 0%, #e67e22 100%);
    color: white;
    border: none;
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-md);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bonus-start-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-lg);
}

/* Payline Indicators */
.payline-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 10;
}

.payline {
    position: absolute;
    background: rgba(244, 208, 63, 0.8);
    height: 3px;
    border-radius: 2px;
    opacity: 0;
    transition: opacity var(--transition-fast);
    box-shadow: 0 0 10px rgba(244, 208, 63, 0.6);
}

.payline.active {
    opacity: 1;
    animation: paylineGlow 1s ease-in-out;
}

/* Animations */
@keyframes borderGlow {
    0%, 100% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
}

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

@keyframes spinButtonPulse {
    0% {
        box-shadow: var(--shadow-md);
    }
    50% {
        box-shadow: var(--shadow-lg), 0 0 20px rgba(255, 140, 0, 0.4);
    }
    100% {
        box-shadow: var(--shadow-md);
    }
}

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

@keyframes bonusAppear {
    0% {
        transform: scale(0.3) translateY(-100px);
        opacity: 0;
    }
    50% {
        transform: scale(1.1) translateY(20px);
    }
    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

@keyframes paylineGlow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(244, 208, 63, 0.6);
    }
    50% {
        box-shadow: 0 0 20px rgba(244, 208, 63, 1);
    }
}

/* Reel spinning animation */
@keyframes reelSpin {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-300%);
    }
}

.reel.spinning .reel-symbols {
    animation: reelSpin 0.1s linear infinite;
}

/* Symbol placeholder for empty slots */
.symbol.empty {
    background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
    opacity: 0.5;
}

.symbol.empty::after {
    content: '?';
    color: var(--text-light);
    font-size: 2rem;
}

/* --- Mexican Fiesta Slot Theme --- */

.slot-container {
    background: linear-gradient(135deg, #ffe259 0%, #ffa751 100%);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    padding: 32px 16px 24px 16px;
    margin: 32px auto;
    max-width: 600px;
    border: 4px solid #e74c3c;
    position: relative;
}

.slot-machine {
    background: linear-gradient(135deg, #f9d423 0%, #ff4e50 100%);
    border-radius: 18px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    padding: 24px 12px 16px 12px;
    border: 3px solid #27ae60;
    position: relative;
}

.slot-header h2 {
    font-family: 'Luckiest Guy', 'Comic Sans MS', cursive, sans-serif;
    color: #e74c3c;
    font-size: 2.2rem;
    letter-spacing: 2px;
    text-shadow: 2px 2px 0 #fff, 4px 4px 8px #e67e22;
    margin-bottom: 8px;
}

.paylines-info {
    color: #27ae60;
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.slot-reels {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 12px;
    margin: 0 auto 18px auto;
    min-height: 340px;
    max-width: 520px;
}

.reel-container {
    background: linear-gradient(135deg, #fffbe6 0%, #ffe0b2 100%);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    padding: 6px 2px;
    border: 2px solid #f39c12;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
}

.reel-strip {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.symbol {
    aspect-ratio: 1;
    width: 56px;
    height: 56px;
    font-size: 2.7rem;
    background: linear-gradient(135deg, #fff 60%, #ffe259 100%);
    border-radius: 10px;
    border: 2px solid #e67e22;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: transform 0.2s, box-shadow 0.2s;
}

.symbol.winning {
    background: linear-gradient(135deg, #f9d423 0%, #ff4e50 100%);
    color: #fff;
    border-color: #27ae60;
    box-shadow: 0 0 16px 4px #ffe259;
    transform: scale(1.15) rotate(-5deg);
    z-index: 2;
}

.spin-btn {
    background: linear-gradient(90deg, #e74c3c 0%, #f9d423 100%);
    color: #fff;
    font-family: 'Luckiest Guy', 'Comic Sans MS', cursive, sans-serif;
    font-size: 1.5rem;
    border: none;
    border-radius: 16px;
    padding: 16px 40px;
    margin: 18px auto 0 auto;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    outline: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.spin-btn:hover {
    background: linear-gradient(90deg, #f9d423 0%, #e74c3c 100%);
    transform: scale(1.07);
}

.bonus-buy-btn {
    background: linear-gradient(90deg, #27ae60 0%, #f9d423 100%);
    color: #fff;
    font-weight: bold;
    border-radius: 12px;
    padding: 8px 18px;
    border: none;
    margin-left: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}

.bonus-buy-btn:hover {
    background: linear-gradient(90deg, #f9d423 0%, #27ae60 100%);
    transform: scale(1.05);
}

/* Responsive for mobile */
@media (max-width: 600px) {
    .slot-container {
        padding: 12px 2px 12px 2px;
        max-width: 98vw;
    }
    .slot-reels {
        min-height: 220px;
        max-width: 98vw;
    }
    .reel-container {
        min-width: 38px;
    }
    .symbol {
        width: 36px;
        height: 36px;
        font-size: 1.5rem;
    }
    .spin-btn {
        font-size: 1.1rem;
        padding: 10px 18px;
    }
}

/* --- Enhanced Mariachi Alpen Slot Theme --- */

.slot-container {
    background: linear-gradient(135deg, #ffe259 0%, #ffa751 100%);
    border-radius: 32px;
    box-shadow: 0 12px 48px rgba(0,0,0,0.18);
    padding: 48px 24px 36px 24px;
    margin: 48px auto;
    max-width: 800px;
    border: 6px solid #e74c3c;
    position: relative;
}

.slot-machine {
    background: repeating-linear-gradient(135deg, #f9d423 0px, #ff4e50 80px, #f9d423 160px);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.16);
    padding: 36px 24px 24px 24px;
    border: 4px solid #27ae60;
    position: relative;
}

.slot-header h2 {
    font-family: 'Luckiest Guy', 'Comic Sans MS', cursive, sans-serif;
    color: #e74c3c;
    font-size: 2.8rem;
    letter-spacing: 3px;
    text-shadow: 2px 2px 0 #fff, 4px 4px 12px #e67e22;
    margin-bottom: 16px;
}

.paylines-info {
    color: #27ae60;
    font-weight: bold;
    font-size: 1.3rem;
    margin-bottom: 18px;
}

.slot-reels {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 24px;
    margin: 0 auto 28px auto;
    min-height: 520px;
    max-width: 700px;
    background: repeating-linear-gradient(90deg, #fffbe6 0px, #ffe0b2 60px, #fffbe6 120px);
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    border: 2px solid #f39c12;
    padding: 18px 0;
}

.reel-container {
    background: linear-gradient(135deg, #fffbe6 0%, #ffe0b2 100%);
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    padding: 10px 4px;
    border: 2px solid #f39c12;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 90px;
    min-height: 420px;
    position: relative;
    overflow: hidden;
}

.reel-strip {
    display: flex;
    flex-direction: column;
    gap: 22px;
    transition: transform 0.5s cubic-bezier(.68,-0.55,.27,1.55);
}

.symbol {
    aspect-ratio: 1;
    width: 80px;
    height: 80px;
    font-size: 3.5rem;
    background: linear-gradient(135deg, #fff 60%, #ffe259 100%);
    border-radius: 16px;
    border: 3px solid #e67e22;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    opacity: 0;
    animation: symbolAppear 0.5s cubic-bezier(.68,-0.55,.27,1.55) forwards;
}

@keyframes symbolAppear {
    0% { opacity: 0; transform: scale(0.7) rotate(-10deg); }
    60% { opacity: 1; transform: scale(1.15) rotate(5deg); }
    100% { opacity: 1; transform: scale(1) rotate(0deg); }
}

.symbol.winning {
    background: linear-gradient(135deg, #f9d423 0%, #ff4e50 100%);
    color: #fff;
    border-color: #27ae60;
    box-shadow: 0 0 32px 8px #ffe259, 0 0 16px 4px #e74c3c;
    transform: scale(1.22) rotate(-7deg);
    z-index: 2;
    animation: winGlow 1.2s ease-in-out infinite alternate;
}

@keyframes winGlow {
    0% { box-shadow: 0 0 32px 8px #ffe259, 0 0 16px 4px #e74c3c; }
    100% { box-shadow: 0 0 48px 16px #fffde7, 0 0 32px 8px #27ae60; }
}

.symbol[data-symbol="wild"] {
    background: linear-gradient(135deg, #b3e5fc 0%, #fffde7 100%);
    color: #1565c0;
    border: 3px solid #81d4fa;
    font-size: 4rem;
    text-shadow: 1px 1px 8px #fff, 0 0 16px #81d4fa;
    box-shadow: 0 0 32px 8px #b3e5fc, 0 0 16px 4px #1565c0;
    animation: wildGlow 1.2s ease-in-out infinite alternate;
}
@keyframes wildGlow {
    0% { box-shadow: 0 0 32px 8px #b3e5fc, 0 0 16px 4px #1565c0; }
    100% { box-shadow: 0 0 48px 16px #fff, 0 0 32px 8px #81d4fa; }
}

.symbol[data-symbol="scatter"] {
    background: linear-gradient(135deg, #fffde7 0%, #ffe082 100%);
    color: #ff7043;
    border: 3px solid #ffb300;
    font-size: 4rem;
    text-shadow: 1px 1px 8px #fff, 0 0 16px #ffb300;
    box-shadow: 0 0 32px 8px #ffe082, 0 0 16px 4px #ff7043;
    animation: scatterGlow 1.2s ease-in-out infinite alternate;
}
@keyframes scatterGlow {
    0% { box-shadow: 0 0 32px 8px #ffe082, 0 0 16px 4px #ff7043; }
    100% { box-shadow: 0 0 48px 16px #fff, 0 0 32px 8px #ffb300; }
}

.spin-btn {
    background: linear-gradient(90deg, #e74c3c 0%, #f9d423 100%);
    color: #fff;
    font-family: 'Luckiest Guy', 'Comic Sans MS', cursive, sans-serif;
    font-size: 2.2rem;
    border: none;
    border-radius: 24px;
    padding: 24px 64px;
    margin: 32px auto 0 auto;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    cursor: pointer;
    transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
    outline: none;
    display: flex;
    align-items: center;
    gap: 18px;
    animation: spinPulse 1.5s infinite alternate;
}
@keyframes spinPulse {
    0% { box-shadow: 0 8px 32px rgba(0,0,0,0.18); transform: scale(1); }
    100% { box-shadow: 0 16px 48px rgba(231,76,60,0.25); transform: scale(1.07); }
}

.spin-btn:hover {
    background: linear-gradient(90deg, #f9d423 0%, #e74c3c 100%);
    transform: scale(1.10);
    box-shadow: 0 16px 48px rgba(231,76,60,0.25);
}

.bonus-buy-btn {
    background: linear-gradient(90deg, #27ae60 0%, #f9d423 100%);
    color: #fff;
    font-weight: bold;
    border-radius: 16px;
    padding: 14px 32px;
    border: none;
    margin-left: 18px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    font-size: 1.3rem;
}

.bonus-buy-btn:hover {
    background: linear-gradient(90deg, #f9d423 0%, #27ae60 100%);
    transform: scale(1.07);
}

/* Responsive for mobile */
@media (max-width: 900px) {
    .slot-container {
        padding: 18px 2px 18px 2px;
        max-width: 99vw;
    }
    .slot-reels {
        min-height: 320px;
        max-width: 99vw;
        gap: 10px;
    }
    .reel-container {
        min-width: 54px;
        min-height: 220px;
    }
    .symbol {
        width: 44px;
        height: 44px;
        font-size: 2rem;
    }
    .spin-btn {
        font-size: 1.2rem;
        padding: 10px 18px;
    }
}
