/* --- Ultra-Premium Advertisement Board --- */
.adv-board-premium {
    background: linear-gradient(135deg, #161b22, #0d1117);
    border: 2px solid var(--border-color);
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    margin: 35px 0;
    position: relative;
    overflow: hidden;
    /* Neon glow effect background te */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7), 
                inset 0 0 15px rgba(255, 74, 74, 0.05);
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

/* Board te hover karan te glow vadhega */
.adv-board-premium:hover {
    border-color: var(--primary-glow);
    box-shadow: 0 15px 40px rgba(255, 74, 74, 0.15), 
                inset 0 0 20px rgba(255, 74, 74, 0.1);
}

/* Chota Animated Badge Board de andar */
.adv-badge {
    display: inline-block;
    font-size: 11px;
    background: linear-gradient(90deg, #ff512f, #dd2476);
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    box-shadow: 0 0 10px rgba(255, 81, 47, 0.4);
    animation: advPulse 2s infinite;
}

@keyframes advPulse {
    0% { transform: scale(1); box-shadow: 0 0 10px rgba(255, 81, 47, 0.4); }
    50% { transform: scale(1.03); box-shadow: 0 0 20px rgba(255, 81, 47, 0.7); }
    100% { transform: scale(1); box-shadow: 0 0 10px rgba(255, 81, 47, 0.4); }
}

/* Main Heading Style */
.adv-board-premium h2 {
    font-size: 22px;
    font-weight: 900;
    color: var(--text-bright);
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Text Description with Gold Highlight */
.adv-board-premium p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 25px auto;
}

.adv-board-premium p span {
    color: var(--accent-gold);
    font-weight: 700;
}

/* --- Ultra Glowing WhatsApp Button --- */
.whatsapp-glow-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #00f2fe, #4facfe); /* Cyan Gradient jo data-cell naal match kare */
    color: #0d1117; /* Dark text clear visibility lyi */
    text-decoration: none;
    font-size: 16px;
    font-weight: 800;
    padding: 16px 40px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

/* Button Hover Style */
.whatsapp-glow-btn:hover {
    background: linear-gradient(135deg, #25D366, #128C7E); /* Hover te WhatsApp Green ho javega */
    color: #ffffff;
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.6);
}

/* Icon Animation */
.whatsapp-glow-btn svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.whatsapp-glow-btn:hover svg {
    transform: rotate(15deg) scale(1.1);
}
/* Premium Dark Theme Palette */
        :root {
            --bg-main: #0d1117;
            --bg-card: #161b22;
            --primary-glow: #ff4a4a;
            --text-bright: #ffffff;
            --text-muted: #8b949e;
            --accent-green: #39d353; 
            --accent-gold: #ffb703;
            --border-color: #21262d;
            --today-bg: rgba(255, 183, 3, 0.08);
            --today-border: #ffb703;
        }
        
        body {
            font-family: '-apple-system', BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background-color: var(--bg-main);
            color: var(--text-bright);
            margin: 0;
            padding: 12px;
        }

        .container {
            max-width: 800px;
            margin: 0 auto;
            background: var(--bg-card);
            padding: 15px;
            border-radius: 16px;
            border: 1px solid var(--border-color);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        /* Navigation */
        nav {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
        }
        nav a {
            flex: 1;
            text-align: center;
            padding: 14px;
            text-decoration: none;
            color: var(--text-bright);
            font-weight: 700;
            font-size: 14px;
            letter-spacing: 1px;
            background: linear-gradient(145deg, #1f242c, #161b22);
            border-radius: 10px;
            border: 1px solid red;
            transition: all 0.3s ease;
        }
        nav a:hover {
            border-color: var(--accent-gold);
            color: var(--accent-gold);
            transform: translateY(-1px);
        }

        /* Banner */
        .banner-section {
            text-align: center;
            margin-bottom: 20px;
        }
        .banner-section img {
            width: 100%;
            height: 120px;
            border-radius: 10px;
        }

        /* Top Student Live Blocks */
        .live-status-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin-bottom: 25px;
        }
        .status-card {
            background: linear-gradient(135deg, #1f242c, #0d1117);
            border: 1px solid blue;
            padding: 18px 15px;
            border-radius: 12px;
            text-align: center;
        }
        
        /* Live Badge Text ke upar dynamic gap ke sath */
        .live-badge {
            display: inline-block;
            font-size: 10px;
            background: #dc3545;
            color: #fff;
            padding: 2px 8px;
            border-radius: 4px;
            font-weight: 900;
            letter-spacing: 1px;
            margin-bottom: 12px;
            animation: pulse 1.5s infinite;
        }
        @keyframes pulse {
            0% { opacity: 0.6; }
            50% { opacity: 1; }
            100% { opacity: 0.6; }
        }
        
        .status-card .student-title {
            font-size: 13px;
            color: var(--text-muted);
            text-transform: uppercase;
            font-weight: 700;
            margin-bottom: 6px;
        }
        .status-card .live-value {
            font-size: 26px;
            font-weight: 900;
            color: var(--accent-green);
            font-family: 'Courier New', Courier, monospace;
        }
        .status-card .live-value.wait-text {
            color: #e63946;
            font-size: 22px;
            letter-spacing: 1px;
        }
        .status-card .live-date {
            font-size: 11px;
            color: var(--accent-gold);
            margin-top: 6px;
        }

        h1 {
            font-size: 22px;
            font-weight: 800;
            text-align: center;
            color: var(--text-bright);
            margin: 15px 0 20px 0;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }

        /* Filter Form */
        form {
            display: flex;
            gap: 8px;
            margin-bottom: 25px;
        }
        select, input[type="submit"] {
            padding: 12px;
            font-size: 15px;
            font-weight: 600;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            background: #21262d;
            color: var(--text-bright);
            outline: none;
            flex: 1;
        }
        select {
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10px' height='10px' fill='%238b949e'><polygon points='0,0 10,0 5,5'/></svg>");
            background-repeat: no-repeat;
            background-position: right 12px center;
            padding-right: 30px;
        }
        input[type="submit"] {
            flex: 0 0 80px;
            background: linear-gradient(90deg, #ff512f, #dd2476);
            color: white;
            border: none;
            cursor: pointer;
        }

        /* Premium Table Style (Aapka Pasandida Classic Design) */
        .table-responsive {
            overflow-x: auto;
            border-radius: 12px;
            border: 1px solid var(--border-color);
            margin-bottom: 35px;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 16px;
        }
        th {
            background-color: #1f242c;
            color: var(--text-muted);
            font-size: 12px;
            font-weight: 700;
            padding: 14px 10px;
            border-bottom: 2px solid var(--border-color);
            text-transform: uppercase;
        }
        td {
            padding: 14px 10px;
            text-align: center;
            border-bottom: 1px solid var(--border-color);
        }
        
        /* Columns Styling */
        /* Date ko do lines me aur short month show karne ke liye */
.date-col {
    background-color: #080f1a !important; /* Dark Premium Blue background */
    color: #00f2fe !important; /* Glowing Cyan Color */
    font-weight: 800;
    font-size: 14px;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.date-year-text {
    font-size: 11px;
    color: #6f809a; /* Muted grey for year */
    font-weight: 600;
    display: block; /* Isse year neeche wali line me chala jayega */
    margin-top: 2px;
}
        .data-cell {
            color: var(--accent-green); 
            font-size: 20px; 
            font-weight: 800;
            font-family: 'Courier New', Courier, monospace;
        }

        /* Dynamic Highlighting Style for Today's Date Row */
        .row-today {
            background-color: var(--today-bg) !important;
            border: 1px solid var(--today-border);
        }
        .row-today .date-col {
            background-color: #1e1b15 !important;
            color: var(--accent-gold) !important; 
            border-left: 2px solid var(--accent-gold);
        }

        tr:hover:not(.row-today) {
            background-color: rgba(255,255,255,0.02);
        }

        /* Premium SEO Content Boards */
        .seo-boards {
            display: grid;
            grid-template-columns: 1fr;
            gap: 15px;
            margin-top: 35px;
            padding-top: 25px;
            border-top: 1px solid var(--border-color);
        }
        @media(min-width: 480px) {
            .seo-boards {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        .board-card {
            background: linear-gradient(145deg, #1c2129, #161b22);
            padding: 20px;
            border-radius: 12px;
            border: 1px solid var(--border-color);
        }
        .board-card h2 {
            font-size: 16px;
            font-weight: 700;
            margin: 0 0 10px 0;
            color: var(--accent-gold);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .board-card h2::before {
            content: '';
            display: inline-block;
            width: 6px;
            height: 14px;
            background: var(--accent-gold);
            border-radius: 2px;
        }
        .board-card p {
            font-size: 13px;
            line-height: 1.6;
            margin-bottom: 0;
            color: var(--text-muted);
        }

        /* Footer Board */
        .footer-board {
            margin-top: 20px;
            background: linear-gradient(145deg, #161b22, #0d1117);
            border: 1px solid blue;
            padding: 10px;
            border-radius: 12px;
            text-align: center;
        }
        .footer-board p {
            font-size: 16px;
            color: var(--text-muted);
            margin-bottom: 12px;
        }
        /* Specific numbers ko red highlight karne ke liye */
.red-highlight {
    color: #ff3344 !important; /* Perfect Neon Red Color */
    font-weight: 900 !important;
    text-shadow: 0 0 8px rgba(255, 51, 68, 0.3); /* Chota sa glow effect */
}