.draw-page {
    min-height: 100vh;
    background: radial-gradient(ellipse at top, #1a1f3a 0%, #0d1117 100%);
    position: relative;
    overflow-x: hidden;
}

.draw-page .universal-header {
    background: rgba(10, 14, 39, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.35);
}

.draw-page .universal-back-btn:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.draw-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 100, 100, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(100, 150, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 40% 80%, rgba(150, 100, 255, 0.06) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

.draw-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 30px;
    align-items: start;
}

.wheel-section {
    background: linear-gradient(145deg, rgba(25, 30, 50, 0.6), rgba(15, 20, 35, 0.8));
    border-radius: 30px;
    padding: 40px;
    border: 1px solid rgba(100, 150, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
}

.draws-counter {
    text-align: center;
    margin-bottom: 40px;
}

.counter-wrapper {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 100, 100, 0.15), rgba(150, 100, 255, 0.15));
    padding: 20px 50px;
    border-radius: 20px;
    border: 2px solid rgba(255, 150, 150, 0.3);
    box-shadow: 0 10px 40px rgba(255, 100, 100, 0.2);
}

.counter-number {
    font-size: 56px;
    font-weight: 900;
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.counter-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.slot-area {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 28px 0 44px;
}

.slot-machine--classic {
    position: relative;
    width: 100%;
    max-width: 440px;
    padding: 0 18px 22px;
    border-radius: 20px 20px 28px 28px;
    background:
        linear-gradient(180deg, #8b1538 0%, #5c0e24 18%, #4a0c1f 50%, #3d0a1a 100%);
    border: 4px solid;
    border-color: #d4af37 #8a7020 #5c4815 #c9a227;
    box-shadow:
        0 0 0 2px #1a0508,
        0 18px 40px rgba(0, 0, 0, 0.55),
        inset 0 2px 0 rgba(255, 200, 150, 0.12),
        inset 0 -8px 24px rgba(0, 0, 0, 0.35);
}

.slot-bulbs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 10px;
    padding: 14px 12px 10px;
}

.slot-bulbs span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #fff8e0, #f0c020 40%, #b8860b 100%);
    box-shadow:
        0 0 8px rgba(255, 220, 100, 0.9),
        inset 0 -2px 4px rgba(120, 80, 0, 0.5);
    animation: slotBulbFlash 1.4s ease-in-out infinite;
}

.slot-bulbs span:nth-child(odd) {
    animation-delay: 0.35s;
}

@keyframes slotBulbFlash {
    0%, 100% { opacity: 0.55; filter: brightness(0.85); }
    50% { opacity: 1; filter: brightness(1.15); }
}

.slot-marquee {
    position: relative;
    margin: 0 8px 12px;
    padding: 10px 16px;
    border-radius: 10px;
    background: linear-gradient(180deg, #1a0a0f 0%, #0d0408 100%);
    border: 2px solid #2a1518;
    box-shadow: inset 0 2px 12px rgba(0, 0, 0, 0.85);
    text-align: center;
    overflow: hidden;
}

.slot-marquee-lights {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 20px,
        rgba(255, 60, 60, 0.12) 20px,
        rgba(255, 60, 60, 0.12) 22px
    );
    animation: slotMarqueeScan 3s linear infinite;
    pointer-events: none;
}

@keyframes slotMarqueeScan {
    0% { transform: translateX(-22px); }
    100% { transform: translateX(0); }
}

.slot-marquee-text {
    position: relative;
    z-index: 1;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(22px, 5vw, 30px);
    font-weight: 800;
    letter-spacing: 0.35em;
    color: #ffd54a;
    text-shadow:
        0 0 12px rgba(255, 200, 60, 0.8),
        0 2px 0 #8b4513,
        0 4px 8px rgba(0, 0, 0, 0.8);
}

.slot-chrome-bezel {
    margin: 0 4px;
    padding: 10px;
    border-radius: 14px;
    background: linear-gradient(145deg, #e8d89c 0%, #a08030 22%, #d4af37 45%, #6b5420 78%, #c9a227 100%);
    box-shadow:
        inset 0 2px 3px rgba(255, 255, 255, 0.45),
        inset 0 -3px 8px rgba(0, 0, 0, 0.35),
        0 4px 12px rgba(0, 0, 0, 0.4);
}

.slot-window {
    position: relative;
    z-index: 1;
    border-radius: 10px;
    padding: 12px 10px 14px;
    background: linear-gradient(180deg, #0a0b10 0%, #151820 50%, #0c0e14 100%);
    border: 3px solid #0a0a0a;
    box-shadow:
        inset 0 4px 20px rgba(0, 0, 0, 0.9),
        inset 0 0 0 1px rgba(80, 90, 120, 0.25);
}

.slot-glass-shine {
    position: absolute;
    inset: 0;
    border-radius: 8px;
    pointer-events: none;
    z-index: 4;
    background: linear-gradient(
        125deg,
        rgba(255, 255, 255, 0.14) 0%,
        transparent 35%,
        transparent 60%,
        rgba(255, 255, 255, 0.04) 100%
    );
}

.slot-payline {
    position: absolute;
    left: 10px;
    right: 10px;
    top: 50%;
    height: 76px;
    margin-top: -38px;
    border-radius: 8px;
    border: 3px solid rgba(255, 215, 80, 0.75);
    box-shadow:
        0 0 0 1px rgba(139, 0, 0, 0.5),
        0 0 24px rgba(255, 200, 60, 0.35),
        inset 0 0 16px rgba(255, 200, 80, 0.1);
    pointer-events: none;
    z-index: 3;
}

.slot-reels-row {
    display: flex;
    gap: 0;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

.slot-reel {
    flex: 1;
    min-width: 0;
    height: 76px;
    overflow: hidden;
    border-radius: 6px;
    background: linear-gradient(180deg, #1e222c 0%, #0e1018 45%, #1a1e28 100%);
    border: 2px solid #0a0a0c;
    box-shadow:
        inset 0 3px 10px rgba(0, 0, 0, 0.85),
        inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.slot-reel-slot {
    flex: 0 0 6px;
    width: 6px;
    align-self: stretch;
    margin: 4px 0;
    border-radius: 3px;
    background: linear-gradient(90deg, #2a2a2a, #8a8a8a, #3a3a3a);
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.9);
}

.slot-strip {
    will-change: transform;
    backface-visibility: hidden;
}

.slot-cell {
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.45);
    box-sizing: border-box;
}

.slot-cell:last-child {
    border-bottom: none;
}

.slot-cell--icon {
    background: radial-gradient(ellipse at 50% 30%, rgba(60, 70, 100, 0.35), transparent 65%);
}

.slot-symbol-img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
    user-select: none;
    -webkit-user-drag: none;
}

.slot-cell--win {
    background: linear-gradient(180deg, #3d2510 0%, #1f1208 100%);
    border-left: 1px solid rgba(255, 200, 80, 0.2);
    border-right: 1px solid rgba(255, 200, 80, 0.2);
}

.slot-win-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 2px 4px;
}

.slot-win-coin {
    width: 34px;
    height: 34px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.55));
}

.slot-win-amount {
    font-family: 'Courier Prime', ui-monospace, monospace;
    font-size: 12px;
    font-weight: 800;
    color: #fff8e7;
    letter-spacing: 0.02em;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9), 0 0 10px rgba(255, 200, 80, 0.35);
    line-height: 1.1;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.slot-spin-button {
    display: block;
    width: calc(100% - 16px);
    margin: 18px auto 0;
    padding: 16px 24px;
    border-radius: 999px;
    position: relative;
    z-index: 2;
    overflow: hidden;
    background: linear-gradient(180deg, #ff5050 0%, #c41e1e 45%, #8b0000 100%);
    border: 4px solid #f5e6a8;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    box-shadow:
        0 6px 0 #5a0a0a,
        0 10px 24px rgba(0, 0, 0, 0.45),
        inset 0 2px 0 rgba(255, 200, 200, 0.35);
}

.slot-spin-glow {
    position: absolute;
    inset: -40%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 255, 200, 0.12), transparent 40%);
    animation: slotSpinGlow 3s linear infinite;
    pointer-events: none;
}

@keyframes slotSpinGlow {
    to { transform: rotate(360deg); }
}

.slot-spin-button:hover {
    transform: scale(1.02) translateY(-1px);
    box-shadow:
        0 7px 0 #5a0a0a,
        0 14px 28px rgba(180, 30, 30, 0.45),
        inset 0 2px 0 rgba(255, 220, 220, 0.45);
}

.slot-spin-button:active {
    transform: scale(0.98) translateY(3px);
    box-shadow:
        0 3px 0 #5a0a0a,
        0 6px 16px rgba(0, 0, 0, 0.4),
        inset 0 2px 6px rgba(0, 0, 0, 0.25);
}

.slot-spin-button.disabled {
    opacity: 0.45;
    cursor: not-allowed;
    filter: grayscale(0.5);
    box-shadow: 0 4px 0 #444, 0 6px 16px rgba(0, 0, 0, 0.3);
}

.slot-spin-button.disabled:hover {
    transform: none;
}

.slot-spin-button .button-text {
    position: relative;
    z-index: 1;
    font-size: 22px;
    font-weight: 900;
    color: #fffef8;
    text-shadow: 0 2px 0 #5a0808, 0 4px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.4em;
}

.prizes-section {
    margin-top: 50px;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.section-title svg {
    width: 28px;
    height: 28px;
    color: #ff8e53;
    filter: drop-shadow(0 2px 8px rgba(255, 142, 83, 0.5));
}

.section-title span {
    font-size: 22px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.prizes-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
}

.prize-box {
    background: linear-gradient(135deg, rgba(50, 60, 90, 0.5), rgba(30, 40, 60, 0.6));
    border-radius: 18px;
    padding: 25px 15px;
    border: 1px solid rgba(100, 150, 255, 0.25);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.prize-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 150, 100, 0.1), rgba(150, 100, 255, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.prize-box:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 150, 100, 0.4);
    border-color: rgba(255, 150, 150, 0.5);
}

.prize-box:hover::before {
    opacity: 1;
}

.prize-symbol {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 150, 100, 0.2), rgba(150, 100, 255, 0.2));
    animation: symbolBounce 3s ease-in-out infinite;
}

.prize-symbol svg {
    width: 28px;
    height: 28px;
    color: #ff8e53;
    filter: drop-shadow(0 3px 8px rgba(255, 142, 83, 0.6));
}

@keyframes symbolBounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-8px) scale(1.1);
    }
}

.prize-text {
    font-size: 16px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

.info-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.rules-panel,
.winners-panel {
    background: linear-gradient(145deg, rgba(25, 30, 50, 0.6), rgba(15, 20, 35, 0.8));
    border-radius: 25px;
    padding: 30px;
    border: 1px solid rgba(100, 150, 255, 0.2);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
}

.panel-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(100, 150, 255, 0.2);
}

.panel-title svg {
    width: 24px;
    height: 24px;
    color: #6ba3ff;
}

.panel-title span {
    font-size: 18px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.panel-body {
    font-size: 14px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.7);
}

.panel-body p {
    margin: 0 0 12px 0;
}

.panel-body p:last-child {
    margin-bottom: 0;
}

.winners-list {
    height: 350px;
    overflow: hidden;
    position: relative;
}

.winners-scroll {
    animation: scrollWinners 30s linear infinite;
    will-change: transform;
}

@keyframes scrollWinners {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

.winners-list:hover .winners-scroll {
    animation-play-state: paused;
}

.winner-row {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-bottom: 1px solid rgba(100, 150, 255, 0.15);
    transition: all 0.3s ease;
}

.winner-row:hover {
    background: rgba(100, 150, 255, 0.08);
    padding-left: 20px;
}

.winner-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 150, 100, 0.2), rgba(150, 100, 255, 0.2));
    border: 2px solid rgba(150, 150, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.winner-icon svg {
    width: 28px;
    height: 28px;
    color: #6ba3ff;
}

.winner-data {
    flex: 1;
    min-width: 0;
}

.winner-name {
    font-size: 15px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 4px;
}

.winner-date {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.winner-value {
    font-size: 17px;
    font-weight: 800;
    background: linear-gradient(135deg, #ff8e53, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.no-data {
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    padding: 80px 20px;
    font-size: 15px;
    font-weight: 600;
}


.win-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.win-modal.show {
    display: flex;
}

.modal-mask {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
}

.modal-box {
    position: relative;
    z-index: 1;
    max-width: 90%;
    width: 450px;
}

.modal-inner {
    background: linear-gradient(145deg, rgba(25, 30, 50, 0.95), rgba(15, 20, 35, 0.98));
    border-radius: 30px;
    padding: 50px 40px 40px;
    border: 2px solid rgba(255, 150, 150, 0.4);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6), 0 0 100px rgba(255, 150, 100, 0.4);
    text-align: center;
    animation: modalEnter 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(30px);
}

.modal-inner::before {
    content: '';
    position: absolute;
    top: -60%;
    left: -60%;
    width: 220%;
    height: 220%;
    background: linear-gradient(60deg, transparent, rgba(255, 150, 100, 0.15), transparent);
    transform: rotate(60deg);
    animation: modalGlow 4s ease-in-out infinite;
}

@keyframes modalGlow {
    0% {
        transform: translateX(-120%) rotate(60deg);
    }
    100% {
        transform: translateX(120%) rotate(60deg);
    }
}

@keyframes modalEnter {
    from {
        transform: translateY(-80px) scale(0.85);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.celebration {
    margin-bottom: 35px;
}

.celebration-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(145deg, #ff6b6b, #ff8e53);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(255, 107, 107, 0.5);
    animation: celebrationPulse 2.5s ease-in-out infinite;
}

@keyframes celebrationPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 40px rgba(255, 107, 107, 0.5);
    }
    50% {
        transform: scale(1.12);
        box-shadow: 0 15px 50px rgba(255, 107, 107, 0.7);
    }
}

.celebration-icon svg {
    width: 54px;
    height: 54px;
    color: #FFFFFF;
}

.celebration-text {
    font-size: 32px;
    font-weight: 900;
    color: #ff8e53;
    text-shadow: 0 3px 15px rgba(255, 142, 83, 0.6), 0 0 20px rgba(255, 142, 83, 0.4);
    margin: 0;
}

.win-info {
    margin-bottom: 35px;
}

.win-label {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
}

.win-amount {
    font-size: 64px;
    font-weight: 900;
    background: linear-gradient(135deg, #ff8e53, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    animation: amountShine 2.5s ease-in-out infinite;
}

@keyframes amountShine {
    0%, 100% {
        filter: drop-shadow(0 0 25px rgba(255, 142, 83, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(255, 142, 83, 0.8));
    }
}

.close-button {
    width: 100%;
    padding: 20px 40px;
    border-radius: 60px;
    background: linear-gradient(145deg, #ff6b6b, #ff8e53);
    border: none;
    color: #FFFFFF;
    font-size: 19px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    box-shadow: 0 5px 25px rgba(255, 107, 107, 0.5);
}

.close-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(255, 107, 107, 0.7);
}

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

.close-button svg {
    width: 22px;
    height: 22px;
}

.loading-screen {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(15px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.loading-screen.show {
    display: flex;
}

.loading-box {
    text-align: center;
}

.spinner {
    width: 70px;
    height: 70px;
    border: 5px solid rgba(255, 150, 100, 0.25);
    border-top: 5px solid #ff6b6b;
    border-right: 5px solid #ff8e53;
    border-radius: 50%;
    animation: spinnerRotation 1.2s linear infinite;
    margin: 0 auto 25px;
    box-shadow: 0 0 40px rgba(255, 107, 107, 0.4);
}

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

.loading-label {
    font-size: 18px;
    font-weight: 700;
    color: #ff6b6b;
    text-shadow: 0 2px 10px rgba(255, 107, 107, 0.3);
    letter-spacing: 2px;
}

.toast-notify {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.85);
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(250, 248, 245, 0.98) 100%);
    color: #1a1f3a;
    padding: 22px 38px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 700;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 150, 100, 0.3);
    text-align: center;
    max-width: 80%;
    word-wrap: break-word;
}

.toast-notify.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

@media (max-width: 1024px) {
    .draw-main {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .info-section {
        order: 2;
    }
}

@media (max-width: 768px) {
    .draw-main {
        padding: 0 15px 50px;
    }

    .wheel-section {
        padding: 30px 20px;
    }

    .counter-number {
        font-size: 48px;
    }

    .prizes-list {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 12px;
    }

    .slot-spin-button .button-text {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .wheel-section {
        padding: 25px 15px;
        border-radius: 25px;
    }

    .counter-wrapper {
        padding: 15px 40px;
    }

    .counter-number {
        font-size: 42px;
    }

    .counter-text {
        font-size: 12px;
    }

    .slot-area {
        padding: 22px 0 36px;
    }

    .slot-machine--classic {
        padding: 0 10px 16px;
    }

    .slot-bulbs span {
        width: 10px;
        height: 10px;
    }

    .slot-marquee-text {
        font-size: 18px;
        letter-spacing: 0.22em;
    }

    .slot-symbol-img {
        width: 46px;
        height: 46px;
    }

    .slot-win-amount {
        font-size: 11px;
    }

    .slot-spin-button {
        width: calc(100% - 10px);
        margin-top: 14px;
        padding: 14px 16px;
    }

    .slot-spin-button .button-text {
        font-size: 18px;
        letter-spacing: 0.22em;
    }

    .section-title span {
        font-size: 19px;
    }

    .prize-box {
        padding: 20px 12px;
    }

    .prize-symbol {
        width: 44px;
        height: 44px;
        margin: 0 auto 12px;
    }

    .prize-symbol svg {
        width: 24px;
        height: 24px;
    }

    .prize-text {
        font-size: 15px;
    }

    .rules-panel,
    .winners-panel {
        padding: 25px 20px;
        border-radius: 20px;
    }

    .panel-title span {
        font-size: 16px;
    }

    .panel-body {
        font-size: 13px;
    }

    .winners-list {
        height: 300px;
    }

    .winner-icon {
        width: 45px;
        height: 45px;
    }

    .winner-icon svg {
        width: 25px;
        height: 25px;
    }

    .modal-inner {
        padding: 40px 30px 35px;
        border-radius: 25px;
    }

    .celebration-icon {
        width: 80px;
        height: 80px;
    }

    .celebration-icon svg {
        width: 48px;
        height: 48px;
    }

    .celebration-text {
        font-size: 28px;
    }

    .win-amount {
        font-size: 56px;
    }

    .close-button {
        padding: 18px 35px;
        font-size: 17px;
    }
}

@media (max-width: 360px) {
    .counter-number {
        font-size: 38px;
    }

    .slot-spin-button .button-text {
        font-size: 18px;
        letter-spacing: 0.22em;
    }

    .prizes-list {
        gap: 10px;
    }

    .prize-box {
        padding: 18px 10px;
    }

    .prize-symbol {
        width: 40px;
        height: 40px;
        margin: 0 auto 10px;
    }

    .prize-symbol svg {
        width: 22px;
        height: 22px;
    }

    .prize-text {
        font-size: 14px;
    }
}
