/* Demo game — scoped under .demo-game (embedded in site), compact fit-on-screen */
.game-title {
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    color: var(--text, #333);
}

.demo-game {
    margin: 1rem 0;
    color: #333;
    position: relative;
    background: transparent;
}

.demo-game .game-container {
    max-width: 640px;
    width: 100%;
    margin: 0 auto;
    background: transparent;
    padding: 0;
    position: relative;
    z-index: 1;
}

.demo-game .game-main {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.demo-game .game-board-container {
    position: relative;
    width: 100%;
    aspect-ratio: 6/5;
    max-height: min(450px, 55vh);
    margin: 0 auto;
    background: 
        linear-gradient(135deg, rgba(241, 230, 251, 0.9) 0%, rgba(196, 185, 248, 0.9) 50%, rgba(231, 86, 220, 0.8) 100%),
        url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="clouds" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="15" fill="rgba(255,255,255,0.1)"/><circle cx="60" cy="40" r="20" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="70" r="18" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23clouds)"/></svg>');
    border-radius: 20px;
    padding: 6px;
    box-sizing: border-box;
    box-shadow: 
        inset 0 0 40px rgba(255, 255, 255, 0.3),
        0 10px 30px rgba(0, 0, 0, 0.3);
    border: 6px solid transparent;
    background-clip: padding-box;
}

.demo-game .game-board-container::before {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border-radius: 25px;
    background: repeating-linear-gradient(
        45deg,
        #E74C3C 0px,
        #E74C3C 15px,
        #FFFFFF 15px,
        #FFFFFF 30px
    );
    z-index: -1;
    box-shadow: 
        inset 0 0 20px rgba(231, 76, 60, 0.3),
        0 0 15px rgba(231, 76, 60, 0.2);
}

.demo-game .game-board {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(5, 1fr);
    gap: 4px;
    width: 100%;
    height: 100%;
    padding: 5px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    position: absolute;
    inset: 6px;
    z-index: 1;
    box-sizing: border-box;
}

.demo-game .symbol-cell {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.65) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6em;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.25),
        inset 0 2px 8px rgba(255, 255, 255, 0.7),
        inset 0 -2px 8px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    animation: fallDown 0.5s ease-out;
    border: 2px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    isolation: isolate;
}

.demo-game .symbol-cell .symbol-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 100%;
    will-change: transform;
    z-index: 1;
    pointer-events: none;
    background: transparent;
}

.demo-game .symbol-cell.spinning .symbol-content {
    animation: scrollDown 0.08s linear infinite;
}

@keyframes scrollDown {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100%); }
}

.demo-game .symbol-cell .symbol-content > div {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4em;
    position: relative;
    color: inherit;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-smooth: always;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.15));
}

.demo-game .symbol-cell .symbol-content > div::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 25%;
    width: 30%;
    height: 30%;
    background: radial-gradient(
        ellipse at center,
        rgba(255, 255, 255, 0.4) 0%,
        rgba(255, 255, 255, 0.2) 40%,
        transparent 70%
    );
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
    mix-blend-mode: overlay;
    opacity: 0.5;
}

.demo-game .symbol-cell .symbol-content > div::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        ellipse at 30% 25%,
        rgba(255, 255, 255, 0.2) 0%,
        transparent 40%
    );
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: soft-light;
    border-radius: 16px;
    opacity: 0.6;
}

.demo-game .symbol-cell::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(255, 255, 255, 0.7) 30%,
        rgba(255, 255, 255, 0.4) 60%,
        transparent 100%
    );
    border-radius: 16px 16px 50% 50%;
    pointer-events: none;
    z-index: 3;
    mix-blend-mode: overlay;
}

.demo-game .symbol-cell:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.35),
        inset 0 2px 5px rgba(255, 255, 255, 0.7);
}

.demo-game .symbol-cell::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    transform: translate(-50%, -50%);
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.4) 0%,
        rgba(255, 255, 255, 0.2) 20%,
        rgba(231, 86, 220, 0.15) 40%,
        rgba(72, 187, 248, 0.1) 60%,
        transparent 80%
    );
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
    animation: starburstPulse 3s ease-in-out infinite;
}

@keyframes starburstPulse {
    0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

.demo-game .symbol-cell:hover::before {
    animation: starburstPulse 1.5s ease-in-out infinite, shine 1.5s infinite;
}

@keyframes shine {
    0% { transform: translate(-50%, -50%) rotate(0deg) scale(1); }
    50% { transform: translate(-50%, -50%) rotate(180deg) scale(1.2); }
    100% { transform: translate(-50%, -50%) rotate(360deg) scale(1); }
}

@keyframes fallDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.demo-game .symbol-cell.winning {
    animation: winPulse 0.6s ease-in-out;
    box-shadow: 
        0 0 40px rgba(231, 86, 220, 0.9),
        0 0 70px rgba(72, 187, 248, 0.7),
        0 0 100px rgba(255, 215, 0, 0.4),
        inset 0 0 25px rgba(255, 255, 255, 0.6),
        inset 0 2px 8px rgba(255, 255, 255, 0.7);
    border-color: rgba(255, 215, 0, 0.9);
    transform: scale(1.05);
    z-index: 3;
}

@keyframes winPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.demo-game .symbol-cell.multiplier {
    position: relative;
}

.demo-game .multiplier-badge {
    position: absolute;
    top: -3px;
    right: -3px;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 215, 0, 1) 0%, rgba(255, 193, 7, 1) 30%, rgba(255, 152, 0, 1) 60%, rgba(255, 87, 34, 0.9) 100%),
        linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF8C00 100%);
    color: #8B4513;
    font-size: 0.4em;
    font-weight: 900;
    line-height: 1.1;
    padding: 0;
    border-radius: 50%;
    z-index: 15;
    box-shadow: 
        0 2px 6px rgba(255, 215, 0, 0.7),
        0 0 10px rgba(255, 193, 7, 0.4),
        inset 0 1px 2px rgba(255, 255, 255, 0.5),
        inset 0 -1px 2px rgba(139, 69, 19, 0.3),
        0 0 0 2px rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    width: 1.15em;
    height: 1.15em;
    min-width: 18px;
    min-height: 18px;
    max-width: 26px;
    max-height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: multiplierPulse 2s ease-in-out infinite, multiplierRotate 4s linear infinite;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.8), 0 -1px 1px rgba(139, 69, 19, 0.5);
    position: relative;
}

.demo-game .multiplier-badge::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 20%;
    width: 30%;
    height: 30%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.demo-game .multiplier-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: repeating-conic-gradient(
        from 0deg at 50% 50%,
        transparent 0deg,
        rgba(255, 255, 255, 0.1) 5deg,
        transparent 10deg,
        rgba(255, 255, 255, 0.1) 15deg,
        transparent 20deg
    );
    pointer-events: none;
    opacity: 0.6;
}

@keyframes multiplierRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes multiplierPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.demo-game .win-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(231, 86, 220, 0.4) 0%, rgba(72, 187, 248, 0.4) 100%);
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 2.5em;
    font-weight: bold;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 2px 2px 8px rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    animation: overlayPulse 1s ease-in-out;
    backdrop-filter: blur(5px);
    color: #fff;
    z-index: 5;
}

.demo-game .win-overlay.show {
    display: flex;
    animation: winCelebration 1.5s ease-in-out;
}

@keyframes overlayPulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.02); }
}

@keyframes winCelebration {
    0% { opacity: 0; transform: scale(0.8); }
    50% { opacity: 0.9; transform: scale(1.05); }
    100% { opacity: 0.4; transform: scale(1); }
}

.demo-game .game-controls {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(180deg, rgba(50, 40, 80, 0.95) 0%, rgba(35, 28, 60, 0.98) 100%);
    padding: 14px 18px;
    border-radius: 20px;
    box-shadow: 0 -2px 20px rgba(255, 255, 255, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.demo-game .control-panel {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.demo-game .balance-info,
.demo-game .bet-control,
.demo-game .last-win {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 10px 14px;
    border-radius: 12px;
    box-shadow: 
        inset 0 2px 0 rgba(255, 255, 255, 0.35),
        0 2px 6px rgba(0, 0, 0, 0.3);
    min-width: 0;
}

.demo-game .balance-info {
    background: linear-gradient(180deg, #2d8ef5 0%, #0173ED 50%, #015bbb 100%);
    border: 2px solid rgba(100, 180, 255, 0.9);
}

.demo-game .bet-control {
    background: linear-gradient(180deg, #2d8ef5 0%, #0173ED 50%, #015bbb 100%);
    border: 2px solid rgba(100, 180, 255, 0.9);
}

.demo-game .last-win {
    background: linear-gradient(180deg, #a55cff 0%, #8C32FA 50%, #6b1fd4 100%);
    border: 2px solid rgba(200, 150, 255, 0.9);
}

.demo-game .balance-info label,
.demo-game .bet-control label,
.demo-game .last-win label {
    font-size: 0.8em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.demo-game .balance,
.demo-game .bet-value,
.demo-game .win-amount {
    font-size: 1.35em;
    font-weight: bold;
    color: #f1c40f;
    -webkit-text-stroke: 1.5px #fff;
    paint-order: stroke fill;
    text-shadow: 0 1px 0 #fff, 0 2px 4px rgba(0, 0, 0, 0.4), 0 0 8px rgba(241, 196, 15, 0.5);
}

.demo-game .bet-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.demo-game .bet-selector .bet-value {
    min-width: 52px;
    padding: 6px 10px;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    font-size: 1.2em;
}

.demo-game .bet-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    background: linear-gradient(180deg, #b8724a 0%, #96461E 50%, #6b3014 100%);
    border: 2px solid rgba(220, 160, 100, 0.9);
    color: #fff;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1.4em;
    font-weight: bold;
    line-height: 1;
    transition: all 0.2s ease;
    box-shadow: 
        inset 0 2px 0 rgba(255, 255, 255, 0.25),
        0 2px 4px rgba(0, 0, 0, 0.35);
}

.demo-game .bet-btn:hover {
    background: linear-gradient(180deg, #c87a52 0%, #a64f22 50%, #7a3818 100%);
    border-color: rgba(255, 200, 150, 0.95);
    transform: translateY(-1px);
    box-shadow: 
        inset 0 2px 0 rgba(255, 255, 255, 0.3),
        0 3px 8px rgba(0, 0, 0, 0.4);
}

.demo-game .bet-btn:active {
    transform: translateY(0);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.demo-game .spin-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    min-width: 80px;
    min-height: 80px;
    flex-shrink: 0;
    padding: 0;
    background: linear-gradient(180deg, #8fdc2a 0%, #70CC00 50%, #4d9100 100%);
    border: 3px solid rgba(180, 255, 100, 0.95);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 
        inset 0 2px 0 rgba(255, 255, 255, 0.4),
        inset 0 -2px 0 rgba(0, 0, 0, 0.25),
        0 4px 12px rgba(0, 0, 0, 0.35);
    transition: all 0.2s ease;
    position: relative;
    justify-self: center;
}

.demo-game .spin-button:hover:not(:disabled) {
    background: linear-gradient(180deg, #9fe83a 0%, #80dc10 50%, #5da000 100%);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        inset 0 2px 0 rgba(255, 255, 255, 0.5),
        inset 0 -2px 0 rgba(0, 0, 0, 0.2),
        0 6px 16px rgba(0, 0, 0, 0.4);
}

.demo-game .spin-button:active:not(:disabled) {
    transform: translateY(0) scale(0.98);
    box-shadow: 
        inset 0 2px 4px rgba(0, 0, 0, 0.3),
        0 2px 6px rgba(0, 0, 0, 0.3);
}

.demo-game .spin-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.demo-game .spin-button.spinning {
    animation: spinAnimation 0.5s ease-in-out;
}

@keyframes spinAnimation {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(0.95); }
}

.demo-game .spin-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.demo-game .demo-reg-cta-wrap {
    flex-basis: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 4px;
}

.demo-game .demo-reg-cta {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(180deg, #E74C3C 0%, #c0392b 50%, #a93226 100%);
    border: 2px solid rgba(255, 200, 180, 0.9);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 12px;
    text-align: center;
    transition: all 0.2s ease;
    box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.2), 0 2px 8px rgba(0, 0, 0, 0.3);
}

.demo-game .demo-reg-cta:hover {
    background: linear-gradient(180deg, #ec7063 0%, #e74c3c 50%, #c0392b 100%);
    transform: translateY(-1px);
    box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.3), 0 4px 12px rgba(0, 0, 0, 0.35);
}

.demo-game .bonus-round {
    background: linear-gradient(135deg, #E756DC 0%, #4B65E1 50%, #48BBF8 100%);
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    margin-top: 20px;
    animation: bonusAppear 0.5s ease-out;
    box-shadow: 0 10px 30px rgba(231, 86, 220, 0.6), inset 0 2px 10px rgba(255, 255, 255, 0.2), 0 0 50px rgba(75, 101, 225, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.demo-game .bonus-round::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: bonusShine 3s linear infinite;
}

@keyframes bonusShine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

@keyframes bonusAppear {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.demo-game .bonus-content h2 {
    font-size: 2em;
    margin-bottom: 12px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 2px 2px 8px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.demo-game .free-spins-count,
.demo-game .bonus-multiplier {
    font-size: 1.5em;
    margin: 8px 0;
    font-weight: bold;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.6), 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.demo-game .rules-panel {
    margin-top: 12px;
    background: linear-gradient(135deg, rgba(58, 28, 103, 0.5) 0%, rgba(75, 101, 225, 0.5) 100%);
    padding: 14px 18px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.2);
}

.demo-game .rules-panel h3 {
    margin-bottom: 8px;
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    font-size: 1.15em;
}

.demo-game .rules-panel ul {
    list-style: none;
    padding-left: 0;
}

.demo-game .rules-panel li {
    padding: 4px 0;
    padding-left: 22px;
    position: relative;
    font-size: 0.9em;
}

.demo-game .rules-panel li:before {
    content: "🍬";
    position: absolute;
    left: 0;
}

@media (max-width: 768px) {
    .demo-game .symbol-cell { font-size: 1.35em; }
    .demo-game .game-controls { flex-direction: column; }
    .demo-game .control-panel { flex-direction: column; }
    .demo-game .spin-button { width: 72px; height: 72px; min-width: 72px; min-height: 72px; }
    .demo-game .spin-icon { width: 36px; height: 36px; }
    .demo-game .bet-btn { width: 40px; height: 40px; font-size: 1.2em; }
    .demo-game .balance,
    .demo-game .bet-value,
    .demo-game .win-amount { font-size: 1.1em; }
}

@media (max-width: 480px) {
    .demo-game .game-container { padding: 10px 12px; }
    .demo-game .symbol-cell { font-size: 1.2em; }
    .demo-game .game-board { gap: 4px; padding: 4px; }
}

.demo-game .symbol-cell.winning {
    animation: symbolWin 0.6s ease-in-out;
}

@keyframes symbolWin {
    0% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.2) rotate(5deg); }
    50% { transform: scale(1.1) rotate(-5deg); }
    75% { transform: scale(1.2) rotate(5deg); }
    100% { transform: scale(1) rotate(0deg); }
}

.demo-game .symbol-cell[data-symbol="🍇"] .symbol-content > div,
.demo-game .symbol-cell .symbol-content > div[data-symbol="🍇"] {
    text-shadow: 0 2px 4px rgba(108, 52, 131, 0.4), 0 1px 2px rgba(0, 0, 0, 0.2);
    filter: drop-shadow(0 1px 2px rgba(108, 52, 131, 0.3)) brightness(1.05);
}

.demo-game .symbol-cell[data-symbol="🍇"] {
    background: linear-gradient(145deg, rgba(155, 89, 182, 0.95) 0%, rgba(142, 68, 173, 0.9) 50%, rgba(108, 52, 131, 0.95) 100%),
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3) 0%, transparent 50%);
    color: white;
    box-shadow: 0 8px 20px rgba(155, 89, 182, 0.4), inset 0 2px 8px rgba(255, 255, 255, 0.3), inset 0 -2px 8px rgba(108, 52, 131, 0.3);
}

.demo-game .symbol-cell[data-symbol="🍉"] .symbol-content > div,
.demo-game .symbol-cell .symbol-content > div[data-symbol="🍉"] {
    text-shadow: 0 2px 4px rgba(192, 57, 43, 0.4), 0 1px 2px rgba(0, 0, 0, 0.2);
    filter: drop-shadow(0 1px 2px rgba(192, 57, 43, 0.3)) brightness(1.05);
}

.demo-game .symbol-cell[data-symbol="🍉"] {
    background: linear-gradient(145deg, rgba(231, 76, 60, 0.95) 0%, rgba(192, 57, 43, 0.9) 50%, rgba(231, 76, 60, 0.95) 100%),
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3) 0%, transparent 50%);
    color: white;
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.4), inset 0 2px 8px rgba(255, 255, 255, 0.3), inset 0 -2px 8px rgba(192, 57, 43, 0.3);
}

.demo-game .symbol-cell[data-symbol="🍊"] .symbol-content > div,
.demo-game .symbol-cell .symbol-content > div[data-symbol="🍊"] {
    text-shadow: 0 2px 4px rgba(230, 126, 34, 0.4), 0 1px 2px rgba(0, 0, 0, 0.2);
    filter: drop-shadow(0 1px 2px rgba(230, 126, 34, 0.3)) brightness(1.05);
}

.demo-game .symbol-cell[data-symbol="🍊"] {
    background: linear-gradient(145deg, rgba(255, 152, 0, 0.95) 0%, rgba(243, 156, 18, 0.9) 50%, rgba(230, 126, 34, 0.95) 100%),
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3) 0%, transparent 50%);
    color: white;
    box-shadow: 0 8px 20px rgba(255, 152, 0, 0.4), inset 0 2px 8px rgba(255, 255, 255, 0.3), inset 0 -2px 8px rgba(230, 126, 34, 0.3);
}

.demo-game .symbol-cell[data-symbol="🍋"] .symbol-content > div,
.demo-game .symbol-cell .symbol-content > div[data-symbol="🍋"] {
    text-shadow: 0 2px 4px rgba(255, 193, 7, 0.4), 0 1px 2px rgba(139, 105, 20, 0.3);
    filter: drop-shadow(0 1px 2px rgba(255, 193, 7, 0.3)) brightness(1.05);
}

.demo-game .symbol-cell[data-symbol="🍋"] {
    background: linear-gradient(145deg, rgba(255, 235, 59, 0.95) 0%, rgba(241, 196, 15, 0.9) 50%, rgba(255, 193, 7, 0.95) 100%),
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4) 0%, transparent 50%);
    color: #8B6914;
    box-shadow: 0 8px 20px rgba(255, 235, 59, 0.4), inset 0 2px 8px rgba(255, 255, 255, 0.4), inset 0 -2px 8px rgba(255, 193, 7, 0.3);
}

.demo-game .symbol-cell[data-symbol="🍌"] .symbol-content > div,
.demo-game .symbol-cell .symbol-content > div[data-symbol="🍌"] {
    text-shadow: 0 2px 4px rgba(244, 208, 63, 0.4), 0 1px 2px rgba(139, 105, 20, 0.3);
    filter: drop-shadow(0 1px 2px rgba(244, 208, 63, 0.3)) brightness(1.05);
}

.demo-game .symbol-cell[data-symbol="🍌"] {
    background: linear-gradient(145deg, rgba(255, 235, 59, 0.95) 0%, rgba(247, 220, 111, 0.9) 50%, rgba(244, 208, 63, 0.95) 100%),
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4) 0%, transparent 50%);
    color: #8B6914;
    box-shadow: 0 8px 20px rgba(255, 235, 59, 0.4), inset 0 2px 8px rgba(255, 255, 255, 0.4), inset 0 -2px 8px rgba(244, 208, 63, 0.3);
}

.demo-game .symbol-cell[data-symbol="🍎"] .symbol-content > div,
.demo-game .symbol-cell .symbol-content > div[data-symbol="🍎"] {
    text-shadow: 0 2px 4px rgba(198, 40, 40, 0.4), 0 1px 2px rgba(0, 0, 0, 0.2);
    filter: drop-shadow(0 1px 2px rgba(198, 40, 40, 0.3)) brightness(1.05);
}

.demo-game .symbol-cell[data-symbol="🍎"] {
    background: linear-gradient(145deg, rgba(244, 67, 54, 0.95) 0%, rgba(231, 76, 60, 0.9) 50%, rgba(198, 40, 40, 0.95) 100%),
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3) 0%, transparent 50%);
    color: white;
    box-shadow: 0 8px 20px rgba(244, 67, 54, 0.4), inset 0 2px 8px rgba(255, 255, 255, 0.3), inset 0 -2px 8px rgba(198, 40, 40, 0.3);
}

.demo-game .symbol-cell[data-symbol="🍓"] .symbol-content > div,
.demo-game .symbol-cell .symbol-content > div[data-symbol="🍓"] {
    text-shadow: 0 2px 4px rgba(194, 24, 91, 0.4), 0 1px 2px rgba(0, 0, 0, 0.2);
    filter: drop-shadow(0 1px 2px rgba(194, 24, 91, 0.3)) brightness(1.05);
}

.demo-game .symbol-cell[data-symbol="🍓"] {
    background: linear-gradient(145deg, rgba(233, 30, 99, 0.95) 0%, rgba(194, 24, 91, 0.9) 50%, rgba(233, 30, 99, 0.95) 100%),
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3) 0%, transparent 50%);
    color: white;
    box-shadow: 0 8px 20px rgba(233, 30, 99, 0.4), inset 0 2px 8px rgba(255, 255, 255, 0.3), inset 0 -2px 8px rgba(194, 24, 91, 0.3);
}

.demo-game .symbol-cell[data-symbol="🍭"] .symbol-content > div,
.demo-game .symbol-cell .symbol-content > div[data-symbol="🍭"] {
    text-shadow: 0 2px 4px rgba(196, 185, 248, 0.4), 0 1px 2px rgba(0, 0, 0, 0.2), 0 0 10px rgba(231, 86, 220, 0.3);
    filter: drop-shadow(0 1px 2px rgba(196, 185, 248, 0.3)) brightness(1.05) saturate(1.1);
}

.demo-game .symbol-cell[data-symbol="🍭"] {
    background: linear-gradient(145deg, rgba(231, 86, 220, 0.95) 0%, rgba(196, 185, 248, 0.9) 50%, rgba(231, 86, 220, 0.95) 100%),
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4) 0%, transparent 50%);
    color: white;
    animation: scatterPulse 2s ease-in-out infinite;
    box-shadow: 0 8px 25px rgba(231, 86, 220, 0.5), 0 0 30px rgba(231, 86, 220, 0.3), inset 0 2px 8px rgba(255, 255, 255, 0.4), inset 0 -2px 8px rgba(196, 185, 248, 0.3);
}

@keyframes scatterPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 8px 25px rgba(231, 86, 220, 0.5), 0 0 30px rgba(231, 86, 220, 0.3), inset 0 2px 8px rgba(255, 255, 255, 0.4), inset 0 -2px 8px rgba(196, 185, 248, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 10px 30px rgba(231, 86, 220, 0.7), 0 0 40px rgba(231, 86, 220, 0.5), inset 0 2px 8px rgba(255, 255, 255, 0.5), inset 0 -2px 8px rgba(196, 185, 248, 0.4); }
}

.demo-game .symbol-cell.multiplier {
    position: relative;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25), inset 0 2px 8px rgba(255, 255, 255, 0.7), inset 0 -2px 8px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.3), 0 0 25px rgba(255, 215, 0, 0.5), 0 0 40px rgba(255, 193, 7, 0.3);
    animation: multiplierGlow 2s ease-in-out infinite;
}

@keyframes multiplierGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}
