        :root { 
            --primary: #1e293b; 
            --accent: #0284c7; 
            --accent-light: #f0f9ff; 
            --bg: #f8fafc; 
            --card-bg: #ffffff; 
            --text-main: #334155;
            --text-muted: #64748b;
            --highlight-bg: #ef4444; 
            --border-color: #e2e8f0;
        }
        
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { 
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif; 
            background-color: var(--bg); 
            color: var(--text-main);
            -webkit-font-smoothing: antialiased;
            padding: 6px;
        }
        
        .container { 
            width: 100%; 
            max-width: 100%;
            margin: 0 auto;
        }
        
        header { 
            text-align: center; 
            padding: 15px 10px;
            background: #ffffff;
            border-radius: 12px;
            border: 1px solid var(--border-color);
            margin-bottom: 10px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
        }
        header h1 { 
            font-size: 20px; 
            color: var(--primary); 
            font-weight: 800; 
            text-transform: uppercase;
        }
        header h1 span { color: var(--accent); }
        .subtitle { font-size: 11px; color: var(--text-muted); margin-top: 4px; font-weight: 500; }
        
        .live-board {
            background: linear-gradient(135deg, #0284c7, #0369a1);
            color: #ffffff;
            border-radius: 12px;
            padding: 18px 15px;
            text-align: center;
            margin-bottom: 10px;
            box-shadow: 0 4px 12px rgba(2, 132, 199, 0.2);
            border: 1px solid rgba(255,255,255,0.1);
        }
        .live-title {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 700;
            color: #e0f2fe;
        }
        .live-student {
            font-size: 16px;
            color: #fef08a; 
            font-weight: 900;
            margin-top: 4px;
            margin-bottom: 4px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            text-shadow: 0 1px 3px rgba(0,0,0,0.3);
            display: inline-block;
            background: rgba(0, 0, 0, 0.15);
            padding: 4px 14px;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.08);
        }
        .live-date {
            font-size: 11px;
            background: rgba(255, 255, 255, 0.2);
            padding: 2px 8px;
            border-radius: 20px;
            display: block;
            width: fit-content;
            margin: 4px auto 0 auto;
            font-weight: 600;
        }
        .live-number {
            font-size: 42px;
            font-weight: 900;
            margin-top: 6px;
            letter-spacing: 1px;
            text-shadow: 0 2px 5px rgba(0,0,0,0.25);
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.88; }
            100% { opacity: 1; }
        }
        
        /* Filter Form */
        .filter-section { 
            background: var(--card-bg); 
            padding: 12px; 
            border-radius: 12px; 
            margin-bottom: 10px; 
            border: 1px solid var(--border-color);
        }
        .filter-form { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
        .filter-form select { 
            padding: 12px; 
            font-size: 14px; 
            border: 1px solid var(--border-color); 
            border-radius: 8px; 
            background: #f1f5f9; 
            color: var(--primary);
            font-weight: 600; 
            outline: none;
        }
        .filter-form button { 
            grid-column: span 2; 
            padding: 12px; 
            font-size: 14px; 
            background: var(--accent); 
            color: white; 
            border: none; 
            font-weight: 700; 
            border-radius: 8px; 
            text-transform: uppercase;
        }
        
        /* Table Layout */
        .table-container {
            width: 100%;
            background: var(--card-bg);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border-color);
            box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
        }
        table { 
            width: 100%; 
            border-collapse: collapse; 
            table-layout: fixed; 
            text-align: center;
        }
        th, td { 
            border-bottom: 1px solid var(--border-color);
            border-right: 1px solid #edf2f7;
            padding: 8px 1px; 
        }
        th:last-child, td:last-child { border-right: none; }
        
        th { 
            background-color: #f1f5f9; 
            color: var(--primary); 
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            padding: 12px 1px;
        }
        
        .month-th { width: 16%; background-color: #e2e8f0; }
        .day-th { width: 12%; }
        .sun-head { background-color: #fef2f2; color: #ef4444; }
        
        td { height: 58px; vertical-align: middle; }
        
        .month-year-label { 
            font-weight: 700; 
            background: #f8fafc;
            padding: 2px;
        }
        .my-m { display: block; font-size: 11px; text-transform: uppercase; color: var(--primary); }
        .my-y { display: block; font-size: 9px; color: var(--text-muted); margin-top: 1px; }
        
        .cell-data {
            font-size: 16px;
            font-weight: 800;
            color: var(--primary);
            display: inline-block;
            width: 28px;
            height: 28px;
            line-height: 28px;
            border-radius: 6px;
            background: #f8fafc;
            border: 1px solid #e2e8f0;
        }
        
        .highlight-num {
            background: #ef4444;
            color: #ffffff !important;
            border: none;
            box-shadow: 0 2px 5px rgba(239, 68, 68, 0.4);
        }
        
        .cell-date {
            font-size: 8px;
            color: var(--text-muted);
            display: block;
            margin-top: 3px;
            font-weight: 600;
        }
        .no-data { font-size: 13px; color: #cbd5e1; font-weight: 800; }
        
        .seo-content { 
            margin: 12px 0; 
            padding: 15px; 
            background: var(--card-bg); 
            border-radius: 12px; 
            line-height: 1.6; 
            color: var(--text-muted); 
            font-size: 13px; 
            border: 1px solid var(--border-color); 
        }
        .seo-content h2 { font-size: 15px; color: var(--primary); margin-bottom: 5px; font-weight: 700; }
        
        footer {
            margin-top: 15px;
            padding: 18px 10px;
            background: #ffffff;
            border-radius: 12px;
            border: 1px solid var(--border-color);
            text-align: center;
        }
        .footer-brand { font-size: 14px; font-weight: 800; color: var(--primary); text-transform: uppercase; }
        .footer-brand span { color: var(--accent); }
        .footer-copyright { font-size: 11px; color: var(--text-muted); margin-top: 5px; }

        @media (min-width: 768px) {
            .container { max-width: 800px; margin: 0 auto; padding: 10px; }
            header h1 { font-size: 26px; }
            .live-board { padding: 25px; }
            .live-number { font-size: 52px; }
            .live-student { font-size: 18px; padding: 5px 20px; }
            .filter-form { grid-template-columns: 2fr 2fr 1fr; }
            .filter-form button { grid-column: span 1; }
            th { font-size: 13px; }
            td { height: 68px; }
            .cell-data { font-size: 18px; width: 32px; height: 32px; line-height: 32px; }
        }
        /* TOP DOMAIN BRANDING BOARD */
.domain-board-link {
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}
.domain-board {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    color: #ffffff;
    border-radius: 12px;
    padding: 12px;
    text-align: center;
    border: 1px solid #334155;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.domain-board:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 12px -2px rgba(0,0,0,0.15);
}
.domain-name {
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
}
.domain-name span {
    color: #0284c7; /* Blue accent for .com */
}

@media (min-width: 768px) {
    .domain-name { font-size: 22px; }
}