/* ========================================
   КОМПОНЕНТ: wheel
   Описание: Колесо фортуны с анимацией вращения
   ======================================== */

.wheel-container {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 100%;
    border-radius: 16px;
    padding: 0;
    background: transparent;
    position: relative;
    border: 1px solid rgba(212, 199, 196, 0.24);
    box-shadow: inset 0 1px 0 0 rgba(212, 199, 196, 0.32), inset 0 -1px 0 0 rgba(212, 199, 196, 0.16);
}

.wheel-main-wrap {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    gap: 0;
}

.wheel-left-panel {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 220px 0 0;
    flex: 1;
}

.level-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    width: 100%;
}

.level-panel-wrap {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    max-width: 250px;
}

.level-panel-header {
    display: flex;
    align-items: center;
    justify-content: center;
}

.level-panel-text {
    font-family: 'Gilroy', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.25;
    text-align: center;
    color: rgba(255, 255, 255, 0.64);
}

.level-panel-title {
    display: flex;
    align-items: center;
    justify-content: center;
}

.level-panel-title-text {
    font-family: 'Gilroy', sans-serif;
    font-weight: 500;
    font-size: 28px;
    line-height: 1.29;
    letter-spacing: -0.005em;
    text-align: center;
    color: #FFFFFF;
}

.level-tabs {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.level-tab {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(79, 64, 67, 1) 0%, rgba(90, 73, 76, 1) 100%);
    border: 1px solid rgba(212, 199, 196, 0.24);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.level-tab:hover {
    background: linear-gradient(180deg, rgba(90, 73, 76, 1) 0%, rgba(100, 83, 86, 1) 100%);
}

.level-tab-text {
    font-family: 'Gilroy', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.43;
    text-align: right;
    color: #FFFFFF;
}

.wheel-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 48px 0 0;
    position: relative;
    flex-shrink: 0;
    /* Ensure no appearance animations - wheel stays in place */
    animation: none !important;
    opacity: 1 !important;
    /* Allow transforms only for positioning, not for animations */
}

.wheel-illustration-wrap {
    position: relative;
    width: min(560px, 50vh);
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Ensure no appearance animations - wheel stays in place */
    animation: none !important;
    opacity: 1 !important;
    /* Allow transforms only for positioning, not for animations */
}

.wheel-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% * 4.28);
    height: calc(100% * 4.28);
    z-index: -1;
    pointer-events: none;
}

.wheel-bg-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.wheel-title {
    font-family: 'Gilroy', sans-serif;
    font-weight: 500;
    font-size: 28px;
    line-height: 1.29;
    letter-spacing: -0.005em;
    text-align: center;
    color: #FFFFFF;
    margin: 0;
}

.wheel-level-info {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.wheel-level-text {
    font-family: 'Gilroy', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.33;
    text-align: center;
    color: #FFFFFF;
}

.wheel-level-separator {
    width: 1px;
    height: 16px;
    flex-shrink: 0;
    display: block;
}

.wheel-level-multiplier {
    font-family: 'Gilroy', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.33;
    text-align: center;
    color: #F9B062;
    filter: drop-shadow(0px 0px 6.2px rgba(255, 209, 161, 0.55));
    position: relative;
}

.wheel-img {
    width: min(520px, calc(50vh * 0.9286));
    aspect-ratio: 1;
    display: block;
    object-fit: contain;
}

/* Wheel animation container */
.wheel-illustration-container {
    position: relative;
    width: min(560px, 50vh);
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    /* Ensure no appearance animations - wheel stays in place */
    animation: none !important;
    opacity: 1 !important;
    /* No transitions on the container itself */
    transition: none !important;
}

/* Title block positioning (outside wheel-illustration-wrap for better bg positioning) */
.wheel-title-block {
    position: relative;
    z-index: 10;
    margin-bottom: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

/* Wheel center area - contains all wheel elements */
.wheel-center-area {
    position: relative;
    width: min(560px, 50vh);
    aspect-ratio: 1;
    margin: 0 auto;
    /* Ensure no appearance animations - wheel stays in place */
    animation: none !important;
    opacity: 1 !important;
    /* No transitions on the container itself */
    transition: none !important;
}

/* Cursor indicator */
/* Size calculated as percentage of wheel-center-area (560px desktop) */
/* Desktop cursor: 80px, so 80px / 560px = 14.29% */
/* But relative to wheel size (520px): 80px / 520px = 15.38% */
/* Using wheel-center-area as reference: calc(100% * 0.1429) */
.wheel-cursor {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -25%) !important;
    width: calc(100% * 0.1429);
    height: calc(100% * 0.1429);
    z-index: 100;
    pointer-events: none;
    /* Ensure cursor never rotates */
    animation: none !important;
    transition: none !important;
}


/* Lights animation */
.lamps-wheel {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) !important;
    width: min(560px, 50vh);
    aspect-ratio: 1;
    z-index: 50;
    pointer-events: none;
    /* Only transition opacity for lights animation, not transform */
    transition: opacity 0.3s ease;
    /* Ensure lights never rotate */
    animation: none !important;
}

.lights {
    opacity: 0;
}

.lights-1.visible,
.lights-2.visible {
    opacity: 1;
}

/* Wheel wrapper - rotates */
.wheel-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(520px, calc(50vh * 0.9286));
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 40;
    transition: transform 6s cubic-bezier(0, 0, 0, 1);
    transform-origin: center center;
}

/* Wheel overlay - semi-transparent black filter */
.wheel-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(520px, calc(50vh * 0.9286));
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 42;
    pointer-events: none;
    /* Blur for smoother edges */
    filter: blur(15px);
    -webkit-filter: blur(15px);
    /* Initially hidden, will be shown via JavaScript */
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    /* Ensure overlay never rotates, but allow opacity transitions */
    animation: none !important;
    /* Create mask to cut out bright spot area - section below cursor */
    /* The bright spot area (at top, below cursor) will be transparent so wheel shows through brighter */
    /* Use a single mask with rectangular transparent area and very smooth blurred transition */
    /* Position: cursor is at top (0), bright spot should be below it - using percentage for responsiveness */
    mask: 
        radial-gradient(
            ellipse 23% 27% at 50% 14%,
            transparent 0%,
            transparent 25%,
            rgba(0, 0, 0, 0.05) 30%,
            rgba(0, 0, 0, 0.1) 35%,
            rgba(0, 0, 0, 0.2) 40%,
            rgba(0, 0, 0, 0.35) 45%,
            rgba(0, 0, 0, 0.5) 50%,
            rgba(0, 0, 0, 0.65) 55%,
            rgba(0, 0, 0, 0.75) 60%,
            rgba(0, 0, 0, 0.85) 65%,
            rgba(0, 0, 0, 0.92) 70%,
            rgba(0, 0, 0, 0.96) 75%,
            black 80%,
            black 100%
        );
    -webkit-mask: 
        radial-gradient(
            ellipse 23% 27% at 50% 14%,
            transparent 0%,
            transparent 25%,
            rgba(0, 0, 0, 0.05) 30%,
            rgba(0, 0, 0, 0.1) 35%,
            rgba(0, 0, 0, 0.2) 40%,
            rgba(0, 0, 0, 0.35) 45%,
            rgba(0, 0, 0, 0.5) 50%,
            rgba(0, 0, 0, 0.65) 55%,
            rgba(0, 0, 0, 0.75) 60%,
            rgba(0, 0, 0, 0.85) 65%,
            rgba(0, 0, 0, 0.92) 70%,
            rgba(0, 0, 0, 0.96) 75%,
            black 80%,
            black 100%
        );
}

/* Border wheel */
.border-wheel {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) !important;
    width: min(560px, 50vh);
    aspect-ratio: 1;
    z-index: 45;
    pointer-events: none;
    /* Ensure border never rotates */
    animation: none !important;
    transition: none !important;
}

/* Spin button */
/* Size calculated as percentage of wheel-center-area (560px desktop) */
/* Desktop button: 108px, so 108px / 560px = 19.29% */
/* But relative to wheel size (520px): 108px / 520px = 20.77% */
/* Using wheel-center-area as reference: calc(100% * 0.1929) */
.wheel-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) !important;
    width: calc(100% * 0.1929);
    height: calc(100% * 0.1929);
    border: none;
    background: transparent;
    cursor: pointer;
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: transform 0.2s ease;
    /* Ensure button never rotates */
    animation: none !important;
}

.wheel-button:hover {
    transform: translate(-50%, -50%) scale(1.05) !important;
}

.wheel-button:active {
    transform: translate(-50%, -50%) scale(0.95) !important;
}

.wheel-button-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.wheel-right-panel {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 220px 0 0;
    flex: 1;
}

.bet-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    width: 100%;
    padding: 0 64px;
}

.bet-panel-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    width: 100%;
    max-width: 475px;
}

.bet-panel-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: center;
}

.bet-panel-title {
    font-family: 'Gilroy', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.25;
    color: rgba(255, 255, 255, 0.64);
    margin: 0;
    text-align: center;
}

.bet-panel-description {
    font-family: 'Gilroy', sans-serif;
    font-weight: 500;
    font-size: 28px;
    line-height: 1.29;
    letter-spacing: -0.005em;
    color: #FFFFFF;
    margin: 0;
    text-align: center;
}

/* Button, Will be replaced with button from common components */
.bet-panel-button {
    width: max-content;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 12px;
    border: 1px solid;
    background: linear-gradient(180deg, rgba(23, 114, 242, 1) 0%, rgba(81, 149, 246, 1) 100%);
    border-color: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    font-family: 'Gilroy', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 16px 0px rgba(13, 104, 232, 0.24);
    text-align: center;
    text-decoration: none;
}

.bet-panel-button:hover {
    background: linear-gradient(180deg, rgba(81, 149, 246, 1) 0%, rgba(23, 114, 242, 1) 100%);
    box-shadow: 0px 4px 20px 0px rgba(13, 104, 232, 0.32);
}
/* End of button */

.latest-prizes {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    padding: 16px 24px 24px;
    width: 100%;
    align-self: stretch;
}

.latest-prizes-wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.latest-prizes-wrap::-webkit-scrollbar {
    display: none;
}

.latest-prizes-title {
    font-family: 'Gilroy', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.25;
    text-align: center;
    color: #FFFFFF;
    margin: 0;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.wheel-prize-wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
}

.wheel-prize {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    padding: 8px 12px;
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(56, 46, 48, 1) 0%, rgba(67, 55, 57, 1) 100%);
    border: 1px solid rgba(212, 199, 196, 0.14);
    box-shadow: inset 0 1px 0 0 rgba(212, 199, 196, 0.2), inset 0 -1px 0 0 rgba(212, 199, 196, 0.08);
    min-width: auto;
    height: auto;
    position: relative;
}

.wheel-prize-text {
    font-family: 'Gilroy', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.25;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    z-index: 1;
    white-space: nowrap;
}

.wheel-prize-type-1 .wheel-prize-text {
    background: linear-gradient(180deg, rgba(220, 245, 173, 1) 0%, rgba(220, 245, 173, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wheel-prize-type-2 .wheel-prize-text {
    background: linear-gradient(180deg, rgba(190, 227, 246, 1) 0%, rgba(190, 227, 246, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wheel-prize-type-3 .wheel-prize-text {
    background: linear-gradient(180deg, rgba(219, 183, 250, 1) 0%, rgba(219, 183, 250, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wheel-prize-type-4 .wheel-prize-text {
    background: linear-gradient(180deg, rgba(234, 150, 163, 1) 0%, rgba(234, 150, 163, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wheel-prize-type-accent {
    background: linear-gradient(180deg, rgba(250, 186, 117, 0.2) 0%, rgba(250, 186, 117, 0.28) 100%);
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
}

.wheel-prize-text-main {
    font-family: 'Gilroy', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.25;
    text-align: center;
    color: #F9B062;
    position: relative;
    z-index: 1;
    white-space: nowrap;
}

.wheel-prize-separator {
    width: 1px;
    height: 100%;
    min-height: 16px;
    background: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

.wheel-prize-text-sub {
    font-family: 'Gilroy', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.43;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    z-index: 1;
}

.wheel-prize-show-more {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(79, 64, 67, 1) 0%, rgba(90, 73, 76, 1) 100%);
    /*border: 1px solid rgba(212, 199, 196, 0.24);*/
    box-shadow: inset 0 1px 0 0 rgba(212, 199, 196, 0.32), inset 0 -1px 0 0 rgba(212, 199, 196, 0.16);
    color: #FFFFFF;
    font-family: 'Gilroy', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.71;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
}

.wheel-prize-show-more-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: block;
}

.wheel-prize-show-more:hover {
    background: linear-gradient(180deg, rgba(90, 73, 76, 1) 0%, rgba(100, 83, 86, 1) 100%);
    border-color: rgba(212, 199, 196, 0.4);
}

/* ========================================
   MEDIA QUERIES - Адаптивность (Desktop-first)
   ======================================== */

/* ≤1599 */
@media (max-width: 1599px) {
    .bet-panel {
        padding: 0 48px;
    }
}

/* ≤1479 */
@media (max-width: 1479px) {
    .wheel-main-wrap {
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
        gap: 20px;
        align-items: start;
        justify-items: start;
    }
    
    .wheel-left-panel {
        grid-column: 1;
        grid-row: 1;
        padding: 220px 0 0;
        width: 300px;
    }
    
    .wheel-right-panel {
        grid-column: 1;
        grid-row: 2;
        padding: 0;
        margin-top: 0;
        width: 300px;
    }
    
    .wheel-center {
        grid-column: 2;
        grid-row: 1 / 3;
        padding: 48px 0 0;
        align-self: start;
        justify-self: start;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .bet-panel {
        padding: 0 24px;
    }
}

/* ≤1439 */
@media (max-width: 1439px) {
    .wheel-main-wrap {
        gap: 20px;
    }
    
    .wheel-left-panel,
    .wheel-right-panel {
        padding: 80px 0 0;
    }
    
    .bet-panel {
        padding: 0 40px;
    }
    
    .wheel-illustration-wrap {
        width: 480px;
    }
    
    .wheel-illustration-container {
        width: 480px;
    }
    
    .wheel-img {
        width: 440px;
        height: 440px;
    }
    
    .wheel-center-area {
        width: 480px;
        height: 480px;
    }
    
    .lamps-wheel {
        width: 480px;
        height: 480px;
    }
    
    .border-wheel {
        width: 480px;
        height: 480px;
    }
    
    .wheel-wrapper {
        width: 440px;
        height: 440px;
    }
    
    .wheel-overlay {
        width: 440px;
        height: 440px;
    }
}

/* ≤1279 */
@media (max-width: 1279px) {
    .wheel-main-wrap {
        flex-wrap: wrap;
        gap: 24px;
    }
    
    .wheel-left-panel,
    .wheel-right-panel {
        flex: 1 1 100%;
        padding: 40px 0 0;
        max-width: 100%;
    }
    
    .wheel-center {
        width: 100%;
        padding: 20px 0;
        order: -1;
    }
    
    .bet-panel {
        padding: 0 40px;
    }
    
    .wheel-illustration-wrap {
        width: 100%;
        max-width: 480px;
    }
    
    .wheel-illustration-container {
        width: 100%;
        max-width: 480px;
    }
    
    .wheel-bg {
        width: calc(100% * 4.28);
        height: calc(100% * 4.28);
    }
}

/* ≤959 */
@media (max-width: 960px) {
    .wheel-container {
        border-radius: 12px;
    }
    
    .wheel-main-wrap {
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }
    
    .wheel-left-panel {
        order: 1;
        padding: 24px 0 0;
        flex: 0 0 auto;
        width: 100%;
    }
    
    .wheel-center {
        order: 2;
        padding: 10px;
        width: 100%;
        flex: 0 0 auto;
    }
    
    .wheel-right-panel {
        order: 3;
        padding: 0;
        flex: 0 0 auto;
        width: 100%;
    }
    
    .bet-panel {
        padding: 0 24px;
    }
    
    /* Hide level info in wheel-title-block at <= 960px */
    .wheel-level-info {
        display: none;
    }
    
    .wheel-illustration-wrap {
        width: 100%;
        aspect-ratio: 1;
    }
    
    .wheel-illustration-container {
        width: 100%;
        aspect-ratio: 1;
    }
    
    .wheel-img {
        width: 100%;
        height: auto;
        aspect-ratio: 1;
    }
    
    .wheel-center-area {
        width: 100%;
        aspect-ratio: 1;
    }
    
    .lamps-wheel {
        width: 100%;
        height: auto;
        aspect-ratio: 1;
    }
    
    .border-wheel {
        width: 100%;
        height: auto;
        aspect-ratio: 1;
    }
    
    .wheel-wrapper {
        width: 93%;
        aspect-ratio: 1;
    }
    
    .wheel-overlay {
        width: 100%;
        height: auto;
        aspect-ratio: 1;
    }
    
    /* Cursor and button sizes are now percentage-based, no need to override */
    
    .wheel-title {
        font-size: 24px;
    }
    
    .wheel-level-text,
    .wheel-level-multiplier {
        font-size: 20px;
    }
    
    .level-panel-title-text {
        font-size: 24px;
    }
    
    .bet-panel-description {
        font-size: 24px;
    }
}

/* ≤599 */
@media (max-width: 599px) {
    .wheel-container {
        border-radius: 8px;
    }
    
    .wheel-main-wrap {
        gap: 16px;
    }
    
    /* Hide wheel-title-block at <= 600px */
    .wheel-title-block {
        display: none;
    }
    
    .wheel-left-panel,
    .wheel-right-panel {
        padding: 20px 0 0;
    }
    
    .level-panel-wrap {
        gap: 16px;
    }
    
    .level-panel-header {
        margin-bottom: 0;
    }
    
    .level-panel-text {
        font-size: 14px;
    }
    
    .level-panel-title-text {
        font-size: 20px;
    }
    
    .level-tabs {
        gap: 6px;
    }
    
    .level-tab {
        padding: 6px 10px;
    }
    
    .level-tab-text {
        font-size: 12px;
    }
    
    .bet-panel {
        padding: 0 16px;
        gap: 16px;
    }
    
    .bet-panel-wrap {
        gap: 16px;
    }
    
    .bet-panel-header {
        gap: 8px;
    }
    
    .bet-panel-title {
        font-size: 14px;
    }
    
    .bet-panel-description {
        font-size: 20px;
    }
    
    .bet-panel-button {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .wheel-illustration-wrap {
        max-width: 100%;
        width: 100%;
        aspect-ratio: 1;
    }
    
    .wheel-illustration-container {
        width: 100%;
        aspect-ratio: 1;
    }
    
    .wheel-img {
        width: 100%;
        height: auto;
        aspect-ratio: 1;
    }
    
    .wheel-center-area {
        width: 100%;
        aspect-ratio: 1;
        height: auto;
    }
    
    .lamps-wheel {
        width: 100%;
        height: auto;
        aspect-ratio: 1;
    }
    
    .border-wheel {
        width: 100%;
        height: auto;
        aspect-ratio: 1;
    }
    
    .wheel-wrapper {
        width: 93%;
        aspect-ratio: 1;
    }
    
    .wheel-overlay {
        width: 100%;
        height: auto;
        aspect-ratio: 1;
        /* Adjust mask position for mobile - cursor is smaller, position accordingly */
        mask: 
            radial-gradient(
                ellipse 23% 27% at 50% 14%,
                transparent 0%,
                transparent 25%,
                rgba(0, 0, 0, 0.05) 30%,
                rgba(0, 0, 0, 0.1) 35%,
                rgba(0, 0, 0, 0.2) 40%,
                rgba(0, 0, 0, 0.35) 45%,
                rgba(0, 0, 0, 0.5) 50%,
                rgba(0, 0, 0, 0.65) 55%,
                rgba(0, 0, 0, 0.75) 60%,
                rgba(0, 0, 0, 0.85) 65%,
                rgba(0, 0, 0, 0.92) 70%,
                rgba(0, 0, 0, 0.96) 75%,
                black 80%,
                black 100%
            );
        -webkit-mask: 
            radial-gradient(
                ellipse 23% 27% at 50% 14%,
                transparent 0%,
                transparent 25%,
                rgba(0, 0, 0, 0.05) 30%,
                rgba(0, 0, 0, 0.1) 35%,
                rgba(0, 0, 0, 0.2) 40%,
                rgba(0, 0, 0, 0.35) 45%,
                rgba(0, 0, 0, 0.5) 50%,
                rgba(0, 0, 0, 0.65) 55%,
                rgba(0, 0, 0, 0.75) 60%,
                rgba(0, 0, 0, 0.85) 65%,
                rgba(0, 0, 0, 0.92) 70%,
                rgba(0, 0, 0, 0.96) 75%,
                black 80%,
                black 100%
            );
    }
    
    /* Cursor and button sizes are now percentage-based, no need to override */
    
    .wheel-title {
        font-size: 20px;
    }
    
    .wheel-level-text,
    .wheel-level-multiplier {
        font-size: 18px;
    }
    
    .wheel-level-info {
        gap: 12px;
    }
    
    .wheel-level-separator {
        height: 14px;
    }
    
    .latest-prizes {
        padding: 12px 16px 16px;
    }
    
    .latest-prizes-wrap {
        flex-direction: row;
        gap: 12px;
        position: relative;
        overflow-x: auto;
        overflow-y: hidden;
    }
    
    /* Create a header row container for title and button */
    .latest-prizes-title {
        font-size: 14px;
        flex: 1;
        margin: 0;
        text-align: left;
    }
    
    .wheel-prize-wrap {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 4px;
        min-width: max-content;
        width: auto;
        overflow: visible;
        position: relative;
        flex-shrink: 0;
    }

    .wheel-prize-show-more {
        font-size: 12px;
        border: none;
        border-radius: 10px;
        padding: 6px 12px;
    }

    .wheel-prize {
        padding: 6px 10px;
        transition: opacity 0.3s ease, transform 0.3s ease;
        flex-shrink: 0;
    }
    
    .wheel-prize-text,
    .wheel-prize-text-main {
        font-size: 14px;
    }
    
    .wheel-prize-text-sub {
        font-size: 12px;
    }
    
    .wheel-prize-show-more-icon {
        width: 16px;
        height: 16px;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        flex-shrink: 0;
    }
    
}
