﻿

:root {
    --primary-blue: #0f52ba;
    --secondary-blue: #1f7bff;
    --light-blue: #eef5ff;
    --dark-blue: #072a61;
    --text-dark: #122b46;
}

body {
    background: linear-gradient(to bottom, #edf4ff, #f8fbff);
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

.premium-hero-section {
    position: relative;
    overflow: hidden;
    padding: 80px 0 130px;
    background: linear-gradient(135deg, #0b3f91, #1565d8, #278cff);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.18), transparent 30%), radial-gradient(circle at bottom left, rgba(255,255,255,0.10), transparent 25%);
}

.hero-content {
    position: relative;
    z-index: 5;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(12px);
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 25px;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 25px;
}

    .hero-title span {
        display: block;
        color: #dcecff;
    }

.hero-subtitle {
    color: rgba(255,255,255,0.92);
    font-size: 18px;
    line-height: 1.8;
    max-width: 700px;
}

.hero-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.hero-stat-box {
    min-width: 150px;
    padding: 20px;
    border-radius: 24px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(18px);
    text-align: center;
}

    .hero-stat-box strong {
        display: block;
        font-size: 24px;
        color: #fff;
        font-weight: 800;
    }

    .hero-stat-box span {
        color: rgba(255,255,255,0.85);
        font-size: 14px;
        font-weight: 500;
    }

.hero-glass-card {
    position: relative;
    z-index: 5;
    border-radius: 30px;
    padding: 30px;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.hero-card-top {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 700;
    margin-bottom: 25px;
}

.live-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #00ff84;
    box-shadow: 0 0 15px #00ff84;
}

.hero-mini-box {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px 18px;
    margin-bottom: 15px;
    border-radius: 18px;
    background: rgba(255,255,255,0.12);
    color: #fff;
    font-weight: 600;
}

    .hero-mini-box i {
        width: 38px;
        height: 38px;
        border-radius: 12px;
        background: rgba(255,255,255,0.16);
        display: flex;
        align-items: center;
        justify-content: center;
    }

.main-wrapper {
    position: relative;
    z-index: 10;
    margin-top: -70px;
    margin-bottom: 60px;
}

.premium-sidebar-card {
    border-radius: 28px;
    overflow: hidden;
    background: rgba(255,255,255,0.75);
    border: 1px solid rgba(255,255,255,0.6);
    backdrop-filter: blur(20px);
    box-shadow: 0 15px 40px rgba(15,82,186,0.08);
}

.sidebar-top {
    padding: 22px 25px;
    background: linear-gradient(135deg, #0f52ba, #1f7bff);
}

    .sidebar-top h4 {
        color: white;
        font-size: 18px;
        font-weight: 700;
        margin: 0;
    }

.sidebar-body {
    padding: 25px;
}

.premium-state-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .premium-state-list li {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 13px 0;
        border-bottom: 1px solid #edf2ff;
        font-weight: 600;
        color: #26466e;
    }

        .premium-state-list li:last-child {
            border-bottom: 0;
        }

        .premium-state-list li i {
            color: var(--secondary-blue);
        }

.feature-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 18px;
    background: #f4f8ff;
    margin-bottom: 14px;
    font-weight: 600;
    color: #244267;
}

    .feature-box i {
        color: #0f52ba;
    }

.top-status-bar {
    margin-bottom: 30px;
}

.premium-active-box,
.subscribe-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    border-radius: 28px;
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(255,255,255,0.7);
    backdrop-filter: blur(18px);
    box-shadow: 0 15px 40px rgba(15,82,186,0.08);
}

.premium-left,
.subscribe-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

    .premium-left i,
    .subscribe-left i {
        width: 65px;
        height: 65px;
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 26px;
        color: white;
        background: linear-gradient(135deg, #0f52ba, #1f7bff);
    }

    .premium-left h5,
    .subscribe-left h5 {
        margin: 0;
        font-size: 20px;
        font-weight: 800;
        color: #163b69;
    }

    .premium-left p,
    .subscribe-left p {
        margin: 5px 0 0;
        color: #6783a5;
        font-weight: 500;
    }

.premium-right {
    padding: 12px 20px;
    border-radius: 50px;
    background: #eaf6ee;
    color: #1c8f47;
    font-weight: 800;
    font-size: 13px;
}

.subscribe-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border-radius: 50px;
    background: linear-gradient(135deg, #065f46, #047857);
    color: white !important;
    font-weight: 800;
    text-decoration: none !important;
    box-shadow: 0 10px 25px rgba(4,120,87,0.28);
    transition: all 0.25s ease;
    border: 1px solid rgba(255,255,255,0.08);
}

    .subscribe-btn:hover {
        transform: translateY(-2px);
        background: linear-gradient(135deg, #064e3b, #059669);
        box-shadow: 0 16px 34px rgba(4,120,87,0.35);
        color: #ffffff !important;
    }

.premium-table-card {
    border-radius: 32px;
    padding: 35px;
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(255,255,255,0.7);
    backdrop-filter: blur(22px);
    box-shadow: 0 20px 50px rgba(15,82,186,0.08);
}

.table-top-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid #edf2ff;
}

.table-main-title {
    font-size: 32px;
    font-weight: 900;
    color: #123760;
    margin-bottom: 8px;
}

.table-sub-title {
    margin: 0;
    color: #6d84a1;
    font-weight: 500;
}

.search-box-wrapper {
    position: relative;
    min-width: 320px;
}

    .search-box-wrapper i {
        position: absolute;
        left: 18px;
        top: 50%;
        transform: translateY(-50%);
        color: #6d84a1;
    }

.premium-search-box {
    width: 100%;
    height: 58px;
    border: 0;
    outline: none;
    padding: 0 20px 0 50px;
    border-radius: 50px;
    background: #f4f8ff;
    font-weight: 600;
    color: #18385f;
}

.premium-row td {
    padding: 0 0 20px 0;
    border: 0;
}

.premium-subject-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 24px;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(243,248,255,0.95));
    border: 1px solid #edf3ff;
    text-decoration: none !important;
    transition: 0.25s ease;
}

    .premium-subject-link:hover {
        transform: translateY(-3px);
        box-shadow: 0 20px 35px rgba(15,82,186,0.10);
    }

.subject-left {
    display: flex;
    align-items: center;
    gap: 20px;
    min-width: 0;
}

.subject-icon {
    width: 72px;
    height: 72px;
    min-width: 72px;
    border-radius: 22px;
    background: linear-gradient(135deg, #0f52ba, #1f7bff);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 800;
    box-shadow: 0 10px 25px rgba(15,82,186,0.22);
}

.subject-details {
    min-width: 0;
}

.subject-title {
    font-size: 22px;
    font-weight: 800;
    color: #163760;
    margin-bottom: 10px;
    word-break: break-word;
}

.subject-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.meta-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 15px;
    border-radius: 50px;
    background: #eef5ff;
    color: #30507a;
    font-size: 13px;
    font-weight: 700;
}

.open-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border-radius: 50px;
    background: linear-gradient(135deg, #0f52ba, #1f7bff);
    color: white;
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: 0 10px 25px rgba(15,82,186,0.20);
}

.pagination-wrapper {
    margin-top: 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.pagination-info {
    color: #5f7695;
    font-weight: 700;
    font-size: 15px;
}

.custom-pagination {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.pagination-numbers {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.page-number-btn,
.page-nav-btn {
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 16px;
    background: rgba(255,255,255,0.75);
    color: #0f52ba;
    font-weight: 800;
    font-size: 15px;
    box-shadow: 0 8px 22px rgba(15,82,186,0.08);
}

    .page-number-btn.active {
        background: linear-gradient(135deg, #0f52ba, #1f7bff);
        color: white;
    }

.empty-box {
    border-radius: 24px;
    padding: 30px;
    background: rgba(255,255,255,0.55);
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: #b91c1c;
}

.hinditext {
    font-family: 'Noto Sans Devanagari', 'Mangal', sans-serif;
    font-size: 24px;
    line-height: 1.5;
}

/* =====================================
   ULTRA COMPACT MOBILE TEST LIST
   ===================================== */

@media (max-width:768px) {

    .premium-subject-link {
        padding: 8px 10px !important;
        min-height: 52px !important;
        gap: 8px !important;
        border-radius: 10px !important;
    }

    .subject-left {
        gap: 8px !important;
        flex: 1 !important;
        min-width: 0 !important;
    }

    .subject-icon {
        width: 28px !important;
        height: 28px !important;
        min-width: 28px !important;
        border-radius: 6px !important;
        font-size: 12px !important;
        font-weight: 700 !important;
    }

    .subject-title {
        font-size: 13px !important;
        line-height: 1.3 !important;
        margin-bottom: 2px !important;
        font-weight: 700 !important;
    }

    .hinditext {
        font-size: 14px !important;
    }

    .subject-meta {
        gap: 4px !important;
    }

    .meta-chip {
        padding: 0 !important;
        background: none !important;
        font-size: 10px !important;
        border-radius: 0 !important;
        min-height: auto !important;
    }

        .meta-chip i {
            font-size: 9px !important;
        }

    .subject-right {
        flex-shrink: 0 !important;
    }

    .open-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 85px;
        height: 34px;
        padding: 0 12px;
        border-radius: 8px;
        background: linear-gradient(135deg,#0f52ba,#1f7bff);
        color: #fff;
        font-size: 12px;
        font-weight: 700;
        white-space: nowrap;
        box-shadow: none;
        transition: .2s;
    }

        .open-btn:hover {
            transform: translateY(-1px);
            color: #fff;
        }

    .premium-row td {
        padding: 0 0 6px 0 !important;
    }

    .premium-table-card {
        padding: 10px !important;
    }

    .subscribe-box {
        padding: 12px !important;
        border-radius: 12px !important;
        gap: 10px !important;
    }

    .subscribe-left {
        gap: 10px !important;
    }

        .subscribe-left i {
            width: 36px !important;
            height: 36px !important;
            min-width: 36px !important;
            font-size: 14px !important;
            border-radius: 8px !important;
        }

        .subscribe-left h5 {
            font-size: 13px !important;
            line-height: 1.3 !important;
        }

        .subscribe-left p {
            font-size: 11px !important;
            margin-top: 2px !important;
        }

    .subscribe-btn {
        min-width: 110px !important;
        height: 34px !important;
        padding: 0 12px !important;
        font-size: 11px !important;
        white-space: nowrap !important;
        line-height: 34px !important;
        border-radius: 8px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
}



