 * {
            border: 0;
            padding: 0;
            margin: 0;
            outline: 0;
            box-sizing: border-box;
            font-family: Arial, sans-serif;
        }

        /* --- Disable Scroll & Text Selection --- */
        html,
        body {
            width: 100%;
            height: 100%;
            overflow: hidden;
            /* Disable scrolling */
            -webkit-user-select: none;
            /* Safari */
            -moz-user-select: none;
            /* Firefox */
            -ms-user-select: none;
            /* IE 10+ */
            user-select: none;
            /* Standard syntax */
        }


        body {
            background-image: url(https://i.ibb.co/PN5V5YS/Capture-2021-09-29-10-31-35-01.jpg);
            background-size: cover;
            background-repeat: repeat;
            background-attachment: fixed;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* --- START: Waiting Screen Styles --- */
        #waiting-screen {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(160deg, #2e2a62 0%, #1e1c3a 100%);
            z-index: 200;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
            transition: opacity 0.5s ease-out;
        }
        
        #waiting-screen.hidden {
            opacity: 0;
            pointer-events: none;
        }

        .waiting-box {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 25px;
            width: 100%;
            max-width: 340px;
            background: rgba(0,0,0,0.4);
            border: 1px solid rgba(255,255,255,0.3);
            border-radius: 16px;
            padding: 20px;
            backdrop-filter: blur(5px);
        }

        .timer-container {
            width: 100%;
            padding: 20px;
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            text-align: center;
        }
        
        .timer-display {
            font-size: 48px;
            font-weight: bold;
            color: #d1d1f7;
            margin-bottom: 15px;
        }

        .progress-bar-background {
            width: 100%;
            height: 8px;
            background-color: rgba(0, 0, 0, 0.3);
            border-radius: 4px;
            overflow: hidden;
        }
        
        .progress-bar-fill {
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, #8e44ad, #3498db);
            border-radius: 4px;
            transition: width 1s linear;
        }

        .waiting-text {
            color: #f0f0f0;
            font-size: 16px;
            font-weight: 500;
        }
        
        .player-status-container {
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .player-card {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 12px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .avatar-img {
          width: 42px;
          height: 42px;
          border-radius: 50%;
          object-fit: cover;
          flex-shrink: 0;
          border: 2px solid rgba(255,255,255,0.6);
          box-shadow: 0 2px 6px rgba(0,0,0,0.4);
        }

        .player-card .player-info {
            flex-grow: 1;
        }

        .player-card .player-name {
            color: #ffffff;
            font-weight: bold;
            font-size: 10px;
        }

        .player-card .player-status {
            font-size: 13px;
        }

        .player-card .player-status.ready {
            color: #2ecc71;
        }
        
        .player-card .player-status.waiting {
            color: #e67e22;
        }

        .status-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }

        .status-dot.ready-dot {
            background-color: #2ecc71;
            box-shadow: 0 0 10px #2ecc71;
        }

        .status-dot.waiting-dot {
            background-color: #e67e22;
            box-shadow: 0 0 10px #e67e22;
        }

        #ready-button {
            width: 100%;
            padding: 15px;
            font-size: 18px;
            font-weight: bold;
            color: white;
            background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
            border-radius: 12px;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        #ready-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
        }
        
        #ready-button:disabled {
            background: #555;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        /* --- END: Waiting Screen Styles --- */


        /* --- Main Game Container --- */
        .game-container {
            position: relative;
            width: 368px;
            height: 585px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
        }


        .game {
            display: flex;
            flex-wrap: wrap;
            position: relative;
            width: 368px;
            /* Fixed width */
            height: 368px;
            /* Fixed height */
            position: absolute;
            top: 108.5px;
            /* Centered vertically */
            left: 0;
        }


        .cells {
            position: absolute;
            width: 6.66%;
            height: 6.66%;
            border-collapse: collapse;
            border: 0.1px solid black;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: white;
        }

        .green {
            background-color: #01A147;
        }

        .red {
            background-color: #ec1d27;
        }

        .yellow {
            background-color: #ffe01b;
        }

        .blue {
            background-color: #29b6f6;
        }

        .house {
            display: inline-block;
            position: absolute;
            width: 40%;
            height: 40%;
            padding: 7%;
            border: 1px solid black;
        }


        .redhouse {
            animation: redready 0.5s ease-in-out infinite;
        }

        @keyframes redready {
            0% {
                background-color: #ec1d27;
            }

            50% {
                background-color: #810e13;
            }

            100% {
                background-color: #ec1d27;
            }
        }

        .yellowhouse {
            animation: yellowready 0.5s ease-in-out infinite;
        }

        @keyframes yellowready {
            0% {
                background-color: #ffe01b;
            }

            50% {
                background-color: #a9920e;
            }

            100% {
                background-color: #ffe01b;
            }
        }
        
        .box {
            position: relative;
            width: 100%;
            height: 100%;
            background-color: white;
            padding: 20%;
            border: 1px solid black;
        }

        .square {
            position: absolute;
            width: 25%;
            height: 25%;
            border-radius: 50%;
        }

        .square-one {
            top: 12%;
            left: 12%;
        }

        .square-two {
            top: 12%;
            right: 12%;
        }

        .square-three {
            bottom: 12%;
            left: 12%;
        }

        .square-four {
            bottom: 12%;
            right: 12%;
        }

        /* --- START: CORRECTED HOME AREA CSS --- */
        .home-area-container {
            position: absolute;
            top: 40%;
            left: 40%;
            width: 20%;
            height: 20%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: 1fr 1fr;
        }

        .home-triangle {
            width: 100%;
            height: 100%;
            position: relative;
        }

        .home-triangle.green {
            background-color: #66bb6a;
            clip-path: polygon(0 0, 100% 0, 0 100%);
        }
        .home-triangle.yellow {
            background-color: #fff176;
            clip-path: polygon(100% 0, 0 0, 100% 100%);
        }
        .home-triangle.red {
            background-color: #e53935;
            clip-path: polygon(0 100%, 100% 100%, 0 0);
        }
        .home-triangle.blue {
            background-color: #29b6f6;
            clip-path: polygon(100% 100%, 0 100%, 100% 0);
        }

        .home-piece-container {
            position: absolute;
            width: 75%;
            height: 75%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: 1fr 1fr;
            place-items: center;
        }

        .home-triangle.red .home-piece-container {
            bottom: -5%;
            left: -5%;
        }

        .home-triangle.yellow .home-piece-container {
            top: -5%;
            right: -5%;
        }
        /* --- END: CORRECTED HOME AREA CSS --- */
        
        /* --- Prize Area in the Center --- */
        #prize-area {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 5;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            pointer-events: none; /* Make it non-interactive */
        }

        #prize-area img {
            width: 35px;
            height: auto;
            margin-bottom: 4px;
        }

        #prize-area p {
            font-size: 11px;
            font-weight: bold;
            color: #000000;
            text-align: center;
            line-height: 1.1;
            text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.7);
        }

        .safe {
            background-image: url(https://i.ibb.co/cXmb7c1/star-safe.jpg);
            background-repeat: repeat;
            background-size: cover;
        }

        .g-start {
            background-color: #01A147;
        }

        .y-start {
            background-color: #ffe01b;
        }

        .r-start {
            background-color: #ec1d27;
        }

        .b-start {
            background-color: #29b6f6;
        }


        /* --- Ready Indicator Animation Logic --- */
        [id$="ready"] {
            opacity: 0;
            transition: opacity 0.2s;
            /* Smooth fade in/out */
        }

        .pieceready [id$="ready"] {
            opacity: 1;
            transform-box: fill-box;
            transform-origin: center;
            animation: vinay 0.2s linear infinite;
        }


        @keyframes vinay {
            from {
                transform: rotateZ(0deg);
            }

            to {
                transform: rotateZ(360deg);
            }
        }

        .rdicebox {
            height: 50px;
            width: 50px;
            position: relative;
            border: 0px solid white;
            transform-style: preserve-3d;
            cursor: pointer;
        }

        @keyframes tirugura {
            from {
                transform: rotateY(0deg);
            }

            to {
                transform: rotateY(1500deg);
            }
        }

        .card {
            height: 50px;
            width: 50px;
            text-align: center;
            padding: 0px 0px;
            border: 0.1px solid white;
            background: red;
            color: black;
            font-size: 32px;
            box-sizing: border-box;
            position: absolute;
            text-align: center;
            border-radius: 10%;
        }

        #left {
            right: 50%;
            transform: rotateY(90deg);
        }

        #right {
            left: 50%;
            transform: rotateY(90deg);
        }

        #top {
            bottom: 50%;
            transform: rotateX(90deg);
        }

        #bottom {
            top: 50%;
            transform: rotateX(90deg);
        }

        #front {
            transform: translateZ(25px);
        }

        #back {
            transform: translateZ(-25px);
        }

        #front .dot1 {
            height: 25%;
            width: 25%;
            border-radius: 50%;
            position: absolute;
            transform: translate(-50% -50%);
            left: 37.5%;
            top: 37.5%;
        }

        #right .dot1 {
            height: 20%;
            width: 20%;
            border-radius: 50%;
            position: absolute;
            transform: translate(-50% -50%);
            left: 10%;
            top: 10%;
        }

        #right .dot2 {
            height: 20%;
            width: 20%;
            border-radius: 50%;
            position: absolute;
            transform: translate(-50% -50%);
            left: 40%;
            top: 40%;
        }

        #right .dot3 {
            height: 20%;
            width: 20%;
            border-radius: 50%;
            position: absolute;
            transform: translate(-50% -50%);
            right: 10%;
            bottom: 10%;
        }

        #back .dot1 {
            height: 20%;
            width: 20%;
            border-radius: 50%;
            position: absolute;
            transform: translate(-50% -50%);
            top: 10%;
            right: 10%;
        }

        #back .dot2 {
            height: 20%;
            width: 20%;
            border-radius: 50%;
            position: absolute;
            transform: translate(-50% -50%);
            top: 10%;
            left: 10%;
        }

        #back .dot3 {
            height: 20%;
            width: 20%;
            border-radius: 50%;
            position: absolute;
            transform: translate(-50% -50%);
            top: 40%;
            left: 40%;
        }

        #back .dot4 {
            height: 20%;
            width: 20%;
            border-radius: 50%;
            position: absolute;
            transform: translate(-50% -50%);
            bottom: 10%;
            right: 10%;
        }

        #back .dot5 {
            height: 20%;
            width: 20%;
            border-radius: 50%;
            position: absolute;
            transform: translate(-50% -50%);
            bottom: 10%;
            left: 10%;
        }

        #left .dot1 {
            height: 20%;
            width: 20%;
            border-radius: 50%;
            position: absolute;
            transform: translate(-50% -50%);
            bottom: 15%;
            left: 15%;
        }

        #left .dot2 {
            height: 20%;
            width: 20%;
            border-radius: 50%;
            position: absolute;
            transform: translate(-50% -50%);
            top: 10%;
            right: 10%;
        }

        #bottom .dot1 {
            height: 20%;
            width: 20%;
            border-radius: 50%;
            position: absolute;
            transform: translate(-50% -50%);
            top: 10%;
            right: 15%;
        }

        #bottom .dot2 {
            height: 20%;
            width: 20%;
            border-radius: 50%;
            position: absolute;
            transform: translate(-50% -50%);
            top: 40%;
            right: 15%;
        }

        #bottom .dot3 {
            height: 20%;
            width: 20%;
            border-radius: 50%;
            position: absolute;
            transform: translate(-50% -50%);
            bottom: 10%;
            right: 15%;
        }

        #bottom .dot4 {
            height: 20%;
            width: 20%;
            border-radius: 50%;
            position: absolute;
            transform: translate(-50% -50%);
            top: 10%;
            left: 15%;
        }

        #bottom .dot5 {
            height: 20%;
            width: 20%;
            border-radius: 50%;
            position: absolute;
            transform: translate(-50% -50%);
            top: 40%;
            left: 15%;
        }

        #bottom .dot6 {
            height: 20%;
            width: 20%;
            border-radius: 50%;
            position: absolute;
            transform: translate(-50% -50%);
            bottom: 10%;
            left: 15%;
        }

        #top .dot1 {
            height: 20%;
            width: 20%;
            border-radius: 50%;
            position: absolute;
            transform: translate(-50% -50%);
            top: 15%;
            left: 15%;
        }

        #top .dot2 {
            height: 20%;
            width: 20%;
            border-radius: 50%;
            position: absolute;
            transform: translate(-50% -50%);
            top: 15%;
            right: 15%;
        }

        #top .dot3 {
            height: 20%;
            width: 20%;
            border-radius: 50%;
            position: absolute;
            transform: translate(-50% -50%);
            bottom: 15%;
            left: 15%;
        }

        #top .dot4 {
            height: 20%;
            width: 20%;
            border-radius: 50%;
            position: absolute;
            transform: translate(-50% -50%);
            bottom: 15%;
            right: 15%;
        }

        .dots {
            background-color: white;
        }

        .ydicebox {
            height: 50px;
            width: 50px;
            position: relative;
            border: 0px solid white;
            transform-style: preserve-3d;
            cursor: pointer;
        }

        @keyframes tirugur {
            from {
                transform: rotateY(0deg);
            }

            to {
                transform: rotateY(1500deg);
            }
        }

        .ycard {
            height: 50px;
            width: 50px;
            text-align: center;
            padding: 0px 0px;
            border: 0.1px solid black;
            background: yellow;
            color: black;
            font-size: 32px;
            box-sizing: border-box;
            position: absolute;
            text-align: center;
            border-radius: 10%;
        }

        #left1 {
            right: 50%;
            transform: rotateY(90deg);
        }

        #right1 {
            left: 50%;
            transform: rotateY(90deg);
        }

        #top1 {
            bottom: 50%;
            transform: rotateX(90deg);
        }

        #bottom1 {
            top: 50%;
            transform: rotateX(90deg);
        }

        #front1 {
            transform: translateZ(25px);
        }

        #back1 {
            transform: translateZ(-25px);
        }

        #front1 .dot1 {
            height: 25%;
            width: 25%;
            border-radius: 50%;
            position: absolute;
            transform: translate(-50% -50%);
            left: 37.5%;
            top: 37.5%;
        }

        #right1 .dot1 {
            height: 20%;
            width: 20%;
            border-radius: 50%;
            position: absolute;
            transform: translate(-50% -50%);
            left: 10%;
            top: 10%;
        }

        #right1 .dot2 {
            height: 20%;
            width: 20%;
            border-radius: 50%;
            position: absolute;
            transform: translate(-50% -50%);
            left: 40%;
            top: 40%;
        }

        #right1 .dot3 {
            height: 20%;
            width: 20%;
            border-radius: 50%;
            position: absolute;
            transform: translate(-50% -50%);
            right: 10%;
            bottom: 10%;
        }

        #back1 .dot1 {
            height: 20%;
            width: 20%;
            border-radius: 50%;
            position: absolute;
            transform: translate(-50% -50%);
            top: 10%;
            right: 10%;
        }

        #back1 .dot2 {
            height: 20%;
            width: 20%;
            border-radius: 50%;
            position: absolute;
            transform: translate(-50% -50%);
            top: 10%;
            left: 10%;
        }

        #back1 .dot3 {
            height: 20%;
            width: 20%;
            border-radius: 50%;
            position: absolute;
            transform: translate(-50% -50%);
            top: 40%;
            left: 40%;
        }

        #back1 .dot4 {
            height: 20%;
            width: 20%;
            border-radius: 50%;
            position: absolute;
            transform: translate(-50% -50%);
            bottom: 10%;
            right: 10%;
        }

        #back1 .dot5 {
            height: 20%;
            width: 20%;
            border-radius: 50%;
            position: absolute;
            transform: translate(-50% -50%);
            bottom: 10%;
            left: 10%;
        }

        #left1 .dot1 {
            height: 20%;
            width: 20%;
            border-radius: 50%;
            position: absolute;
            transform: translate(-50% -50%);
            bottom: 15%;
            left: 15%;
        }

        #left1 .dot2 {
            height: 20%;
            width: 20%;
            border-radius: 50%;
            position: absolute;
            transform: translate(-50% -50%);
            top: 10%;
            right: 10%;
        }

        #bottom1 .dot1 {
            height: 20%;
            width: 20%;
            border-radius: 50%;
            position: absolute;
            transform: translate(-50% -50%);
            top: 10%;
            right: 15%;
        }

        #bottom1 .dot2 {
            height: 20%;
            width: 20%;
            border-radius: 50%;
            position: absolute;
            transform: translate(-50% -50%);
            top: 40%;
            right: 15%;
        }

        #bottom1 .dot3 {
            height: 20%;
            width: 20%;
            border-radius: 50%;
            position: absolute;
            transform: translate(-50% -50%);
            bottom: 10%;
            right: 15%;
        }

        #bottom1 .dot4 {
            height: 20%;
            width: 20%;
            border-radius: 50%;
            position: absolute;
            transform: translate(-50% -50%);
            top: 10%;
            left: 15%;
        }

        #bottom1 .dot5 {
            height: 20%;
            width: 20%;
            border-radius: 50%;
            position: absolute;
            transform: translate(-50% -50%);
            top: 40%;
            left: 15%;
        }

        #bottom1 .dot6 {
            height: 20%;
            width: 20%;
            border-radius: 50%;
            position: absolute;
            transform: translate(-50% -50%);
            bottom: 10%;
            left: 15%;
        }

        #top1 .dot1 {
            height: 20%;
            width: 20%;
            border-radius: 50%;
            position: absolute;
            transform: translate(-50% -50%);
            top: 15%;
            left: 15%;
        }

        #top1 .dot2 {
            height: 20%;
            width: 20%;
            border-radius: 50%;
            position: absolute;
            transform: translate(-50% -50%);
            top: 15%;
            right: 15%;
        }

        #top1 .dot3 {
            height: 20%;
            width: 20%;
            border-radius: 50%;
            position: absolute;
            transform: translate(-50% -50%);
            bottom: 15%;
            left: 15%;
        }

        #top1 .dot4 {
            height: 20%;
            width: 20%;
            border-radius: 50%;
            position: absolute;
            transform: translate(-50% -50%);
            bottom: 15%;
            right: 15%;
        }

        .ydots {
            background-color: black;
        }

        span {
            display: none;
        }

        #finalnote {
            position: fixed;
            height: 100%;
            width: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            z-index: 20;
            top: 0;
            left: 0;
            display: none;
        }

        #finalnote p {
            position: absolute;
            transform: translate(-50%, -50%);
            top: 50%;
            left: 50%;
            font-weight: 500;
            font-size: 30px;
            color: white;
            text-align: center;
        }

        svg.redpiece,
        svg.yellowpiece {
            position: absolute;
            top: -20.6px;
            left: -11px;
            height: 44.16px;
            width: 44.16px;
            z-index: 10;
            transition: transform 0.1s ease-in-out, top 0.1s linear, left 0.1s linear;
            cursor: pointer;
        }

        #yellow1,
        #yellow2,
        #yellow3,
        #yellow4 {
            z-index: 5;
        }
        
       
        /* --- START: Player Box and Avatar Timer Styling --- */
        .player-box {
            position: absolute;
            display: flex;
            align-items: center;
            background-color: rgba(255, 255, 255, 0.85);
            padding: 6px 8px; /* padding কমানো */
            border-radius: 8px; /* হালকা ছোট rounded */
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4); /* shadow soft */
            transition: opacity 0.3s ease-in-out, transform 0.2s ease-in-out;
            width: 120px; /* width ছোট */
            transform: scale(0.9); /* সামান্য scale ছোট */
        }
        .red-player-box {
            bottom: 15px;
            left: 3px;
        }


        .player-box:hover {
            transform: scale(0.95); /* hover এ প্রিমিয়াম feel */
        }

        .player-image {
            width: 36px; /* avatar ছোট */
            height: 36px;
            border-radius: 50%;
        }

        .player-name {
            font-size: 10px; /* নাম ছোট */
            font-weight: 400;
        }

        .chance-dots .chance-dot {
            width: 6px;
            height: 6px;
        }


        .yellow-player-box {
            top: 15px;
            right: 3px;
        }
        
        .player-info {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
            margin-right: 10px;
        }
        
        .avatar-container {
            position: relative;
            width: 50px;
            height: 50px;
        }
        
        .player-image {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            border: 2px solid #333;
            background-color: #eee;
        }

        .timer-svg {
            position: absolute;
            top: -5px; /* Adjust to align stroke outside the image */
            left: -5px;
            width: 60px; /* Larger than container to make space for stroke */
            height: 60px;
            pointer-events: none;
            transform: rotate(-90deg); /* Start animation from the top center */
        }

        .timer-circle {
            fill: transparent;
            stroke-width: 4;
            stroke: transparent; /* Default state */
        }
        
        .timer-active .timer-circle {
             animation: 
                timer-drain 15s linear forwards,
                timer-color-change 15s linear forwards;
        }
        
        @keyframes timer-drain {
            from { stroke-dashoffset: 0; }
            to { stroke-dashoffset: var(--circumference); } /* Drains the circle */
        }

        @keyframes timer-color-change {
            0%   { stroke: #01A147; } /* Green */
            60%  { stroke: #ffe01b; } /* Yellow */
            90%  { stroke: #ec1d27; } /* Red */
            100% { stroke: #ec1d27; }
        }

        .player-name {
            font-weight: bold;
            color: #333;
            font-size: 10px;
            margin: 0;
        }

        .chance-dots {
            display: flex;
            gap: 5px;
        }

        .chance-dot {
            width: 10px;
            height: 10px;
            background-color: #01A147; /* Green */
            border-radius: 50%;
            border: 1px solid #333;
        }

        .chance-dot.lost {
            background-color: #ec1d27; /* Red */
        }
        /* --- END: Player Box and Avatar Timer Styling --- */


        /* --- Sound Control Button --- */
        #sound-control {
            position: absolute;
            top: 15px;
            left: 15px;
            width: 35px;
            height: 35px;
            cursor: pointer;
            z-index: 100;
            background-color: rgba(255, 255, 255, 0.7);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            border: 1px solid #333;
        }

        #sound-control svg {
            position: static;
            height: 20px;
            width: 20px;
        }

        #sound-off-icon {
            display: none;
        }
        
        /* --- Prize Area in the Center --- */
        #prize-area {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 5;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            pointer-events: none; /* Make it non-interactive */
        }

        #prize-area img {
            width: 15px;
            height: 20;
            margin-bottom: 1px;
        }

        #prize-area p {
            font-size: 15px;
            font-weight: bold;
            color: white;
            text-align: center;
            line-height: 1.1;
            padding: 4px 8px; /* ব্যাকগ্রাউন্ডের জন্য padding */
            background-color: rgba(0, 128, 0, 0.85); /* green bg */
            border-radius: 20px; /* circle type rounded */
            display: inline-block; /* যেনো শুধু টেক্সটের চারপাশে bg হয় */
            text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.7);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4); /* সামান্য shadow প্রিমিয়াম feel */
        }
        

        