        @import url("https://warnersallman.com/1280/363-nba-2k25-nba-video-game-2025-games.jpg");

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Kumbh Sans", sans-serif;
        }

        .logo {
            width: 80px;
            display: flex;
            align-items: center;
        }

        .logo span {
            font-weight: 900;
            margin-right: 18px;
            font-size: 25px;
        }

        nav {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background-color: #dee1e3;
            border: solid #c7cbce;
            border-width: 0 0 1px;
            padding: 0 40px;
        }

        nav ul {
            list-style: none;
            display: flex;
        }

        body {
            background-color: #f0f2f5;
            color: #333;
        }

        img {
            width: 100%;
        }

        ul li {
            margin-left: 30px;
            color: #393b3d;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        ul li:hover {
            color: #F05A22; /* NBA 2K orange */
        }

        .middle {
            width: 70%;
            margin: 10px auto;
            height: 135px;
            background-image: linear-gradient(0deg,
                    rgba(39, 39, 46, 0.7),
                    rgba(39, 39, 46, 0.7)),
                url('https://warnersallman.com/1280/363-nba-2k25-nba-video-game-2025-games.jpg');
            background-position: center;
            background-size: cover;
            margin-bottom: 24px;
            color: #fff;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            text-align: center;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }

        .middle h2 {
            margin-bottom: 10px;
            font-size: 35px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .middle p {
            font-size: 17px;
            max-width: 80%;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        }

        body .para {
            font-size: 10px;
            font-weight: 500;
            margin-top: 50px;
            color: #606162;
            text-align: center;
            width: 100%;
            margin: 50px auto;
        }

        .box_con {
            margin: 0 auto;
            background-color: #fff;
            min-height: 163px;
            width: 70%;
            font-size: 20px;
            padding: 20px;
            border: 1px solid #ddd;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        input {
            padding: 11px 15px;
            border: none;
            background: #f2f4f5;
            border-radius: 9px;
            outline: none;
            font-size: 17px;
            width: 100%;
            max-width: 400px;
            border: 1px solid #ddd;
        }

        button {
            background: linear-gradient(135deg, #F05A22 0%, #17468F 100%); /* NBA 2K orange to blue */
            outline: none;
            border: none;
            color: #fff;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 900;
            letter-spacing: 1px;
            font-size: 19px;
            cursor: pointer;
            margin-top: 30px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(240, 90, 34, 0.3);
        }

        button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(240, 90, 34, 0.4);
        }

        .box2 {
            display: none;
            text-align: center;
        }

        .box3 {
            display: none;
        }

        .box4 {
            display: none;
            text-align: center;
        }

        .container {
            display: flex;
            flex-direction: column;
            background-color: #ffffff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .row {
            display: flex;
            align-items: center;
            height: 70px;
            justify-content: space-around;
            transition: all 0.3s ease;
        }

        .row:not(.row:last-child) {
            border-bottom: 1px solid #eee;
        }

        .row:hover {
            background-color: #f9f9f9;
        }

        .price {
            font-size: 20px;
            font-weight: 700;
            color: #F05A22; /* NBA 2K orange */
        }

        .robux_total {
            display: flex;
            align-items: center;
        }

        .details:hover {
            background-color: #F05A22; /* NBA 2K orange */
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(240, 90, 34, 0.2);
        }

        .details:hover span {
            color: white;
        }

        .pic {
            width: 30px;
            margin-right: 10px;
            pointer-events: none;
            margin-top: 2px;
        }

        span {
            font-size: 20px;
            font-weight: 800;
            color: rgba(0, 0, 0, 0.6);
            transition: all 0.3s ease;
        }

        img {
            width: 100%;
        }

        h3 {
            font-size: 32px;
            margin-bottom: 21px;
            color: #F05A22; /* NBA 2K orange */
        }

        .details {
            border: 1px solid #17468F; /* NBA 2K blue */
            border-radius: 8px;
            padding: 8px 16px;
            width: 180px;
            display: flex;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
        }

        /* New Animated Coin Styles */
        .gem-loading {
            width: 80px;
            height: 80px;
            margin: 20px auto;
            position: relative;
            animation: pulse 1.5s infinite ease-in-out;
        }

        .gem-loading img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
                opacity: 1;
            }
            50% {
                transform: scale(1.1);
                opacity: 0.8;
            }
            100% {
                transform: scale(1);
                opacity: 1;
            }
        }

        .useroutput {
            text-align: center;
            margin-top: 20px;
            font-size: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .useroutput img {
            width: 20px;
            height: 20px;
            margin: 0 8px;
            animation: spin 2s infinite linear;
        }

        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }

        /* Video Embed Styles */
        .video-container {
            height: 533.33px;
            width: 300.00px;
            position: relative;
            margin: 20px auto;
        }

        .video-container iframe {
            border: 0;
            height: 100%;
            left: 0;
            overflow: hidden;
            position: absolute;
            top: 0;
            width: 100%;
        }

        .kapwing-credit {
            font-size: 12px;
            text-align: right;
            margin-top: 5px;
        }

        @media (max-width: 400px) {
            nav {
                padding: 0 5px;
            }
        }

        @media (max-width: 1042px) {

            .middle,
            .box_con,
            .para {
                width: 90%;
            }
            
            .video-container {
                width: 280px;
                height: 500px;
            }
        }

        @media (max-width: 750px) {

            .middle,
            .box_con {
                width: 100%;
            }

            .para {
                width: 100%;
            }

            .middle h2 {
                margin-bottom: 10px;
                font-size: 30px;
            }

            .middle p {
                font-size: 13px;
            }
            
            nav {
                padding: 10px;
            }
            
            ul li {
                margin-left: 15px;
                font-size: 14px;
            }
            
            .video-container {
                width: 260px;
                height: 460px;
            }
        }

        @media (max-width: 373px) {
            .logo span {
                display: none;
            }

            nav {
                padding: 0px;
            }
            
            .video-container {
                width: 240px;
                height: 420px;
            }
        }

        @media (max-width: 442px) {

            nav {
                padding: 0px 10px;
            }
            
            ul li {
                margin-left: 10px;
                font-size: 12px;
            }
        }

        @media (max-width: 396px) {

            nav {
                padding: 0px 5px;
            }
            
            .video-container {
                width: 220px;
                height: 390px;
            }
        }
    