    * {
        box-sizing: border-box;
        }

        body {
            font-family: Arial, sans-serif;
            margin: auto;
            max-width: 500px;
            /*background-color: #e9e9e9;*/
        }
        a{
            text-decoration: none;
        }
        #mypage{
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            font-weight: 600;
             text-align:center;
              font-size: 22px;
        }

        .material {
            color: blue;
            cursor: pointer;
        }

        #loading-spinner {
            display: none;
            font-size: 24px;
            color: #007bff; 
        }

        #changePinForm .form-group {
                margin-bottom: 20px;
        }

            .error-message {
                color: red;
            }
        @media screen and (max-width: 500px){
                #loading-container {
                    top: 30%;
                    left: 26%;
            }
            }
        @media screen and (min-width: 501px){
                #loading-container {
                    top: 30%;
                    left: 40%;
            }
            }

        #loading-container {
            display: flex;
            align-items: center;
            justify-content: center;
            position: fixed;
            margin: 0;
        /* width: 100%;
            height: 100%;
            background-color: rgba(255, 255, 255, 0.8); background color and opacity */
            z-index: 9999;
        }

        #loading-container img {
            width: 200px;
            height: 200px;
            display: block;
            margin:0 auto;
            animation: bounce 1s infinite;
        }
        
        @keyframes bounce {
            0%,100% {
                transform: translateY(0);
            
            }
            50% {
                transform: translateY(-40px);
            }
        }

        .top-container {
            background-image: url('images/home12.png');
            background-size: cover;
            background-position: center;
            color: #f5f5f5;
            font-weight: 500;
            font-family: 'poppins' 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif
            /*padding: 20px;*/
        }
        .top-table {
            background-image: url('images/teambg.png');
            background-size: cover;
            background-position: center;
            color: #c7c7c7;
        }
        .vip {
            font-size: 18px; 
            font-weight: bold;
            color: #ccc;
            padding: 10px 10px;
        }

        #copy{
        color: red;
        cursor: pointer;
        }

        #xrot{
            margin-top: 40px;
            transform: rotate(270deg);
            font-weight: 700;
            padding: 5px;
        }

        .balance{
            margin-top: 20px;
            margin-left: 10px;
        }

        .amount{
            margin-left: 10px;
            font-size: 18px;
            font-weight: 600;
            color: #2ecc71;
        }

        .balance, .trade, .tradevolume {
            font-family: 'Martian Mono', sans-serif;
            font-size: 18px;
            color: #fff;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .tradeamount, .volumeamount {
            font-size: 16px;
            color: #f9f9f9;
            font-weight: 600;
        }
        .topinfo{
            display: flex;
            justify-content: space-between;
        }

        .trading-data {
            display: flex;
            margin-top: 20px;
            margin-bottom: 20px;

        }
        .trade-container, .tradevolume-container {
            color: #fff;
            margin-right: 30px;
            margin-bottom: 30px;
            margin-left: 10px;
        }

        .tool-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            padding: 10px;
            background: linear-gradient(to bottom, skyblue, #000000);
        }

        .tool {
            text-align: center;
            width: calc(33.33% - 20px);
            border: 1px solid #ccc;
            padding: 10px;
            margin: 10px;
            border-radius: 8px;
        }

        .tool a {
            font-family: 'Source Code Pro', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            font-size: 13px;
            text-decoration: none;
            font-weight: 600;
            color: #f5f5f5;
            /*word-break: break-all;*/
        }

        .tool-container .material-icons {
            font-size: 36px;
            margin-bottom: 10px;
        }

        .button-container {
            display: flex;
            justify-content: space-around;
            padding: 10px;
            border-radius: 10px;
            margin-top: 10px;
        }

        .button {
            text-align: center;
            width: 48%;
            padding: 10px;
            border: none;
            border-radius: 4px;
            color: #fff;
            font-size: 16px;
            cursor: pointer;
            font-weight: 600;
        }

        .button.deposit {
            background-color: #1391b7;
        }

        .button.withdrawal {
            color: #0c1557;
        }

        .password-container {
            position: relative;
        }

        .password-toggle {
            position: absolute;
            right: 10px;
            top: 70%;
            transform: translateY(-50%);
            cursor: pointer;
        }

        .loading-message {
        margin-top: 10px;
        font-size: 16px;
        color: #333;
        }

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

    #cardNumber {
            letter-spacing: 0.5ch;
        }

        .overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        color: #000;
        background: rgba(255, 255, 255, 0.9); /* Semi-transparent white background */
        z-index: 1000;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    select {
        width: calc(100% - 20px);
        padding: 10px;
        box-sizing: border-box;
        border: 1px solid #ccc;
        border-radius: 5px;
        margin-top: 5px;
        }

    .country-options {
        display: none;
        }

    .inline-form-group {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        }

    .form-group.inline-input {
        width: calc(40% - 5px);
        margin-bottom: 10px;
    }

    .input-container {
        position: relative;
    }

    .input-container input {
        width: calc(100% - 20px);
        padding: 10px;
        box-sizing: border-box;
        border: 1px solid #ccc;
        border-radius: 5px;
        margin-top: 5px;
        text-align: right;
    }

    .input-container small {
        position: absolute;
        bottom: -20px;
        left: 0;
        font-size: 12px;
        color: red;
    }

    .payment-options {
            display: flex;
            justify-content: space-around;
            margin-bottom: 20px;
        }

        .payment-option {
            cursor: pointer;
            border: 1px solid #ccc;
            padding: 10px;
            text-align: center;
            margin: 0 5px;
            color: #fff;
            background-color: #030931;
            transition: background-color 0.3s ease;
            border-radius: 5px;
            font-weight: 600;
        }

        .payment-option:hover {
            background-color: #e0e0e0;
        }

        label {
            display: block;
            font-weight: bold;
            margin-bottom: 5px;
        }
        .sliphead {
        justify-content: space-around;
        display: flex;
        margin-bottom: 5px;
        margin-top: 10px;
        background: #7a5332;
        border-radius: 10px;
        padding:10px;
        }
        .out{
            font-weight: 600;
            color: #000;
            font-size: 19px;
            letter-spacing: 0.5ch;
            }
        .out span{
            padding-bottom: 15px;
            color: #b4c7b4;
            font-size: 16px;
            letter-spacing: 0.1ch;
            }
        .betdetails{
            margin-top: -8px;
            text-align: center;
            border-radius: 8px;
            padding: 15px;
        }
        .slipgame{
            padding: 10px;
        }
        .slipscore{
            font-weight: 400;
            font-size: 18px;
        }
        #stake{
            background: #122322;
            font-weight: 400;
            font-size: 17px;
            color: #f9f9f9;
        }

        .trxid {
            display: flex;
            justify-content: space-between;
            margin-top: 10px;
        }
        .txn {
            text-align: right;
            font-weight: 600;
        }

.header {
    background-color: #333;
    padding: 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section {
    color: white;
    padding: 10px;
    border-radius: 5px;
}

.section.country-section {
    flex: 0 0 120px; /* Adjust the width as needed */
    text-align: right;
    font-size: 15px;
}

select {
    padding: 5px;
}
select[name="country"] option {
    margin-bottom: 10px;
}

    #banner-container {
            height: 120px;
            background: linear-gradient(45deg, #3498db, #2ecc71);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        #confetti,#confettin {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        #betting-icon {
            height: 40px;
            width: 40px;
            background-color: #f39c12;
            border-radius: 50%;
            margin-right: 10px;
            animation: pulseAnimation 2s infinite alternate; /* Pulsating effect on the icon */
        }

        #message-container {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            max-width: 400px;
            text-align: left;
            padding: 10px;
        }

        .winning-message {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 5px;
        }

        .betting-message {
            font-size: 16px;
        }

        @keyframes pulseAnimation {
            to {
                transform: scale(1.3);
            }
        }
    .interactive-section {
      height: 400px;
      background-color: #f0f0f0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    #toggleExplanation {
      cursor: pointer;
      color: #0066cc;
      text-decoration: underline;
      margin-top: 10px;
    }

    #explanationText {
      display: none;
      margin-top: 20px;
    }