        :root { 
            --bg: #f8fafc; /* Premium Light Clean Creamy Background */
            --card-bg: #ffffff; 
            --primary-text: #0f172a; 
            --muted-text: #475569;
            --accent: #4f46e5; 
            --border: #cbd5e1;
            --table-header-bg: #1e293b;
            --highlight-bg: linear-gradient(135deg, #ef4444 0%, #dc2626 100%); 
            --live-card-bg: #f1f5f9;
        }
        
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { 
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; 
            background-color: var(--bg); 
            color: var(--primary-text);
            padding: 16px 12px 30px 12px; /* Bottom padding added to give absolute clean spacing */
            -webkit-font-smoothing: antialiased;
        }
        
        .container { 
            width: 100%; 
            max-width: 440px; 
            margin: 0 auto;
        }

        /* 💎 PREMIUM LIGHT BRANDING BOARD (H1 INSIDE FOR RAJ KUMAR) */
        .domain-board-link { text-decoration: none; display: block; margin-bottom: 16px; }
        .domain-board {
            background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
            border-radius: 16px;
            padding: 22px 14px;
            text-align: center;
            box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.04), 0 0 1px rgba(0,0,0,0.1);
            border: 1px solid var(--border);
        }
        .site-badge {
            display: inline-block;
            font-size: 11px;
            font-weight: 800;
            color: #0284c7;
            background: #e0f2fe;
            padding: 3px 10px;
            border-radius: 20px;
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .domain-board h1 { 
            font-size: 25px; 
            font-weight: 900; 
            letter-spacing: 0.5px; 
            color: #0f172a;
            text-transform: uppercase;
            line-height: 1.2;
        }
        .domain-board h1 span { 
            color: #4f46e5; 
            background: linear-gradient(to right, #0284c7, #4f46e5);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .board-subtitle {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #64748b;
            margin-top: 6px;
            font-weight: 700;
        }
        
        /* 💎 PREMIUM LIGHT LIVE BOARD */
        .live-board {
            background: var(--card-bg);
            border-radius: 20px;
            padding: 18px 16px;
            text-align: center;
            margin-bottom: 16px;
            border: 1px solid #cbd5e1;
            box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02);
            position: relative;
        }
        .live-badge {
            position: absolute; top: 14px; right: 16px;
            background: #fee2e2;
            border: 1px solid #fca5a5;
            color: #dc2626; font-size: 9px; font-weight: 700;
            padding: 2px 8px; border-radius: 20px; text-transform: uppercase;
            letter-spacing: 0.5px; display: flex; align-items: center; gap: 4px;
        }
        .live-badge::before {
            content: ''; width: 5px; height: 5px; background: #dc2626; border-radius: 50%;
            display: inline-block;
        }
        .live-title { font-size: 11px; text-transform: uppercase; font-weight: 700; color: var(--muted-text); letter-spacing: 1px; }
        .live-student { font-size: 17px; color: #b45309; font-weight: 800; margin-top: 4px; }
        .live-date { font-size: 11px; color: #475569; background: #f1f5f9; padding: 4px 12px; border-radius: 20px; display: inline-block; font-weight: 600; margin-top: 6px; }
        
        /* Number Container */
        .live-number-container {
            margin-top: 12px;
            background: var(--live-card-bg);
            border-radius: 12px;
            padding: 12px 0;
            border: 1px solid #e2e8f0;
        }
        .live-number { 
            font-size: 46px; 
            font-weight: 900; 
            color: #0f172a; 
            letter-spacing: 1px;
        }
        
        /* Filter Form Section */
        .filter-section { 
            background: var(--card-bg); 
            padding: 14px; 
            border-radius: 16px; 
            margin-bottom: 16px; 
            border: 1px solid #cbd5e1;
            box-shadow: 0 4px 15px rgba(0,0,0,0.01);
        }
        .filter-form { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
        .filter-form select { 
            padding: 12px; 
            font-size: 14px; 
            background: #ffffff;
            color: #0f172a;
            border: 1px solid #cbd5e1; 
            border-radius: 12px; 
            font-weight: 600; 
            outline: none;
        }
        .filter-form button { 
            grid-column: span 2; 
            padding: 13px; 
            background: linear-gradient(135deg, #4f46e5 0%, #3730a3 100%); 
            color: white; 
            border: none; 
            font-weight: 700; 
            border-radius: 12px; 
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 12px rgba(79, 70, 229, 0.15);
        }
        
        /* 🔥 CHART TABLE SYSTEM */
        .chart-table-wrapper {
            background: var(--card-bg);
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid #cbd5e1;
            box-shadow: 0 4px 20px rgba(0,0,0,0.02);
            margin-bottom: 16px;
        }

        .result-main-table {
            width: 100%;
            border-collapse: collapse;
            text-align: center;
            margin: 0;
            padding: 0;
        }

        /* Table Headings (DATE | disawar_night) */
        .result-main-table th {
            background-color: var(--table-header-bg);
            color: #ffffff;
            padding: 16px 10px;
            font-size: 14px;
            font-weight: 800;
            letter-spacing: 1px;
            text-transform: uppercase;
            border-bottom: 2px solid #0f172a;
            text-align: center;
        }

        /* Center Vertical Line */
        .result-main-table th:first-child, 
        .result-main-table td:first-child {
            border-right: 1px solid #cbd5e1; 
            width: 60%; 
        }
        
        .result-main-table th:last-child, 
        .result-main-table td:last-child {
            width: 40%; 
        }

        /* Table Rows */
        .result-main-table tr {
            border-bottom: 1px solid #f1f5f9;
        }
        .result-main-table tr:last-child {
            border-bottom: none;
        }
        .result-main-table tr:nth-child(even) {
            background-color: #f8fafc; 
        }

        /* Left Side Text Design */
        .table-date-cell {
            padding: 14px 10px;
            text-align: center; 
        }
        .date-main {
            font-size: 15px;
            font-weight: 700;
            color: #0f172a;
        }
        .day-sub {
            font-size: 12px;
            color: var(--muted-text);
            font-weight: 500;
            margin-top: 2px;
        }

        /* Right Side Box Design */
        .table-result-cell {
            padding: 8px 10px;
            vertical-align: middle;
            text-align: center;
        }
        
        /* Inner Square Box for Result */
        .result-digit-box {
            width: 44px;
            height: 44px;
            background-color: #ffffff;
            border: 1px solid #cbd5e1;
            border-radius: 10px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 19px;
            font-weight: 800;
            color: #0f172a;
        }

        /* ⚡ Highlight Result Box Only (Solid Clean Premium Red) */
        .result-digit-box.highlight-active {
            background: var(--highlight-bg);
            color: #ffffff !important;
            border-color: #b91c1c;
            box-shadow: 0 4px 10px rgba(220, 38, 38, 0.2);
        }

        .empty-dash {
            color: #94a3b8;
            font-weight: 600;
        }
        
        /* 🔥 EXTRA SEO CONTENT BLOCK FOR HIGHER PAGE RANKING */
        .seo-content { 
            padding: 16px; 
            background: var(--card-bg); 
            border-radius: 16px; 
            color: var(--muted-text); 
            font-size: 13px; 
            border: 1px solid #cbd5e1; 
            margin-bottom: 20px;
            line-height: 1.6;
        }
        .seo-content h2 { font-size: 15px; color: #0f172a; margin-bottom: 6px; font-weight: 800; }
        .seo-content h3 { font-size: 13px; color: #1e293b; margin: 10px 0 4px 0; font-weight: 700; }
        .seo-content p { margin-bottom: 8px; }
        .seo-content p:last-child { margin-bottom: 0; }
        
        /* 💎 PREMIUM MODERN FOOTER BOARD */
        .footer-board {
            background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
            border-radius: 16px;
            padding: 20px 14px;
            text-align: center;
            border: 1px solid #cbd5e1;
            box-shadow: 0 4px 15px rgba(15, 23, 42, 0.02);
            margin-top: 10px;
        }
        .footer-brand { 
            font-size: 15px; 
            font-weight: 900; 
            color: #0f172a; 
            letter-spacing: 1.5px;
            text-transform: uppercase;
        }
        .footer-brand span { color: #0284c7; }
        .footer-copyright { 
            font-size: 11px; 
            color: #64748b; 
            margin-top: 6px; 
            font-weight: 600;
        }