
        @import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;700&family=Roboto:wght@400;700&display=swap');

        body {
            background-color: #050505;
            color: white;
            font-family: 'Roboto', sans-serif;
            background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('/hkelite-bg.webp');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            min-height: 100vh;
        }

        .oswald { font-family: 'Oswald', sans-serif; }

        .glass-panel {
            background: rgba(10, 10, 10, 0.85);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 0, 0, 0.3);
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        
        .elite-result-box {
            background: linear-gradient(145deg, #1a1a1a, #000000);
            border: 2px solid #333;
            border-radius: 16px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.8), inset 0 0 20px rgba(255,0,0,0.1);
        }

        .elite-result-box::before {
            content: "";
            position: absolute;
            top: 0; left: 0; right: 0; height: 2px;
            background: linear-gradient(90deg, transparent, #ff0000, transparent);
        }

        .live-tag {
            background: #ff0000;
            color: white;
            font-size: 10px;
            font-weight: 900;
            padding: 2px 10px;
            border-radius: 4px;
            text-transform: uppercase;
            letter-spacing: 1px;
            animation: pulse-red 1.5s infinite;
        }

        @keyframes pulse-red {
            0% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(255, 0, 0, 0); }
            100% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0); }
        }

        .p1-number {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            background: linear-gradient(to bottom, #fff 40%, #ccc 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            filter: drop-shadow(0 0 15px rgba(255, 0, 0, 0.5));
            letter-spacing: 6px;
            line-height: 1;
        }

        .prize-small-box {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            padding: 8px;
            text-align: center;
        }

        .gold-text {
            color: #ffd700;
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
        }

        .header-title {
            text-shadow: 0 0 20px rgba(255, 0, 0, 0.8);
        }

        .table-header {
            background: linear-gradient(to right, #800000, #4a0000);
            color: #fff;
            text-transform: uppercase;
            font-weight: bold;
            font-size: 0.85rem;
            letter-spacing: 1px;
        }

        .cell-border {
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .number-circle {
            width: 45px;
            height: 45px;
            background: radial-gradient(circle, #b91c1c 0%, #450a0a 100%);
            border: 2px solid #ef4444;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.3rem;
            box-shadow: 0 0 15px rgba(239, 68, 68, 0.4);
            font-family: 'Oswald', sans-serif;
        }

        .shio-box {
            border: 1px solid rgba(255, 0, 0, 0.2);
            padding: 0;
            text-align: center;
            background: rgba(0,0,0,0.6);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            position: relative;
            height: 80px;
        }

        .shio-box img {
            width: 100%;
            height: 100%;
            opacity: 0.8;
            transition: all 0.3s ease;
        }

        .shio-box p {
            position: absolute;
            bottom: 4px;
            left: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.6);
            margin: 0;
            padding: 2px 0;
            z-index: 5;
        }

        .shio-active {
            border-color: #ff0000;
            box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
            background: rgba(185, 28, 28, 0.3);
            transform: scale(1.05);
            z-index: 10;
        }
        
        .shio-active img {
            opacity: 1;
            filter: drop-shadow(0 0 5px rgba(255, 0, 0, 0.5));
        }

        .history-scroll {
            display: flex;
            overflow-x: auto;
            gap: 1rem;
            padding-bottom: 1rem;
            scrollbar-width: thin;
            scrollbar-color: #4a0000 #000;
        }

        .history-card {
            min-width: 160px;
            background: rgba(20, 20, 20, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 6px;
            padding: 12px;
            text-align: center;
            cursor: pointer;
            overflow: visible;
            transition: all 0.25s ease;
        }

        .history-card:hover {
            border-color: #ef4444;
            transform: scale(1.03);
            background: rgba(40, 0, 0, 0.6);
            box-shadow:
            0 8px 20px rgba(0,0,0,0.35),
            0 0 12px rgba(239,68,68,0.35);
        }

        #modal-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem;
            overflow-y: auto;
        }

        .text-gold { color: #ffd700; }
        .gold-border { border: 1px solid rgba(255, 215, 0, 0.3); background: rgba(0,0,0,0.6); }

        ::-webkit-scrollbar { width: 6px; height: 6px; }
        ::-webkit-scrollbar-track { background: #000; }
        ::-webkit-scrollbar-thumb { background: #4a0000; border-radius: 10px; }

        .seo-hidden {
            display: none;
            visibility: hidden;
            height: 0;
            overflow: hidden;
        }

        .live-result-number {
            font-family: 'Oswald', sans-serif;
            font-size: 2.5rem;
            font-weight: bold;
            color: #ff0000;
            text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
            letter-spacing: 4px;
        }
        .prize-label {
            font-size: 10px;
            color: #aaa;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .banner-bar { 
             width: 100%;
            max-width: 960px;
            margin: 10px auto;
            display: flex;
            flex-direction: column;
            gap: 4px;
            padding: 6px 0;
            align-items: center; 
            justify-content: center; 
           overflow: visible;
            
        }
        
        .banner-bar img {
            display: block;
            width: 100%;
            border-radius: 5px;
            border: 1px solid rgba(255, 0, 0, 0.3);
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
            transition: all 0.25s ease;
        }

        .banner-bar img:hover {
            border-color: #ff3b3b;
            transform: scale(1.03);
            box-shadow:
            0 8px 20px rgba(0,0,0,0.35),
            0 0 15px rgba(255,0,0,0.45);
        }
