.container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow-x: hidden;
}

.gameContainer {
    min-height: 100vh;
    margin: auto;
    padding: 10px 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    flex: 2;
    overflow-x: hidden;
}

.gameBoardBox {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 8px;
}

.gameBoardColumn {
    width: 100%;
    height: 100%;
    flex: 0.1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-radius: 8px;
}

.primeColumn {
    flex: 1.2;
}

.gameBoardRow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 100%;
    text-align: center;
}

.gameBoardBtn {
    margin: 0;
    padding: 0;
    font-size: 12px;
    padding: 6px 8px;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    border-radius: 8px;
    width: 100%;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    cursor: pointer;
    letter-spacing: 1px;
    user-select: none;
    position: relative;
}

.gameBoardBtn:hover {
    box-shadow: inset 0px 0px 5px rgba(255, 255, 255, 0.9);
    transform: scale(1.04);
}

.gameBoardBtn.active {
    border: 2px solid white;
    box-shadow: inset 0px 0px 8px white;
    outline: none;
}

.gameBoardBtn2 {
    margin: 0;
    padding: 0;
    font-size: 12px;
    padding: 6px 8px;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    border-radius: 8px;
    width: 100%;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    cursor: pointer;
    letter-spacing: 1px;
    user-select: none;
    position: relative;
}

.gameBoardBtn2:hover {
    box-shadow: inset 0px 0px 5px rgba(255, 255, 255, 0.9);
    transform: scale(1.04);
}

.gameBoardBtn2.active {
    border: 2px solid white;
    box-shadow: inset 0px 0px 8px white;
    outline: none;
}

.sideBtn {
    padding: 73px 2px !important;
    font-size: 20px;
    background: linear-gradient(40deg, rgba(0, 255, 60, 0.6), rgba(71, 244, 97, 0.3));
    border: 2px solid rgba(0, 255, 60, 0.6);
}

.red {
    background: linear-gradient(40deg, rgba(255, 0, 0, 0.8), rgba(255, 0, 0, 0.3));
    border: 2px solid rgba(255, 0, 0, 0.2);

}

.black {
    background: linear-gradient(50deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3));
    border: 2px solid rgba(0, 0, 0, 0.2);

}

.chipsBox {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 8px;
}

.chipsWrapper {
    flex: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* gap: 25px; */
    background: rgba(0, 0, 0, 1);
    border-radius: 50px;
    padding: 10px 12px;
    backdrop-filter: blur(10px);
    /* border: 2px solid rgba(255, 255, 255, 0.2); */
    background: linear-gradient(to bottom, rgb(70, 70, 70, 1), rgb(30, 30, 30, 1));
}

.chips {
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    width: 38px;
    height: 38px;
    position: relative;
    cursor: pointer;
    user-select: none;
    border: 5px dashed black;
    box-shadow: 0px 0px 8px rgb(0, 0, 0, 0.3);
}

.chips::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(50deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.8));
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 50%;
}

.chipText {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 11px;
    font-weight: 500;
    color: black;
}

.chipText::after {
    content: "$";
    font-size: 10px;
}

.chips:hover {
    transform: scale(1.05);
    box-shadow: 0px 0px 10px rgb(0, 0, 0);
    /* animation: flip-coin 0.4s ease-in-out; */
    transform: rotate(360deg) scale(1.15);
}

@keyframes flip-coin {
    0% {
        transform: scaleX(-1);
    }

    100% {
        transform: scaleX(1);
    }
}

.chip-2 {
    background: rgba(0, 255, 26, 0.8);
}

.chip-5 {
    background: rgba(200, 200, 0, 0.8);
}

.chip-10 {
    background: rgba(0, 89, 255, 0.8);
}

.chip-20 {
    background: rgba(255, 120, 0, 0.8);
}

.chip-50 {
    background: rgba(166, 0, 255, 0.8);
}

.chip-100 {
    background: rgba(255, 0, 0, 0.8);
}

.chip-selected {
    transform: scale(1.15);
    filter: drop-shadow(0px 0px 4px white);
    /* border: 5px dashed rgb(255,255,255,0.8); */
}



.chipsActionWrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 1);
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.chipsActionBtn {
    font-size: 13px;
    width: 50%;
    letter-spacing: 1px;
    padding: 17px 22px;
    text-align: center;
    user-select: none;
    cursor: pointer;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    /* border: 1px solid orange; */
    color: white;
    gap: 1px;
}

.chipsActionBtn:hover {
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.4));
}

#double-btn {
    border-radius: 50px 0px 0px 50px;
}

#clear-btn {
    border-radius: 0px 50px 50px 0px;
}

.chipsActionBtn i {
    font-size: 18px;
    color: orange;
}

.chatBtn {
    position: absolute;
    right: 0;
    bottom: 12px;
    background: rgb(104, 10, 163);
    padding: 5px 8px;
    border-radius: 10px 0px 0px 10px;
    cursor: pointer;
}

.chatBtn i {
    font-size: 22px;
}

#chat-btn {
    display: none;
}

#chat-btn:hover {
    padding-right: 11px;
}

#chat-btn-close:hover {
    transform: translateX(3px);
}

.chatContainer {
    min-height: 100vh;
    width: 330px;
    background: linear-gradient(45deg, rgba(10, 10, 15, 0.1), rgba(80, 30, 145, 0.2));
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    position: relative;
    background: rgb(15, 15, 15);
    animation: slide-left 0.5s ease-in-out;
}

.chatThread {
    min-height: 100vh;
    max-height: 100vh;
    overflow-y: scroll;
    padding: 20px 15px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    flex-direction: column;
    padding-bottom: 70px;
}

.chatItem {
    width: 100%;
    padding: 12px 10px;
    border-radius: 10px;
    background: linear-gradient(35deg, rgb(102, 20, 255, 0.2), rgba(20, 126, 255, 0.3));
    background: rgb(30, 30, 30);
    /* border: 1px solid rgb(102, 20, 255, 0.2); */
    border-bottom: 1px solid rgb(80, 80, 80);
    position: relative;
}

.chatItem i {
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 15px;
    background: crimson;
    border-radius: 50%;
    padding: 4px;
    color: white;
}

.chatItem h3 {
    font-size: 12px;
    margin-bottom: 5px;
    font-weight: 600;
    color: gray;
    background: rgb(10, 10, 10);
    padding: 3px 8px;
    border-radius: 10px;
    width: max-content;
}

.chatItem p {
    font-size: 13px;
    font-weight: 300;
    line-height: 18px;
    padding: 0px 6px;
}

.chatMessageBox {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 8px 10px;
    background: rgb(20, 20, 20);
    box-shadow: 0px -4px 5px rgb(40, 40, 40);
    width: 100%;
}

.chatMessageBox .chatMessageInner {
    display: flex;
    width: 100%;
    gap: 8px;
    align-items: center;
    justify-content: center;
    display: none;
}

#chat-close-btn-m {
    display: none;
}

.chatMessageConnect {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    width: 100%;
    gap: 8px;
    align-items: center;
    justify-content: center;
    padding: 8px 10px;
    background: rgb(30, 30, 30);
    font-size: 12px;
    text-transform: uppercase;
}

.messageInput {
    width: 100%;
    padding: 8px 12px;
    font-family: "Mukta";
    font-size: 13px;
    outline: none;
    border: none;
    background: rgb(40, 40, 40);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    color: rgb(230, 230, 230);
    border: 1px solid rgb(255, 255, 255, 0.2);
}

.messageSendBtn {
    font-size: 20px;
    padding: 7px 20px;
    color: white;
    cursor: pointer;
    border-radius: 10px;
    background: crimson;
}

.messageRoller {
    padding: 9px 20px;
    color: white;
    cursor: not-allowed;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(50, 50, 50);
    display: none;
}

.chat-roller {
    width: 20px;
    height: 20px;
    border: 3px solid white;
    border-bottom: 3px solid transparent;
    animation: roller 0.6s linear infinite;
    border-radius: 50%;
}

@keyframes roller {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.primeActionBox {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

.totalBetWrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
}

.totalBetAmount {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: black;
    border-radius: 50px;
}

.mobileBalance {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 50%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 14px;
    display: none;
}

#total-bet-icon {
    font-size: 20px;
    padding: 16px 20px 16px 20px;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    background: orange;
    color: black;
}

#total-bet-value {
    font-size: 20px;
    padding: 16px 5px;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    width: 100%;
    text-align: center;
    /* padding-left: 20px; */
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
    backdrop-filter: blur(10px);
}

.placeBetBtn {
    width: 100%;
    text-align: center;
    background: linear-gradient(to bottom, rgba(144, 0, 253, 0.7), rgb(110, 0, 193, 0.5));
    font-size: 15px;
    padding: 10px 3px;
    border-radius: 10px;
    user-select: none;
    cursor: pointer;
    color: white;
    font-family: "Mukta";
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    display: none;
}


.betClosedBtn {
    width: 100%;
    text-align: center;
    background: rgb(40, 40, 40);
    font-size: 15px;
    padding: 10px 3px;
    border-radius: 10px;
    user-select: none;
    color: rgb(180, 180, 180);
    font-family: "Mukta";
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: not-allowed;
    display: none;
}

.betRollerdBtn {
    width: 100%;
    background: rgb(43, 0, 77);
    padding: 10px 3px;
    border-radius: 10px;
    cursor: not-allowed;
    color: rgb(180, 180, 180);
    font-family: "Mukta";
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}

.betRollerdBtn #bet-roller {
    width: 23px;
    height: 23px;
    border-radius: 50%;
    border: 3px solid white;
    border-bottom: 3px solid black;
    animation: roller 0.6s linear infinite;
}

#wallet-bet-btn {
    display: block;
}

@keyframes roller {
    0% {
        transform: rotate(-360deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.gameStatBox {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 30px;
}

.lastSpinWrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
}

.lastSpinWrapper p {
    margin-top: 5px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
}

.lastSpinWrapper p i {
    color: orange;
}

.lastSpinList {
    gap: 10px;
    list-style: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    background: linear-gradient(to top, black, rgb(50, 50, 50));
    border-radius: 50%;
    border: 4px dashed orange;
    box-shadow: inset 0px 0px 10px orange;
}

.lastSpinItem {
    color: orange;
    font-weight: 600;
    font-size: 25px;
    z-index: 9;
}

#castle {
    width: 85px;
    filter: drop-shadow(0px 2px 3px orange);
    animation: glower 1.7s linear infinite;
}

@keyframes glower {
    0% {
        filter: drop-shadow(0px 2px 1px orange);
    }

    50% {
        filter: drop-shadow(0px 2px 8px orange);
    }

    100% {
        filter: drop-shadow(0px 2px 1px orange);
    }
}

.roundWrapper {
    background: linear-gradient(to top, black, rgb(50, 50, 50));
    border-radius: 50%;
    border: 4px dashed orange;
    margin-bottom: 30px;
    width: 140px;
    height: 140px;
    position: relative;
    box-shadow: inset 0px 0px 10px orange;
}

.inviteRound {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 13px;
    text-align: center;
    width: 100%;
}

.inviteRound p {
    margin-bottom: 4px;
}

.inviteBtn {
    margin: auto;
    width: 75%;
    font-size: 10px;
    padding: 5px 5px;
    border-radius: 5px;
    font-weight: 500;
    background: orange;
    color: black;
    cursor: pointer;
}

.timerRound {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
}

.roundText {
    font-size: 20px;
    color: rgb(255, 255, 255);
}

.timerText {
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 1px;
    /* background: gray; */
    color: rgb(190, 190, 190);

}

.timerTime {
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 2px;
    color: orange;
}

.spinner {
    position: absolute;
    border: 240px dashed rgba(0, 0, 0, 1);
    width: 870px;
    height: 870px;
    background: rgba(255, 255, 255, 8);
    border-radius: 50%;
    top: -72%;
    box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.8);
}

#spinner {
    position: absolute;
    width: 960px;
    height: 960px;
    border-radius: 50%;
    top: -580px;
    animation: rotor 30s linear infinite;
    filter: drop-shadow(0px 0px 18px black);
}

.spin {
    animation: rotor 1s linear infinite;
}

@keyframes rotor {
    0% {
        transform: rotate(-360deg);
    }

    100% {
        transform: rotate(0deg);
    }
}



.topMenu {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(23, 10, 42, 0.95);
    background: rgb(15, 15, 15);
    backdrop-filter: blur(10px);
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
}

.topMenuLogo {
    height: 28px;
}

.topMenuRight {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.balanceBox {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 13px;
    background: rgb(30, 30, 30);
    border: 1px solid rgb(50, 50, 50);
    padding: 3px 3px;
    border-radius: 10px;
    color: gray;
}

.balanceBox i {
    font-size: 22px;
    color: rgb(100, 100, 100);
}

.balanceBoxItem {
    color: rgb(150, 150, 150);
}

.balanceBoxItem span {
    color: orange;
    font-weight: 600;
}

#balance-bnb,
#balance-usd {
    background: rgb(15, 15, 15);
    padding: 4px 10px;
    border-radius: 8px;
}

.connectWalletBtn {
    font-size: 14px;
    padding: 5px 20px;
    border-radius: 8px;
    color: black;
    border: 2px solid rgb(173, 113, 0);
    background: orange;
    cursor: pointer;
    text-align: center;
    font-weight: 500;
    box-shadow: 0px 2px 5px black;
}

.connectWalletBtn:hover {
    border: 2px solid rgb(178, 117, 3);
    color: rgb(50, 50, 50);
}

.allGamesBtn {
    font-weight: 500;
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 8px;
    color: white;
    border: 2px solid crimson;
    background: linear-gradient(to bottom, crimson, red);
    cursor: pointer;
    text-align: center;
    box-shadow: 0px 2px 5px black;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.allGamesBtn i {
    font-size: 16px;
}

.allGamesBtn:hover {
    border: 2px solid red;
}


.roulettePin {
    position: absolute;
    z-index: 10;
    width: 50px;
    top: 25px;
    filter: drop-shadow(0px 1px 3px white);
}

.spinnerTextLeft,
.spinnerTextRight {
    position: absolute;
    top: 40px;
    z-index: 8;
    font-size: 14px;
    font-weight: 600;
    background: rgb(20, 20, 20);
    padding: 4px 10px;
    padding-top: 20px;
    border-radius: 0px 0px 10px 10px;
    width: 130px;
    text-align: center;
}

.spinnerTextLeft {
    left: 32%;
}

.spinnerTextRight {
    right: 32%;
}


.globalMessages {
    position: absolute;
    bottom: 330px;
    padding: 8px 20px;
    border-radius: 10px;
    font-size: 15px;
    z-index: 9999999;
    left: 50%;
    transform: translateX(-50%);
    animation: msg-pop 0.2s ease-in-out;
    display: none;
    text-align: center;
}

.error {
    background: rgb(200, 2, 38);
    border: 2px solid black;
    color: white;
    box-shadow: 0px 0px 20px black;
}

.info {
    background: orange;
    border: 2px solid black;
    color: black;
    box-shadow: 0px 0px 20px black;
}

@keyframes msg-pop {
    0% {
        transform: translateY(50px) translateX(-50%);
        opacity: 0;
    }

    100% {
        transform: translateY(0px) translateX(-50%);
        opacity: 1;
    }
}


@media (max-width: 1300px) {
    .chatContainer {
        position: fixed;
        right: 0;
        top: 0;
        z-index: 9999;
        min-height: auto;
        height: 100vh;
        width: 330px;
        display: none;
    }

    #chat-btn-close {
        display: none;
    }

    #chat-btn {
        display: block;
        top: 25%;
        bottom: auto;
        position: fixed;
    }

    .chatMessageBox {
        position: absolute;
        padding-bottom: 40px;
        bottom: 0;
        right: 0;
    }

    .chatMessageConnect {
        position: absolute;
        bottom: 80px;
        right: 0;
    }

    .chatThread {
        padding-bottom: 150px;
        width: 100%;
    }

    #chat-close-btn-m {
        display: block;
    }

}

/* media query for 1280x720 */
@media (max-width: 1280px) {
    #spinner {
        width: 940px;
        height: 940px;
        top: -600px;
    }
}

@media (max-width: 1024px) {
    .gameContainer {
        padding: 10px 50px;
    }

    #spinner {
        width: 500px;
        height: 500px;
        top: -320px;
    }

    .roulettePin {
        width: 20px;
        top: 40px;
    }

    .roundWrapper {
        border: 2px dashed orange;
        margin-bottom: 30px;
        width: 120px;
        height: 120px;
        box-shadow: inset 0px 0px 10px orange;
    }

    .inviteRound p {
        font-size: 10px;
    }

    .inviteBtn {
        font-size: 8px;
    }

    .timerText {
        font-size: 10px;
    }

    .timerTime {
        font-size: 15px;
    }

}

@media (max-width: 800px) {
    #spinner {
        width: 700px;
        height: 700px;
        top: -380px;
    }
}

@media (max-width: 720px) {

    .allGamesBtn,
    .balanceBox {
        display: none;
    }

    .mobileBalance {
        display: flex;
    }

    .gameContainer {
        padding: 20px 14px;
        height: 96vh;
    }

    .container {
        min-height: 96vh;
    }

    #spinner {
        width: 90vw;
        height: 90vw;
        top: -50vw;
    }

    .spinnerTextLeft {
        left: 20px;
    }

    .spinnerTextRight {
        right: 20px;
    }

    .roulettePin {
        width: 5vw;
    }

    .chipsBox {
        flex-direction: column;
        gap: 5px;
    }

    .chipsWrapper {
        width: 100%;
    }

    .chipsActionWrapper {
        width: 100%;
    }

    .totalBetAmount {
        width: 100%;
    }

    .totalBetWrapper {
        width: 100%;
        gap: 5px;
    }


    .gameBoardBtn {
        font-size: 7px;
        padding: 6px 5px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 4px;
    }


    .gameBoardBtn2 {
        font-size: 7px;
        padding: 6px 8px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 4px;
    }

    .sideBtn {
        padding: 66px 5px !important;
        font-size: 7px;
        border: 1px solid rgba(0, 255, 60, 0.6);
    }


    .gameBoardBtn.active {
        border: 1px solid white;
        box-shadow: inset 0px 0px 5px white;
        outline: none;
    }

    .gameBoardBtn2.active {
        border: 1px solid white;
        box-shadow: inset 0px 0px 5px white;
        outline: none;
    }

    .gameBoardBtn:hover {
        box-shadow: inset 0px 0px 0px transparent;
        transform: scale(1);
    }

    .gameBoardBtn2:hover {
        box-shadow: inset 0px 0px 0px transparent;
        transform: scale(1);
    }


}

@media (max-width: 500px) {
    .gameContainer {
        padding-bottom: 90px;
    }

    #spinner {
        width: 150vw;
        height: 150vw;
        top: -86vw;
    }

    .roulettePin {
        width: 7vw;
        top: 30px;
    }

    .roundWrapper {
        width: 100px;
        height: 100px;
        margin-bottom: 15px;
    }

    .inviteBtn {
        padding: 4px 2px;
    }

    .lastSpinList {
        width: 45px;
        height: 45px;
    }

    .lastSpinItem {
        font-size: 18px;
    }

    .chipsActionBtn {
        padding: 4px 22px;
    }

    .chips {
        width: 34px;
        height: 34px;
    }

    .chipText {
        font-size: 9px;
    }

    .chipText::after {
        font-size: 9px;
    }

    .totalBetAmount {
        flex-direction: row-reverse;
    }

    #total-bet-icon {
        font-size: 14px;
        padding: 10px 20px 10px 20px;
    }

    #total-bet-value {
        font-size: 14px;
        padding: 10px 5px;
    }

    #total-bet-icon {
        border-radius: 0px;
        border-top-right-radius: 50px;
        border-bottom-right-radius: 50px;
        background: orange;
        color: black;
    }

    #total-bet-value {
        border-radius: 0px;
        border-top-left-radius: 50px;
        border-bottom-left-radius: 50px;
    }

    .chipsWrapper {
        padding: 5px 10px;
    }
}