  :root {
            --bg-color: #1a1a2e;
            --card-bg: rgba(75, 51, 141, 0.699);
            --accent-p1: #00b0d8;
            --accent-p2: #9d50bb;
            --text: #ffffff;
        }

        *, *::before, *::after {
            padding: 0;
            margin: 0;
            box-sizing: border-box;
        }

        body {
           height: 110vh;
            /* background: radial-gradient(circle at center, #24243e, #0f0c29); */
            color: var(--text);
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            display: flex;
            flex-direction: column;
            align-items: center;
            overflow-x: hidden;
            background-image: url(img/Dice-Wikimedia-Sankar-1995-2.jpg);
            background-size: cover;
            background-repeat: no-repeat;
        }

        /* --- Header / Edit Section --- */
        #edit {
            margin: 20px auto;
            padding: 15px;
            background: var(--card-bg);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(73, 36, 36, 0.1);
            border-radius: 15px;
            text-align: center;
            width: 280px;
            >h2{
                   font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 10px;
            color: #030101;
            }
        }


        .edit-btn {
            padding: 8px 20px;
            background: #4e4e4e;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: 0.3s;
            &:hover{
                background-color: #860404;
            }
        }

      
        /* --- Turn Info --- */
        ._pl {
            display: flex;
            align-items: center;
            background-color: #1a1a2e;
            width: 500px;
            justify-content: center;
            border-radius: 10px;
            height: 60px;
            font-size: 30px;
            font-weight: 400;
            color: var(--accent-p1);
            text-shadow: 0 0 10px rgba(0, 210, 255, 0.5);
        }

        /* --- Dice Section --- */
        .imgg {
            height: 180px;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 20px 0;
        }

        #myImage {
            width: 140px;
            height: 140px;
            display: none;
            filter: drop-shadow(0 0 15px rgba(255,255,255,0.2));
        }

        /* --- Player Rows --- */
        .row {
            display: flex;
            width: 100%;
            max-width: 800px;
            justify-content: space-around;
            align-items: center;
            margin-bottom: 40px;
        }

        .container {
            width: 40%;
            padding: 20px;
            text-align: center;
            border-radius: 20px;
            border: 2px solid transparent;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .container h2 {
            font-size: 28px;
            word-wrap: break-word;
        }

        /* --- Glowing Turn State --- */
        .glow {
            background: var(--card-bg);
            border-color: rgb(255, 255, 255);
            box-shadow: 0 0 30px rgba(0, 210, 255, 0.2);
            transform: scale(1.1);
        }

        .res {
            font-size: 50px;
            font-weight: bold;
            color: #555; /* Hidden text */ 
            /* no use of text but if u need it u can change the javascipt */
            opacity: 0.1;
        }

        /* --- Roll Button --- */
        .Bt {
            padding: 20px 60px;
            font-size: 24px;
            font-weight: bold;
            color: white;
            background: linear-gradient(45deg, var(--accent-p1), var(--accent-p2));
            border: none;
            border-radius: 50px;
            cursor: pointer;
            box-shadow: 0 10px 20px rgba(0,0,0,0.3);
            transition: 0.2s;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .Bt:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 25px rgba(0, 210, 255, 0.4);
        }

        .Bt:active {
            transform: translateY(2px);
        }

        /* --- Animations --- */
        .dice-roll-animation {
            animation: spin 0.5s ease-out;
        }

        @keyframes spin {
            0% { transform: rotate(0deg) scale(0.2); opacity: 0; }
            70% { transform: rotate(390deg) scale(1.2); }
            100% { transform: rotate(360deg) scale(1); opacity: 1; }
        }
         .footer {
        width: 100%;
        height: 350px;
        background-color: rgba(129, 82, 82, 0.527);
        display: flex;
        justify-content: flex-end;
        align-items: center;
        flex-direction: column;
        color: white;

        >.logo {
            width: 130px;
            height: 136px;
            transform-style: preserve-3d;


            >img {
                width: 100%;
                height: 100%;
                border-radius: 10px;
              
            }
        }

        >.link {
          
            width: 50%;
            display: flex;
            justify-content: center;

            >ul {
                display: flex;
                gap: 20px;

                >li {
                    display: flex;
                    align-items: center;
                    gap: 5px;
                    justify-content: center;
                    width: 100px;
                    /* border: 1px solid white; */

                    >a {
                        transition: 0.4s;
                        color: #ffffff;

                        /* font-size: 20px; */
                        &:hover {
                            font-size: 16px;
                            backdrop-filter: blur(10px);
                            fill: #9d50bb;
                            color: #30a3a3;
                            cursor: pointer;
                            scale: 1.2;
                        }
                    }
                }
            }
        }


    }