        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .jack09-container {
            font-family: 'Arial', sans-serif;
            background: linear-gradient(180deg, #0a2e3e 0%, #041a24 100%);
            min-height: 100vh;
            padding: 0;

            background-image: url(https://i.pinimg.com/1200x/4d/64/70/4d6470868c928a76f2bd13cf791306a1.jpg);
            background-repeat: no-repeat;
            background-size: cover;
            background-attachment: fixed;
        }


        .jack09-header {
            position: relative;
            padding: 20px 0;
            /* background: linear-gradient(180deg, #0d3545 0%, #0a2e3e 100%); */
            overflow: hidden;
            padding-top: 40px;
        }

        .jack09-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at center, rgba(0, 255, 255, 0.1) 0%, transparent 70%);
            animation: jack09-pulse 3s ease-in-out infinite;
        }

        @keyframes jack09-pulse {

            0%,
            100% {
                opacity: 0.5;
            }

            50% {
                opacity: 1;
            }
        }

        .jack09-jackpot-label {
            text-align: center;
            color: #ffd700;
            font-size: 24px;
            font-weight: bold;
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
            margin-bottom: 10px;
            letter-spacing: 2px;
        }

        .jack09-amount-display {
            background: linear-gradient(135deg, #eb8400 0%, #fee20d 100%);
            border: 4px solid #ffd700;
            border-radius: 50px;
            padding: 15px 40px;
            margin: 0 20px 20px;
            box-shadow: 0 5px 20px rgba(0, 212, 170, 0.5), inset 0 2px 5px rgba(255, 255, 255, 0.3);
        }

        .jack09-amount-text {
            text-align: center;
            color: #fff;
            font-size: 36px;
            font-weight: bold;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }

        .jack09-treasure-section {
            position: relative;
            text-align: center;
            padding: 30px 0;
            background: radial-gradient(circle at center, rgba(0, 212, 170, 0.2) 0%, transparent 70%);
        }

        .jack09-treasure-img {
            width: 200px;
            height: 200px;
            margin: 0 auto;
            position: relative;
            animation: jack09-float 3s ease-in-out infinite;
        }

        @keyframes jack09-float {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-15px);
            }
        }

        .jack09-treasure-box {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #ffb74d 0%, #ff9800 50%, #f57c00 100%);
            border-radius: 20px;
            position: relative;
            box-shadow: 0 10px 30px rgba(255, 152, 0, 0.5);
            border: 3px solid #ffd54f;
        }

        .jack09-treasure-box::before {
            content: '💎';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 80px;
            animation: jack09-shine 2s ease-in-out infinite;
        }

        @keyframes jack09-shine {

            0%,
            100% {
                opacity: 1;
                transform: translate(-50%, -50%) scale(1);
            }

            50% {
                opacity: 0.7;
                transform: translate(-50%, -50%) scale(1.1);
            }
        }

        .jack09-notification {
            background: rgba(0, 0, 0, 0.8);
            border-radius: 10px;
            padding: 10px 15px;
            margin: 15px 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .jack09-speaker-icon {
            color: #fff;
            font-size: 16px;
        }

        .jack09-notification-text {
            color: #fff;
            font-size: 12px;
            flex: 1;
            white-space: nowrap;
            overflow: hidden;
        }

        .jack09-marquee-wrapper {
            display: flex;
            animation: jack09-scroll 12s linear infinite;
        }

        @keyframes jack09-scroll {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        .jack09-marquee-item {
            padding-right: 100px;
            white-space: nowrap;
        }

        .jack09-hourly-btn {
            background: linear-gradient(135deg, #ffa726 0%, #ff9800 100%);
            color: #fff;
            border: none;
            border-radius: 20px;
            padding: 8px 25px;
            font-size: 14px;
            font-weight: bold;
            margin: 15px auto;
            display: block;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(255, 152, 0, 0.4);
            transition: all 0.3s ease;
        }

        .jack09-hourly-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 20px rgba(255, 152, 0, 0.6);
        }

        .jack09-prizepool-section {
            position: relative;
            margin: 20px;
            padding: 25px 20px;
            /* background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%); */
            border-radius: 20px;
            box-shadow: 0 5px 20px rgba(30, 58, 138, 0.5);
            /* border: 2px solid #3b82f6; */
            background-image: url(https://i.pinimg.com/1200x/01/b1/ca/01b1cab81e4128e9f6003c500ade1211.jpg);
            background-repeat: no-repeat;
            background-size: cover;
            background-position: center;
        }

        .jack09-prizepool-header {
            text-align: center;
            margin-bottom: 15px;
        }

        .jack09-date-range {
            color: #fff;
            font-size: 11px;
            margin-bottom: 5px;
        }

        .jack09-prizepool-label {
            color: #fff;
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .jack09-prize-amount {
            color: #fbbf24;
            font-size: 35px;
            font-weight: bold;
            text-shadow: 0 2px 10px rgba(251, 191, 36, 0.5);
        }

        .jack09-timer-section {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-top: 15px;
            background: #00000099;
        }

        .jack09-timer-icon {
            width: 30px;
            height: 30px;
            background: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
        }

        .jack09-timer-text {
            color: #fff;
            font-size: 18px;
            font-weight: bold;
            letter-spacing: 1px;
        }

        .jack09-coin-decorations {
            display: flex;
            justify-content: space-between;
            margin-top: 15px;
        }

        .jack09-coins-left,
        .jack09-coins-right {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            box-shadow: 0 4px 10px rgba(255, 215, 0, 0.5);
        }

        .jack09-stats-section {
            background: rgba(0, 0, 0, 0.3);
            padding: 20px;
            margin: 20px;
            border-radius: 15px;
        }

        .jack09-stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            text-align: center;
        }

        .jack09-stat-item {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .jack09-stat-label {
            color: #94a3b8;
            font-size: 11px;
            white-space: nowrap;
        }

        .jack09-stat-value {
            color: #fff;
            font-size: 16px;
            font-weight: bold;
        }

        .jack09-join-section {
            padding: 0 20px 20px;
        }

        .jack09-balance-display {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-bottom: 15px;
        }

        .jack09-balance-icon {
            width: 35px;
            height: 35px;
            background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
        }

        .jack09-balance-amount {
            color: #fff;
            font-size: 22px;
            font-weight: bold;
        }

        .jack09-join-btn {
            width: 100%;
            max-width: 250px;
            background: linear-gradient(135deg, #00e676 0%, #00c853 100%);
            color: #fff;
            border: none;
            border-radius: 30px;
            padding: 15px;
            font-size: 18px;
            font-weight: bold;
            display: block;
            margin: 0 auto;
            cursor: pointer;
            box-shadow: 0 5px 20px rgba(0, 230, 118, 0.4);
            transition: all 0.3s ease;
        }

        .jack09-join-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 7px 25px rgba(0, 230, 118, 0.6);
        }

        .jack09-rewards-section {
            background: rgba(0, 0, 0, 0.4);
            padding: 15px 20px;
            margin: 0px;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .jack09-rewards-title {
            color: #fff;
            font-size: 16px;
            font-weight: bold;
        }

        /* ========== */

        .jp-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.88);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 99999;
            backdrop-filter: blur(10px);
        }

        .jp-modal {
            width: 90%;
            max-width: 370px;
            background: linear-gradient(135deg, #0a1f1a, #0d2f27);
            border: 3px solid #00ffaa;
            border-radius: 24px;
            padding: 28px 20px 50px;
            text-align: center;
            box-shadow: 0 0 50px rgba(0, 255, 170, 0.7);
            position: relative;
        }

        .jp-header {
            font-size: 24px;
            font-weight: 900;
            color: #fff;
            text-shadow: 0 0 15px #00ffaa;
            margin-bottom: 22px;
            letter-spacing: 1px;
        }

        .jp-balance {
            font-size: 19px;
            color: #fff;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .jp-coins {
            color: #ffd700;
            font-weight: 900;
        }

        .jp-input-wrap {
            margin: 25px 0;
        }

        .jp-input {
            width: 100%;
            padding: 16px;
            background: #000;
            border: 2px solid #444;
            border-radius: 12px;
            color: #fff;
            font-size: 17px;
            text-align: center;
        }

        .jp-input::placeholder {
            color: #666;
            font-size: 16px;
        }

        .jp-confirm-btn {
            background: linear-gradient(180deg, #00ffaa, #00cc88);
            color: #000;
            font-size: 21px;
            font-weight: 900;
            padding: 15px 60px;
            border: 3px solid #ffd700;
            border-radius: 50px;
            cursor: pointer;
            box-shadow: 0 8px 25px rgba(0, 255, 170, 0.6);
            margin: 20px 0 25px;
        }

        .jp-note {
            font-size: 14px;
            color: #ccc;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        /* TAP TO CLOSE - ab andar hai, click bhi hoga, look bhi same */
        .tap-to-close {
            position: absolute;
            bottom: 12px;
            left: 50%;
            transform: translateX(-50%);
            background: #000;
            color: #fff;
            font-size: 16px;
            font-weight: 900;
            padding: 8px 32px;
            border-radius: 20px;
            border: 2px solid #00ffaa;
            box-shadow: 0 0 20px rgba(0, 255, 170, 0.5);
            cursor: pointer;
            white-space: nowrap;
        }

        .tap-to-close:hover {
            background: #00ffaa;
            color: #000;
        }