/* ---Wheel styles start ----------------------------------------------*/

.wheel-container {
    width: 100%;
    max-width: 227px;
    /* max-height: 600px; */
    /* min-width: 300px; */
    /* min-height: 300px; */
    /* height: 100%; */
    aspect-ratio: 1 / 1;
    position: relative;
    /* width: min(80vw, 80vh); */
    /* height: min(80vw, 80vh); */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    user-select: none;
}

.wheel {
    position: absolute;
    width: 100%;
    height: 100%;
    /* border: 3px solid #0a1b18; */
    /* border: 0.2em solid #0a1b18; */
    /* Relative border; scales with size */
    border-radius: 50%;
    transition: transform 5s ease-in-out;
    overflow: visible;
}

.wheel span {
    position: absolute;
    left: 50%;
    /* width: 2px; */
    width: 0.5%;
    /* Thin line, scales */
    height: 100%;
    transform-origin: left center;
    transform: rotate(calc(var(--deg) * var(--i)));
    background: #0cddb7;
    filter: brightness(0.5);
    z-index: 2;
}

.wheel-background {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    z-index: 0;
    transition: filter 0.5s ease-in-out;
}

.wheel .winning-overlay {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
    transition: background 0.5s ease-in-out;
}

.spinBtn {
    /* border: 3px solid #0a1b18; */
    border: 0 solid #0a1b18;
    /* Scales with container */
    position: absolute;
    /* inset: 140px; */
    inset: 35%;
    /* Centers button at ~35% from edges (adjust for your inner wheel size) */
    /* background: #39ffe2;
    color: #0a1b18; */
    background-image: url(/monthly-promos/2026/100k-diamond-summer-voyage/images/phase1/spinbtn.png);
    background-size: 103%;
    background-position: center center;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    cursor: pointer;
    user-select: none;
    text-transform: uppercase;
    font-size: 1.5em;
    /* Scales with container font-size */
    font-weight: 600;
    letter-spacing: 0.1em;
}

.spinBtn:hover {
    background-image: url(/monthly-promos/2026/100k-diamond-summer-voyage/images/phase1/spinbtn.png);
}

.locked-spin {
    filter: grayscale(100%);
    cursor: not-allowed;
}

.segment-text {
    margin: 0;
    font-size: 0.8em;
}

.segment-image {
    /* height: 15%; */
    height: 50%;
}

.segments {
    position: absolute;
    inset: 0;
    z-index: 3;
}

.segments div {
    position: absolute;
    /* inset: 10px; */
    /* inset: 2.5%; */
    inset: 0;
    /* Relative inset for padding around segments */
    transform: rotate(calc(var(--deg) * var(--i) + (var(--deg) / 2)));
    text-align: center;
    font-size: 2em;
    /* Scales with container */
    font-weight: 500;
}

.blur-element {
    filter: blur(2px) brightness(0.4);
    transition: filter 0.5s ease-in-out;
}

.inner {
    position: absolute;
    width: 65%;
    height: 65%;
    background: #0a1b18;
    border-radius: 50%;
    transition: transform 5s ease-in-out;
    overflow: visible;
    z-index: 5;
}

.inner span {
    position: absolute;
    left: 50%;
    width: 2px;
    height: 100%;
    transform-origin: left center;
    background: #1fc7a8;
    filter: brightness(0.5);
    z-index: 6;
}

.inner span.winning {
    background: linear-gradient(to bottom, #ffeb3b, #ffc107);
    transition: all 0.5s ease-in-out;
}

.gameWheelWrap {
    position: relative;
    display: flex;
    width: 100%;
    max-width: 500px;
    align-items: center;
    justify-content: center;
    padding: 5px;
    z-index: 2;
    margin: 70px auto 100px;
}

.gameWheelCover {
    position: absolute;
    left: 0;
    z-index: 10;
}

/* ---Wheel styles END ----------------------------------------------*/

.spinsInfo {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.spinsInfo div {
    display: flex;
    gap: 7px;
    background-color: #223c66;
    padding: 5px 10px;
    border-radius: 10px;
    margin-bottom: 10px;
    color: #e3eeff;
    font-size: 17px;
}

.spinsInfo span {
    color: #eeeeee;
}

@media (min-width:481px) {}

@media (min-width:768px) {
    
.wheel-container {
    max-width: 325px;
}

}

@media (min-width:1000px) {}

@media (min-width:1025px) {


}

@media (min-width:1441px) {}