* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f0f0f0;
    color: #111;
}

a {
    color: #0037cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* =========================
   HEADER
========================= */
.top-header {
    background: #d60000;
    color: #fff;
    text-align: center;
    padding: 24px 12px;
}

.top-header h1 {
    margin: 0;
    font-size: 56px;
    font-weight: 800;
}

.top-header p {
    margin: 6px 0 0;
    font-size: 20px;
    font-weight: 700;
}

/* =========================
   NAVBAR
========================= */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #03036f;
    padding: 0 14px;
    position: sticky;
    top: 0;
    z-index: 20;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
}

.nav-links a,
.login-btn {
    display: block;
    color: #fff;
    padding: 16px 14px;
    font-weight: 700;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-icon {
    color: #fff;
    font-size: 26px;
}

.login-btn {
    background: #111d91;
    border-radius: 6px;
    padding: 10px 14px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
}

/* =========================
   PAGE LAYOUT
========================= */
.page-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 16px;
}

/* =========================
   HERO
========================= */
.hero {
    text-align: center;
    padding: 10px 0 20px;
}

.live-badge {
    display: inline-block;
    border: 2px solid #111;
    border-radius: 24px;
    padding: 4px 12px;
    font-weight: 700;
    margin: 10px 0;
}

.hero-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.btn,
.social {
    display: inline-block;
    padding: 12px 18px;
    border-radius: 12px;
    font-weight: 700;
}

.btn.green,
.social.wa {
    background: #28c25f;
    color: #fff;
}

.social.tg {
    background: #0d84d8;
    color: #fff;
}

.tools-link {
    font-size: 18px;
    font-weight: 700;
}

/* =========================
   HIGHLIGHT CARDS
========================= */
.highlight-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin: 18px 0;
}

.highlight-card {
    border-radius: 6px;
    padding: 18px 14px;
    text-align: center;
    min-height: 92px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-weight: 700;
}

.highlight-card .icon {
    font-size: 26px;
    margin-bottom: 6px;
}

/* =========================
   HOME CATEGORY BOXES
   3 TOP + 3 BOTTOM
========================= */
.category-grid {
    max-width: 1200px;
    margin: 30px auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    align-items: start;
}

.category-box {
    width: 100%;
    background: #ffffff;
    border: 1px solid #d8d8d8;
    min-height: 320px;
    display: flex;
    flex-direction: column;
}

.box-title {
    background: #b40000;
    color: #ffffff;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    padding: 10px 12px;
    line-height: 1.2;
}

.category-box ul,
.big-list,
.two-column-posts ul {
    margin: 0;
    padding: 16px 18px 8px 34px;
}

.category-list {
    margin: 0;
    padding: 14px 20px;
    flex: 1;
}

.category-list li {
    margin-bottom: 10px;
    line-height: 1.4;
}

.category-list li a {
    color: #0000cc;
    text-decoration: none;
}

.category-list li a:hover {
    text-decoration: underline;
}

.view-more {
    display: inline-block;
    align-self: flex-start;
    margin: 8px 16px 16px 18px;
    padding: 10px 16px;
    background: #2f6df6;
    color: #fff;
    border-radius: 20px;
    font-weight: 600;
    text-decoration: none;
}

.view-more:hover {
    background: #1f57cf;
    text-decoration: none;
}

/* =========================
   COMMON CONTENT BOXES
========================= */
.links-table-wrap,
.faq-box,
.list-page,
.post-page,
.instruction-box,
.related-topic-box,
.home-content,
.sr-home-info {
    background: #fff;
    border: 1px solid #d7d7d7;
    padding: 16px;
    margin: 18px 0;
}

.links-table,
.detail-table,
.link-table,
.faq-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.links-table td,
.detail-table th,
.detail-table td,
.link-table td,
.faq-table td,
.faq-table th {
    border: 1px solid #111;
    padding: 10px;
    vertical-align: top;
}

.links-table td {
    border: 1px solid #bbb;
    padding: 14px;
    text-align: center;
}

.faq-box h2,
.list-page h2,
.post-title {
    color: #1033a4;
}

.post-date {
    color: #d60000;
    font-weight: 700;
    margin-bottom: 14px;
}

.post-summary {
    font-size: 18px;
    line-height: 1.6;
    font-weight: 600;
}

.detail-table {
    margin: 16px 0;
}

.detail-table th {
    background: #670033;
    color: #fff;
    font-size: 18px;
}

.green-head {
    background: #046c2f !important;
}

.orange-head {
    background: #f25c05 !important;
}

.blue-head {
    background: #04046e !important;
    color: #fff;
}

.detail-table ul,
.instruction-box ul {
    margin: 0;
    padding-left: 22px;
}

.instruction-box h3,
.related-topic-box h3 {
    margin-top: 0;
    background: #04046e;
    color: #fff;
    padding: 8px 12px;
    display: inline-block;
}

.related-topic-box .topic-row {
    display: flex;
    justify-content: space-between;
    padding: 14px;
    border-top: 1px solid #ddd;
}

.link-table {
    margin: 16px 0;
}

.link-table td {
    background: #efe494;
    text-align: center;
    font-weight: 700;
}

.banner-wrap img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
}

.two-column-posts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    background: #fff;
    padding: 0;
    margin: 18px 0;
}

.disclaimer {
    font-size: 13px;
    line-height: 1.7;
}

/* =========================
   HOME EXTRA CONTENT SECTION
========================= */
.home-content {
    max-width: 1000px;
    margin: 40px auto;
    background: #fff;
    padding: 20px;
}

.home-content h2 {
    font-size: 20px;
    margin-bottom: 10px;
}

.home-content h3 {
    margin-top: 20px;
    color: #1a3a8f;
}

.center-title {
    text-align: center;
    color: red;
}

.disclaimer-text {
    font-size: 14px;
    color: #555;
}

.faq-title {
    margin-top: 25px;
}

/* =========================
   SARKARI STYLE BOTTOM HOME SECTION
========================= */
.sr-home-info {
    max-width: 1120px;
    margin: 25px auto 30px;
    background: #f7f7f7;
    border: 1px solid #cfcfcf;
    padding: 10px 10px 0;
    text-align: center;
}

.sr-home-intro {
    font-size: 15px;
    line-height: 1.6;
    color: #111;
    margin: 0 0 10px;
}

.sr-home-intro a {
    color: #000;
    font-weight: 700;
    text-decoration: underline;
}

.sr-top-pages-title {
    margin: 6px 0 10px;
    font-size: 15px;
    font-weight: 700;
    color: green;
}

.sr-top-pages-title em {
    color: #c40000;
    font-style: italic;
    font-weight: 700;
}

.sr-top-pages-table {
    width: 72%;
    margin: 0 auto;
    border-collapse: collapse;
    background: #fff;
}

.sr-top-pages-table td {
    border: 1px solid #444;
    padding: 12px 10px;
    font-size: 15px;
    text-align: center;
}

.sr-top-pages-table td a {
    color: blue;
    text-decoration: none;
}

.sr-top-pages-table td a:hover {
    text-decoration: underline;
}

.sr-info-block {
    margin-top: 0;
}

.sr-info-heading {
    background: #b80000;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    padding: 8px 10px;
    margin-top: 0;
}

.sr-info-content {
    background: #fff;
    color: #111;
    font-size: 15px;
    line-height: 1.7;
    padding: 14px 18px;
    border-left: 1px solid #d0d0d0;
    border-right: 1px solid #d0d0d0;
    border-bottom: 1px solid #d0d0d0;
}

.sr-final-note {
    margin: 0;
    padding: 14px 26px 18px 40px;
    text-align: left;
    background: #fff;
    border-left: 1px solid #d0d0d0;
    border-right: 1px solid #d0d0d0;
    border-bottom: 1px solid #d0d0d0;
}

.sr-final-note li {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.7;
    color: #111;
}

.sr-final-note a {
    color: blue;
    text-decoration: underline;
}

/* =========================
   PRIVACY POLICY
========================= */
.policy-wrapper {
    display: flex;
    justify-content: center;
    padding: 40px 15px;
    background: #f2f2f2;
}

.policy-card {
    max-width: 800px;
    width: 100%;
    background: #fff;
    padding: 25px;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.policy-card h1 {
    color: #1a3a8f;
    margin-bottom: 15px;
}

.policy-card h2 {
    margin-top: 20px;
    color: #333;
}

.policy-card p {
    font-size: 14px;
    line-height: 1.6;
    margin-top: 10px;
}

.policy-card ul {
    margin-top: 10px;
    padding-left: 20px;
}

.policy-card ul li {
    margin-bottom: 6px;
}

.brand-name {
    text-align: center;
    color: blue;
    margin-top: 25px;
}

/* =========================
   DISCLAIMER PAGE
========================= */
.disclaimer-wrapper {
    display: flex;
    justify-content: center;
    padding: 30px 15px 50px;
    background: #f2f2f2;
}

.disclaimer-card {
    width: 100%;
    max-width: 900px;
    background: #fff;
    padding: 20px 10px 30px;
}

.disclaimer-card h1 {
    color: #1a2f8f;
    font-size: 34px;
    margin: 0 0 20px;
}

.disclaimer-block {
    max-width: 760px;
    margin: 0 auto 28px;
    text-align: center;
    line-height: 1.7;
    font-size: 16px;
    color: #222;
}

.hindi-block {
    border-left: 3px solid #e5e5e5;
    padding-left: 18px;
}

.site-blue {
    color: #1a2f8f;
}

.team-name {
    font-weight: 700;
    font-style: italic;
    margin-top: 10px;
}

/* =========================
   FOOTER
========================= */
.site-footer {
    background: #1f1f1f;
    color: #fff;
    margin-top: 30px;
}

.social-row {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    padding: 12px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    padding: 18px 16px;
}

.footer-links a {
    color: #fff;
    margin-left: 12px;
}

/* =========================
   UTILITIES
========================= */
.top-gap {
    margin-top: 18px;
}

.narrow-gap {
    margin-top: 10px;
}

.app-link {
    color: #d60000;
    font-weight: 700;
}

/* =========================
   ADMIN
========================= */
.admin-shell {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
}

.admin-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.admin-card {
    background: #fff;
    border: 1px solid #ddd;
    padding: 16px;
}

.admin-card h3 {
    margin-top: 0;
}

.admin-actions a,
.inline-actions a,
.inline-actions button {
    display: inline-block;
    margin-right: 8px;
    margin-top: 8px;
    padding: 8px 12px;
    background: #0d84d8;
    color: #fff;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    cursor: pointer;
}

.admin-actions a.delete,
.inline-actions .delete {
    background: #c62828;
}

.table-wrap {
    overflow: auto;
    background: #fff;
    border: 1px solid #ddd;
    padding: 12px;
}

table.admin-table {
    width: 100%;
    border-collapse: collapse;
}

table.admin-table th,
table.admin-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

form.admin-form {
    background: #fff;
    padding: 18px;
    border: 1px solid #ddd;
}

.admin-form input,
.admin-form textarea,
.admin-form select {
    width: 100%;
    padding: 10px;
    margin: 6px 0 12px;
    border: 1px solid #bbb;
    border-radius: 4px;
}

.row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.repeater {
    border: 1px dashed #bbb;
    padding: 12px;
    margin-bottom: 12px;
    background: #fafafa;
}

.repeater-item {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 8px;
    margin-bottom: 8px;
}

.repeater-item.single {
    grid-template-columns: 1fr auto;
}

.flash {
    background: #dcf8dc;
    color: #0d5b0d;
    padding: 10px;
    border: 1px solid #8cc68c;
    margin-bottom: 14px;
}

.error {
    background: #ffe4e4;
    color: #8b0000;
    padding: 10px;
    border: 1px solid #d99;
}

.login-page {
    max-width: 420px;
    margin: 60px auto;
    background: #fff;
    padding: 22px;
    border: 1px solid #ddd;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1024px) {

    .highlight-grid,
    .admin-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .top-header h1 {
        font-size: 42px;
    }
}

@media (max-width: 992px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .sr-top-pages-table {
        width: 100%;
    }

    .sr-info-heading {
        font-size: 18px;
    }

    .sr-info-content {
        font-size: 14px;
        padding: 12px;
    }

    .sr-home-intro {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .disclaimer-card h1 {
        font-size: 28px;
    }

    .disclaimer-block {
        font-size: 15px;
        text-align: left;
    }

    .hindi-block {
        padding-left: 12px;
    }
}

@media (max-width: 767px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 58px;
        background: #03036f;
        flex-direction: column;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        border-top: 1px solid rgba(255, 255, 255, .1);
    }

    .highlight-grid,
    .category-grid,
    .admin-grid,
    .two-column-posts,
    .row-2 {
        grid-template-columns: 1fr;
    }

    .top-header h1 {
        font-size: 34px;
    }

    .top-header p {
        font-size: 16px;
    }

    .page-container {
        padding: 10px;
    }

    .repeater-item {
        grid-template-columns: 1fr;
    }

    .footer-links a {
        margin-left: 0;
        margin-right: 10px;
    }
}

@media (max-width: 640px) {
    .category-grid {
        grid-template-columns: 1fr;
    }

    .box-title {
        font-size: 18px;
    }

    .category-box {
        min-height: auto;
    }

    .sr-home-info {
        padding: 8px 8px 0;
    }

    .sr-top-pages-table td {
        font-size: 13px;
        padding: 10px 6px;
    }

    .sr-info-heading {
        font-size: 16px;
        padding: 8px 6px;
    }

    .sr-info-content {
        font-size: 13px;
        line-height: 1.6;
    }

    .sr-final-note {
        padding: 12px 16px 16px 28px;
    }

    .sr-final-note li {
        font-size: 13px;
    }
}


/* =========================
   HERO SECTION
========================= */
.hero {
    text-align: center;
    padding: 12px 0 22px;
}

.hero-text {
    margin: 0;
    font-size: 18px;
    line-height: 1.35;
    color: #111;
}

.hero-text strong {
    font-weight: 700;
}

.live-wrap {
    margin-top: 8px;
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 2px solid #111;
    border-radius: 20px;
    padding: 3px 12px;
    font-weight: 700;
    font-size: 14px;
    background: #fff;
    line-height: 1;
}

.live-dot {
    width: 10px;
    height: 10px;
    background: #e51b23;
    border-radius: 50%;
    display: inline-block;
}

.hero-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
}

.btn.green,
.social.wa {
    background: #29cc5f;
    color: #fff;
}

.btn.green:hover {
    background: #22b352;
    text-decoration: none;
}

.whatsapp-btn {
    font-size: 16px;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

.wa-icon {
    font-size: 16px;
    line-height: 1;
}

.hero-tools-wrap {
    margin-top: 16px;
}

.tools-link {
    font-size: 20px;
    font-weight: 700;
    color: #0b27c9;
    text-decoration: underline;
}

.tools-link:hover {
    color: #001ea8;
}

/* Responsive */
@media (max-width: 767px) {
    .hero {
        padding: 10px 0 18px;
    }

    .hero-text {
        font-size: 15px;
        line-height: 1.5;
    }

    .hero-actions {
        margin-top: 20px;
    }

    .btn {
        padding: 11px 18px;
        font-size: 15px;
    }

    .tools-link {
        font-size: 18px;
    }
}

/* =========================
   PREMIUM ADMIN DASHBOARD
========================= */

.premium-admin-body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0) 30%),
        linear-gradient(135deg, #eef4ff 0%, #f8fbff 45%, #eef2f7 100%);
    min-height: 100vh;
}

.premium-admin-shell {
    max-width: 1320px;
    margin: 0 auto;
    padding: 30px 22px 40px;
}

.premium-admin-header {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 24px;
    flex-wrap: wrap;
    padding: 28px;
    border-radius: 24px;
    background: linear-gradient(135deg, #0f2f7d 0%, #173f9e 45%, #2654c4 100%);
    color: #fff;
    box-shadow: 0 18px 45px rgba(22, 54, 122, 0.22);
    margin-bottom: 24px;
}

.premium-admin-header-left {
    flex: 1 1 500px;
}

.premium-admin-kicker {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    margin-bottom: 14px;
}

.premium-admin-header h1 {
    margin: 0 0 10px;
    font-size: 42px;
    line-height: 1.1;
    font-weight: 800;
}

.premium-admin-header p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    max-width: 720px;
}

.premium-admin-header-right {
    min-width: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
}

.premium-user-box {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    padding: 16px 18px;
    backdrop-filter: blur(8px);
}

.premium-user-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.78);
}

.premium-user-box strong {
    font-size: 20px;
    color: #fff;
}

.premium-header-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.premium-btn {
    display: inline-block;
    padding: 12px 18px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.22s ease;
    border: 1px solid transparent;
    text-align: center;
}

.premium-btn:hover {
    text-decoration: none;
    transform: translateY(-1px);
}

.premium-btn-primary {
    background: linear-gradient(135deg, #0c87dd 0%, #1f9eff 100%);
    color: #fff;
    box-shadow: 0 10px 20px rgba(12, 135, 221, 0.22);
}

.premium-btn-primary:hover {
    background: linear-gradient(135deg, #0a77c2 0%, #198be2 100%);
}

.premium-btn-secondary {
    background: #f5f8ff;
    color: #173a8a;
    border-color: #d7e2ff;
}

.premium-btn-secondary:hover {
    background: #e8f0ff;
}

.premium-btn-light {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}

.premium-btn-light:hover {
    background: rgba(255, 255, 255, 0.2);
}

.premium-btn-danger {
    background: linear-gradient(135deg, #d63333 0%, #b71c1c 100%);
    color: #fff;
    box-shadow: 0 10px 20px rgba(183, 28, 28, 0.22);
}

.premium-btn-danger:hover {
    background: linear-gradient(135deg, #bf2c2c 0%, #9f1818 100%);
}

.premium-alert {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #fff8ea;
    border: 1px solid #f1d49b;
    border-left: 5px solid #e3a600;
    color: #775300;
    padding: 16px 18px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(180, 140, 40, 0.08);
    margin-bottom: 24px;
}

.premium-alert-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #e3a600;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex-shrink: 0;
}

.premium-alert p {
    margin: 6px 0 0;
    line-height: 1.6;
}

.premium-section-head {
    margin-bottom: 16px;
    padding: 0 4px;
}

.premium-section-head h2 {
    margin: 0 0 8px;
    font-size: 28px;
    color: #132d75;
}

.premium-section-head p {
    margin: 0;
    color: #5e6780;
    font-size: 15px;
}

.premium-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.premium-dashboard-card {
    position: relative;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid #dfe7f7;
    border-radius: 22px;
    padding: 22px;
    box-shadow: 0 14px 32px rgba(20, 40, 90, 0.08);
    transition: all 0.25s ease;
    overflow: hidden;
}

.premium-dashboard-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #0b84dd 0%, #2748d0 100%);
}

.premium-dashboard-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(20, 40, 90, 0.13);
}

.premium-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 14px;
}

.premium-card-top h3 {
    margin: 0 0 6px;
    font-size: 28px;
    color: #111b4d;
    line-height: 1.2;
}

.premium-card-slug {
    display: inline-block;
    font-size: 12px;
    color: #5e76b5;
    background: #edf3ff;
    border: 1px solid #d8e5ff;
    padding: 6px 10px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
}

.premium-card-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: linear-gradient(135deg, #eef3ff 0%, #dce8ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.premium-card-text {
    margin: 0 0 22px;
    color: #5b657c;
    font-size: 15px;
    line-height: 1.75;
    min-height: 52px;
}

.premium-card-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.premium-highlight-card {
    background: linear-gradient(180deg, #fffdf8 0%, #ffffff 100%);
    border-color: #ecd9aa;
}

.premium-highlight-card::before {
    background: linear-gradient(90deg, #ff9800 0%, #ff6f00 100%);
}

/* Responsive */
@media (max-width: 1180px) {
    .premium-dashboard-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 860px) {
    .premium-admin-header {
        padding: 22px;
    }

    .premium-admin-header h1 {
        font-size: 34px;
    }

    .premium-dashboard-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .premium-admin-shell {
        padding: 18px 14px 30px;
    }

    .premium-admin-header {
        border-radius: 18px;
        padding: 18px;
    }

    .premium-admin-header h1 {
        font-size: 28px;
    }

    .premium-header-actions,
    .premium-card-actions {
        width: 100%;
    }

    .premium-btn {
        width: 100%;
    }

    .premium-card-top h3 {
        font-size: 24px;
    }
}


/* =========================
   CATEGORY PAGES UI
========================= */
.sr-category-page {
    max-width: 1060px;
    margin: 0 auto 24px;
    background: #fff;
    padding: 8px 8px 20px;
}

.sr-category-title {
    font-size: 64px;
    line-height: 1.1;
    color: #102c9c;
    margin: 6px 0 18px;
    font-weight: 500;
}

.sr-category-intro {
    font-size: 17px;
    line-height: 1.65;
    color: #111;
}

.sr-category-intro p {
    margin: 0 0 8px;
}

.sr-category-intro a {
    color: #1b27c9;
    font-weight: 700;
}

.sr-category-bilingual {
    margin: 6px 0 0 22px;
    padding: 0;
}

.sr-category-bilingual li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.sr-category-redbar {
    margin-top: 12px;
    background: #b50000;
    color: #fff;
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    padding: 8px 10px;
}

.sr-category-list {
    margin: 0;
    padding: 14px 24px 0 38px;
    background: #fff;
}

.sr-category-list li {
    margin-bottom: 12px;
    font-size: 18px;
    line-height: 1.5;
}

.sr-category-list li a {
    color: #0000cc;
    text-decoration: none;
}

.sr-category-list li a:hover {
    text-decoration: underline;
}

@media (max-width: 900px) {
    .sr-category-title {
        font-size: 48px;
    }

    .sr-category-intro {
        font-size: 16px;
    }

    .sr-category-redbar {
        font-size: 24px;
    }

    .sr-category-list li {
        font-size: 17px;
    }
}

@media (max-width: 640px) {
    .sr-category-page {
        padding: 6px 6px 16px;
    }

    .sr-category-title {
        font-size: 38px;
        margin-bottom: 14px;
    }

    .sr-category-intro {
        font-size: 15px;
    }

    .sr-category-redbar {
        font-size: 20px;
        padding: 8px 6px;
    }

    .sr-category-list {
        padding: 12px 18px 0 28px;
    }

    .sr-category-list li {
        font-size: 15px;
        margin-bottom: 10px;
    }
}


.nested-display-block {
    margin-bottom: 14px;
}

.nested-display-title {
    font-weight: 700;
    color: #0f2d7a;
    margin-bottom: 6px;
}

.nested-display-list {
    margin: 0;
    padding-left: 22px;
}

.nested-display-list li {
    margin-bottom: 6px;
    line-height: 1.5;
}