/* ============================================================
   NE Employment MCQ - Core Stylesheet
   Theme: Light, professional, blue accent (AssamTest-inspired)
   No dark mode.
   ============================================================ */

:root {
  --bg-page: #f7f9fc;       /* main page background */
  --bg-alt: #eef2f7;        /* alternate section background */
  --bg-card: #ffffff;       /* card / surface background */
  --border-soft: #e2e8f0;   /* subtle borders */
  --primary: #2b6cb0;       /* AssamTest blue */
  --primary-light: #4299e1;
  --primary-dark: #1e4e7d;
  --text-main: #1a202c;
  --text-muted: #64748b;
  --success: #16a34a;
  --danger: #dc2626;
  --radius: 14px;
  --shadow: 0 6px 20px rgba(15, 23, 42, 0.07);

  /* Legacy variable names kept so existing inline styles keep working */
  --navy-950: var(--bg-page);
  --navy-900: var(--bg-alt);
  --navy-800: var(--bg-card);
  --navy-700: var(--border-soft);
  --gold: var(--primary);
  --gold-light: var(--primary-light);
  --text-light: var(--text-main);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg-page);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ---------- Header & Navigation ---------- */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-soft);
}
.header-inner {
  position: relative;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
}
.logo {
  font-size: 20px; font-weight: 800; color: var(--primary); letter-spacing: 0.2px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  flex-shrink: 1; min-width: 0;
}
.main-nav { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.main-nav a { color: var(--text-muted); font-weight: 500; transition: color .2s; white-space: nowrap; }
.main-nav a:hover { color: var(--primary); }
.nav-refer-link { color: #d97706 !important; font-weight: 800; }
.nav-refer-btn { background: #fffbe3; border: 1.5px solid #fde68a; color: #b45309 !important; font-weight: 800; }
.btn-refer-mobile { background: #fffbe3; border: 1.5px solid #fde68a; color: #b45309 !important; font-weight: 800; margin-bottom: 8px; }

.header-actions { display: flex; gap: 10px; flex-shrink: 0; }
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer; flex-shrink: 0;
  padding: 8px; width: 40px; height: 40px; border-radius: 8px;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  transition: background-color .2s;
}
.nav-toggle:hover, .nav-toggle:focus { background-color: rgba(43, 108, 176, 0.08); outline: none; }
.hamburger-bar {
  display: block; width: 22px; height: 2.5px; background-color: var(--text-main);
  border-radius: 2px; transition: transform .3s ease, opacity .3s ease, background-color .3s ease;
}
.nav-toggle.active .hamburger-bar:nth-child(1) { transform: translateY(7.5px) rotate(45deg); background-color: var(--primary); }
.nav-toggle.active .hamburger-bar:nth-child(2) { opacity: 0; }
.nav-toggle.active .hamburger-bar:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); background-color: var(--primary); }

.nav-backdrop {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  transition: opacity .3s ease;
}
.nav-backdrop.open {
  display: block;
  opacity: 1;
}

body.nav-open {
  overflow: hidden;
}
.nav-auth-mobile, .mobile-nav-header { display: none; }

.btn {
  padding: 10px 20px; border-radius: 8px; font-weight: 600; font-size: 14px;
  border: none; cursor: pointer; display: inline-block; transition: all .2s;
  text-decoration: none !important;
}
.btn-primary,
.btn-primary:link,
.btn-primary:visited,
.main-nav a.btn-primary,
.header-actions a.btn-primary,
.site-header a.btn-primary {
  background: var(--primary) !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.main-nav a.btn-primary:hover,
.header-actions a.btn-primary:hover,
.site-header a.btn-primary:hover {
  background: var(--primary-dark) !important;
  color: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(43,108,176,0.3);
}
.btn-outline,
.btn-outline:link,
.btn-outline:visited,
.main-nav a.btn-outline,
.header-actions a.btn-outline,
.site-header a.btn-outline {
  border: 1px solid var(--primary) !important;
  color: var(--primary) !important;
  background: #ffffff !important;
}
.btn-outline:hover,
.btn-outline:focus,
.btn-outline:active,
.main-nav a.btn-outline:hover,
.header-actions a.btn-outline:hover,
.site-header a.btn-outline:hover {
  background: rgba(43,108,176,0.08) !important;
  color: var(--primary-dark) !important;
}
.btn-block { width: 100%; text-align: center; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  padding: 70px 0 60px;
  background: linear-gradient(180deg, #eaf2fb 0%, var(--bg-page) 100%);
  text-align: center;
}
.hero-badge {
  display: inline-block; background: #e6f4ea; color: var(--success);
  padding: 6px 16px; border-radius: 20px; font-size: 13px; font-weight: 600; margin-bottom: 18px;
}
.hero h1 { font-size: 44px; font-weight: 800; max-width: 800px; margin: 0 auto 18px; color: var(--text-main); }
.hero h1 span { color: var(--primary); }
.hero p { color: var(--text-muted); max-width: 620px; margin: 0 auto 32px; font-size: 17px; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-stats { display: flex; justify-content: center; gap: 50px; margin-top: 50px; flex-wrap: wrap; }
.hero-stats div { text-align: center; }
.hero-stats strong { display: block; font-size: 28px; color: var(--primary); font-weight: 800; }
.hero-stats span { color: var(--text-muted); font-size: 14px; }

/* ---------- Sample MCQ Widget (homepage demo) ---------- */
.sample-mcq {
  background: var(--bg-card); border: 1px solid var(--border-soft); border-radius: var(--radius);
  box-shadow: var(--shadow); max-width: 620px; margin: 40px auto 0; padding: 26px; text-align: left;
}
.sample-mcq-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.sample-mcq-head h4 { font-size: 15px; color: var(--text-muted); }
.lang-toggle { display: inline-flex; border: 1px solid var(--border-soft); border-radius: 20px; overflow: hidden; }
.lang-toggle button {
  border: none; background: #fff; color: var(--text-muted); padding: 6px 16px; font-size: 13px; font-weight: 600; cursor: pointer;
}
.lang-toggle button.active { background: var(--primary); color: #fff; }
.sample-mcq-tag { font-size: 12px; color: var(--primary); font-weight: 700; margin-bottom: 10px; }
.sample-mcq-q { font-size: 17px; margin-bottom: 16px; font-weight: 600; }
.sample-mcq-opt {
  display: block; padding: 12px 16px; border: 1px solid var(--border-soft); border-radius: 10px;
  margin-bottom: 10px; font-size: 14px; cursor: pointer; transition: all .15s;
}
.sample-mcq-opt:hover { border-color: var(--primary); background: rgba(43,108,176,0.05); }

/* ---------- Sections ---------- */
.section { padding: 60px 0; }
.section-alt { background: var(--bg-alt); }
.section-head { text-align: center; margin-bottom: 36px; }
.section-head h2 { font-size: 30px; font-weight: 800; }
.section-head p { color: var(--text-muted); margin-top: 8px; }
.section-head-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.section-head-row h2 { font-size: 26px; font-weight: 800; }
.section-head-row a { color: var(--primary); font-weight: 600; font-size: 14px; }

/* ---------- Cards / Grid ---------- */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 10px 26px rgba(15,23,42,0.1); }
.card h3 { margin-bottom: 8px; font-size: 17px; }
.card p { color: var(--text-muted); font-size: 14px; }
.card-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(43,108,176,0.1); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 14px;
}

/* ---------- Pricing ---------- */
.price-card { text-align: center; position: relative; }
.price-card.featured { border-color: var(--primary); border-width: 2px; }
.price-card .price { font-size: 34px; font-weight: 800; color: var(--primary); margin: 12px 0; }
.price-card .price small { font-size: 13px; color: var(--text-muted); font-weight: 400; }
.price-card ul { margin: 18px 0; text-align: left; }
.price-card li { padding: 5px 0; color: var(--text-muted); font-size: 14px; }
.badge {
  position: absolute; top: -12px; right: 20px;
  background: var(--primary); color: #fff;
  padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 700;
}

/* ---------- Forms ---------- */
.auth-wrap { min-height: 70vh; display: flex; align-items: center; justify-content: center; padding: 60px 20px; }
.auth-box {
  background: var(--bg-card); border: 1px solid var(--border-soft);
  border-radius: var(--radius); padding: 40px; width: 100%; max-width: 420px; box-shadow: var(--shadow);
}
.auth-box h2 { margin-bottom: 6px; }
.auth-box p.subtitle { color: var(--text-muted); font-size: 14px; margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; margin-bottom: 6px; font-size: 14px; color: var(--text-muted); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 11px 14px; border-radius: 8px;
  border: 1px solid var(--border-soft); background: #fff; color: var(--text-main); font-size: 14px;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(43,108,176,0.12);
}
.form-footer { text-align: center; margin-top: 18px; font-size: 14px; color: var(--text-muted); }
.form-footer a { color: var(--primary); font-weight: 600; }

/* ---------- MCQ Images (question + option images, auto-responsive) ---------- */
.mcq-question-image {
  max-width: 100%; width: auto; height: auto; max-height: 320px;
  border-radius: 10px; margin: 14px 0; display: block;
  border: 1px solid var(--border-soft); object-fit: contain;
}
.mcq-option-image {
  max-width: 100%; width: 100%; height: auto; max-height: 160px;
  border-radius: 8px; margin-bottom: 8px; display: block;
  border: 1px solid var(--border-soft); object-fit: contain; background: #fff;
}

.alert { padding: 12px 16px; border-radius: 8px; margin-bottom: 18px; font-size: 14px; }
.alert-error { background: #fdecea; color: #b91c1c; border: 1px solid #fbd5d5; }
.alert-success { background: #eafaf0; color: #15803d; border: 1px solid #bbf0d1; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-alt); border-top: 1px solid var(--border-soft); padding: 50px 0 0; margin-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 30px; padding-bottom: 30px; }
.footer-col h3 { color: var(--primary); margin-bottom: 10px; }
.footer-col h4 { margin-bottom: 14px; font-size: 15px; }
.footer-col a { display: block; color: var(--text-muted); font-size: 14px; margin-bottom: 8px; }
.footer-col a:hover { color: var(--primary); }
.footer-bottom { text-align: center; padding: 18px 0; border-top: 1px solid var(--border-soft); color: var(--text-muted); font-size: 13px; }

/* ---------- Digital Products / Store ---------- */
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.product-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.product-cover-wrap { width: 100%; aspect-ratio: 16 / 10; background: var(--bg-alt); overflow: hidden; }
.product-cover-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-cover-wrap.no-image { display: flex; align-items: center; justify-content: center; font-size: 34px; }
.product-body { padding: 18px; display: flex; flex-direction: column; flex: 1; }
.product-type-badge {
  display: inline-block; background: rgba(43,108,176,0.1); color: var(--primary);
  font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 20px; margin-bottom: 10px; width: fit-content;
}
.product-body h3 { font-size: 16px; margin-bottom: 6px; }
.product-body p.desc { color: var(--text-muted); font-size: 13px; margin-bottom: 12px; flex: 1; }
.product-price-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 14px; }
.product-price-row .price-now { font-size: 20px; font-weight: 800; color: var(--primary); }
.product-price-row .price-old { font-size: 13px; color: var(--text-muted); text-decoration: line-through; }
.product-price-row .price-free { font-size: 16px; font-weight: 800; color: var(--success); }

/* ---------- Homepage Digital Products (Screenshot Style) ---------- */
.dp-home-section { padding: 30px 0 40px; background: #fff; }

/* Header row */
.dp-home-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 18px; padding-bottom: 10px;
  border-bottom: 1px solid var(--border-soft);
}
.dp-home-label {
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
  color: var(--text-muted); text-transform: uppercase;
}
.dp-home-viewall {
  font-size: 13px; font-weight: 600; color: var(--primary);
  display: flex; align-items: center; gap: 2px;
}
.dp-home-viewall:hover { text-decoration: underline; }

/* 2-column grid on desktop/tablet, 1-column on mobile */
.dp-home-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

/* Each product card */
.dp-home-card {
  display: block;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(15,23,42,0.06);
  transition: box-shadow .2s, transform .2s;
  text-decoration: none;
  color: inherit;
}
.dp-home-card:hover {
  box-shadow: 0 8px 24px rgba(43,108,176,0.14);
  transform: translateY(-3px);
}

/* Cover image area — full width, tall banner */
.dp-home-cover {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--bg-alt);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.dp-home-cover img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .3s;
}
.dp-home-card:hover .dp-home-cover img { transform: scale(1.03); }
.dp-home-cover-placeholder {
  font-size: 48px;
  background: var(--bg-alt);
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}

/* Info below image */
.dp-home-info {
  padding: 14px 16px 16px;
}
.dp-home-title {
  font-size: 15px; font-weight: 700;
  color: var(--text-main); margin-bottom: 8px;
  line-height: 1.4;
}
.dp-home-price-row {
  display: flex; align-items: baseline; gap: 8px;
}
.dp-home-price-now {
  font-size: 18px; font-weight: 800; color: var(--primary);
}
.dp-home-price-old {
  font-size: 13px; color: var(--text-muted);
  text-decoration: line-through;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .header-inner { padding: 10px 14px; gap: 8px; justify-content: space-between; }
  .logo { font-size: 18px; font-weight: 800; }
  .header-actions { display: flex; align-items: center; gap: 6px; }
  .header-actions .btn { padding: 7px 14px; font-size: 13px; border-radius: 8px; }
  .header-actions .btn-hide-mobile { display: none !important; }
  .nav-toggle { display: flex; }

  .main-nav {
    position: fixed;
    top: 61px;
    left: 10px;
    right: 10px;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    align-items: stretch;
    gap: 0;
    padding: 8px 12px 14px;
    display: flex;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.22), 0 4px 12px rgba(15, 23, 42, 0.08);
    max-height: calc(100vh - 75px);
    overflow-y: auto;
    z-index: 999;

    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.98);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    pointer-events: none;
  }
  .main-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }
  .mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 4px 8px 6px;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 4px;
    width: 100%;
    box-sizing: border-box;
  }
  .mobile-nav-title {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--text-main);
  }
  .nav-close-btn {
    background: #f1f5f9;
    border: none;
    color: var(--text-muted);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  .nav-close-btn:hover, .nav-close-btn:active {
    background: #fee2e2;
    color: var(--danger);
  }
  .main-nav > a {
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background .15s ease, color .15s ease;
    border-bottom: 1px solid #f8fafc;
    width: 100%;
    box-sizing: border-box;
  }
  .main-nav > a:last-of-type {
    border-bottom: none;
  }
  .main-nav > a:hover, .main-nav > a:active {
    background: #f8fafc;
    color: var(--primary);
  }
  .btn-refer-mobile {
    padding: 8px 10px !important;
    font-size: 12.5px !important;
    margin-bottom: 6px !important;
    border-radius: 8px !important;
  }
  .nav-auth-mobile {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 6px;
    padding-top: 8px;
    border-top: 1.5px solid #f1f5f9;
    width: 100%;
    box-sizing: border-box;
  }
  .nav-auth-mobile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    width: 100%;
  }
  .nav-auth-mobile .btn {
    padding: 8px 10px;
    font-size: 13px;
    border-radius: 8px;
    font-weight: 700;
  }
}

@media (max-width: 640px) {

  .hero { padding: 36px 0 40px; }
  .hero-badge { font-size: 12px; padding: 5px 12px; }
  .hero h1 { font-size: 25px; line-height: 1.35; margin-bottom: 14px; }
  .hero p { font-size: 14.5px; margin-bottom: 24px; }
  .hero-actions { flex-direction: column; width: 100%; gap: 10px; }
  .hero-actions .btn { width: 100%; }
  .hero-stats { gap: 22px; margin-top: 36px; }
  .hero-stats strong { font-size: 21px; }
  .hero-stats span { font-size: 12px; }
  .sample-mcq { padding: 18px; margin-top: 26px; }
  .sample-mcq-head h4 { font-size: 13px; }

  .section { padding: 40px 0; }
  .section-head h2 { font-size: 22px; }
  .section-head-row h2 { font-size: 20px; }
  .card { padding: 18px; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section-head-row { flex-direction: column; align-items: flex-start; gap: 10px; }
  .auth-box { padding: 26px 22px; }

  /* Digital Products homepage — single column on mobile */
  .dp-home-grid { grid-template-columns: 1fr; }
  .dp-home-cover { aspect-ratio: 16 / 8; }
}

/* ============================================================
   ASSAMTEST EXACT HOMEPAGE DESIGN SYSTEM
   ============================================================ */

/* ---------- Hero Section ---------- */
.at-hero {
  background: #1e5ab6;
  color: #ffffff;
  padding: 50px 0 0;
}
.at-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  padding-bottom: 50px;
}
.at-hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}
.at-hero-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.at-hero-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 520px;
}
.at-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.at-btn-hero-primary {
  background: #ffffff;
  color: #1e5ab6;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.at-btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.at-btn-hero-outline {
  background: rgba(255,255,255,0.12);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: background .2s;
}
.at-btn-hero-outline:hover {
  background: rgba(255,255,255,0.22);
}

/* Hero Widget (Sample MCQ) */
.at-widget-card {
  background: #ffffff;
  color: var(--text-main);
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}
.at-widget-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.at-widget-label {
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.at-widget-lang-toggle {
  display: inline-flex;
  border: 1px solid #cbd5e1;
  border-radius: 20px;
  overflow: hidden;
}
.at-widget-lang-toggle button {
  border: none;
  background: #fff;
  color: #64748b;
  padding: 4px 14px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}
.at-widget-lang-toggle button.active {
  background: #1e5ab6;
  color: #ffffff;
}
.at-widget-subtitle {
  font-size: 12px;
  color: #1e5ab6;
  font-weight: 600;
  margin-bottom: 14px;
}
.at-widget-question {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 16px;
  line-height: 1.4;
}
.at-widget-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.at-widget-opt {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  cursor: pointer;
  transition: all .15s;
  background: #f8fafc;
}
.at-widget-opt:hover {
  border-color: #1e5ab6;
  background: #eff6ff;
}
.at-opt-badge {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #e2e8f0;
  color: #475569;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.at-opt-text {
  font-size: 14px;
  font-weight: 500;
}
.at-widget-footer {
  margin-top: 14px;
  font-size: 12px;
  color: #94a3b8;
  text-align: center;
}

/* Stats Bar */
.at-stats-bar {
  background: #17448c;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px 0;
}
.at-stats-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.at-stat-item {
  text-align: center;
  color: #ffffff;
}
.at-stat-item strong {
  display: block;
  font-size: 24px;
  font-weight: 800;
}
.at-stat-item span {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}

/* ---------- Common Section Styles ---------- */
.at-section {
  padding: 40px 0;
}
.at-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e2e8f0;
}
.at-section-title {
  font-size: 13px;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.at-section-link {
  font-size: 13px;
  font-weight: 600;
  color: #1e5ab6;
}
.at-section-link:hover {
  text-decoration: underline;
}

/* Grids & Splits */
.at-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.at-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.at-split-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 30px;
  align-items: start;
}
.at-split-half {
  display: flex;
  flex-direction: column;
}

/* Organization & Subject Cards */
.at-org-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 16px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: transform .15s, box-shadow .15s, border-color .15s;
  min-width: 0;
}
.at-org-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  border-color: #1e5ab6;
}
.at-org-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #eff6ff;
  color: #1e5ab6;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.at-org-info {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
.at-org-info h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.at-org-info p {
  font-size: 12px;
  color: #64748b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.at-chevron {
  font-size: 18px;
  color: #cbd5e1;
  flex-shrink: 0;
}

/* Test List Items */
.at-list-tests {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.at-test-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 16px 18px;
  text-decoration: none;
  color: inherit;
  transition: border-color .15s, box-shadow .15s;
}
.at-test-item:hover {
  border-color: #1e5ab6;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.at-test-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: #eff6ff;
  color: #1e5ab6;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.at-test-info {
  flex: 1;
}
.at-test-info h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 2px;
}
.at-test-info p {
  font-size: 12px;
  color: #64748b;
}

/* Leaderboard Card */
.at-leaderboard-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.at-lb-winner-banner {
  background: #fef3c7;
  border-bottom: 1px solid #fde68a;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.at-lb-winner-icon {
  font-size: 24px;
}
.at-lb-winner-banner strong {
  display: block;
  font-size: 14px;
  color: #92400e;
}
.at-lb-winner-banner span {
  font-size: 12px;
  color: #b45309;
}
.at-lb-list {
  display: flex;
  flex-direction: column;
}
.at-lb-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-bottom: 1px solid #f1f5f9;
}
.at-lb-rank {
  font-size: 14px;
  font-weight: 700;
  color: #94a3b8;
  width: 16px;
}
.at-lb-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e0f2fe;
  color: #0369a1;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.at-lb-user {
  flex: 1;
}
.at-lb-user strong {
  display: block;
  font-size: 14px;
  color: var(--text-main);
}
.at-lb-user span {
  font-size: 11px;
  color: #94a3b8;
}
.at-lb-score {
  font-weight: 800;
  font-size: 14px;
  color: var(--text-main);
}
.at-lb-footer {
  padding: 12px 18px;
  font-size: 12px;
  color: #64748b;
  background: #f8fafc;
}

/* Current Affairs List */
.at-pill-toggle {
  display: inline-flex;
  border: 1px solid #cbd5e1;
  border-radius: 20px;
  overflow: hidden;
}
.at-pill-toggle button {
  border: none;
  background: #fff;
  color: #64748b;
  padding: 3px 12px;
  font-size: 12px;
  cursor: pointer;
}
.at-pill-toggle button.active {
  background: #1e5ab6;
  color: #fff;
}
.at-ca-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.at-ca-item {
  display: flex;
  gap: 14px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 14px;
  text-decoration: none;
  color: inherit;
  transition: border-color .15s;
}
.at-ca-item:hover {
  border-color: #1e5ab6;
}
.at-ca-date {
  width: 50px;
  height: 50px;
  background: #eff6ff;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.at-ca-date strong {
  font-size: 16px;
  color: #1e5ab6;
  line-height: 1;
}
.at-ca-date span {
  font-size: 10px;
  color: #1e5ab6;
  font-weight: 700;
}
.at-ca-info h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
}
.at-ca-info p {
  font-size: 12px;
  color: #64748b;
  line-height: 1.4;
}

/* Why List & WhatsApp Banner */
.at-why-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}
.at-why-item {
  display: flex;
  gap: 12px;
}
.at-why-icon {
  font-size: 22px;
  flex-shrink: 0;
}
.at-why-item h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
}
.at-why-item p {
  font-size: 13px;
  color: #64748b;
}

.at-wa-banner {
  background: #10b981;
  color: #ffffff;
  border-radius: 10px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.at-wa-icon {
  font-size: 28px;
}
.at-wa-text {
  flex: 1;
}
.at-wa-text strong {
  display: block;
  font-size: 14px;
}
.at-wa-text span {
  font-size: 12px;
  opacity: 0.9;
}
.at-wa-btn {
  background: #ffffff;
  color: #059669;
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .15s;
}
.at-wa-btn:hover {
  transform: scale(1.04);
}

/* Ebooks Cards & About Section */
.at-ebook-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: transform .2s, box-shadow .2s;
}
.at-ebook-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.at-ebook-cover {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #f1f5f9;
  overflow: hidden;
}
.at-ebook-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.at-ebook-placeholder {
  font-size: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.at-ebook-info {
  padding: 14px 16px;
}
.at-ebook-info h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 6px;
}
.at-ebook-price {
  font-size: 18px;
  font-weight: 800;
  color: #1e5ab6;
}
.at-ebook-footer-note {
  font-size: 12px;
  color: #64748b;
  margin-top: 14px;
}

.at-about-section {
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
}
.at-about-content p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 14px;
}

/* ---------- Responsive Adjustments ---------- */
@media (max-width: 900px) {
  .at-hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .at-hero-title { font-size: 32px; }
  .at-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .at-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .at-split-grid { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 576px) {
  .container { padding: 0 14px; }
  .at-grid-4 { grid-template-columns: 1fr; gap: 12px; }
  .at-grid-3 { grid-template-columns: 1fr; gap: 12px; }
  .grid-4, .grid-3 { grid-template-columns: 1fr; gap: 12px; }
  .at-org-card { padding: 12px 14px; gap: 10px; }
  .at-org-icon { width: 36px; height: 36px; font-size: 18px; }
  .at-test-item { padding: 12px 14px; gap: 10px; }
  .at-test-icon { width: 34px; height: 34px; font-size: 16px; }
  .at-ca-item { padding: 12px; gap: 10px; }
  .at-ca-date { width: 44px; height: 44px; }
  .at-ca-date strong { font-size: 14px; }
  .at-wa-banner { flex-direction: column; align-items: stretch; gap: 10px; text-align: center; }
  .at-wa-btn { width: 100%; text-align: center; }
  .at-stats-inner { flex-direction: column; gap: 16px; }
}
/* ---------- Rich Text Post Body Formatting ---------- */
.post-body-content {
  font-size: 15.5px;
  line-height: 1.8;
  color: #334155;
}
.post-body-content h1 { font-size: 28px; font-weight: 800; color: #0f172a; margin: 1.4em 0 0.5em; line-height: 1.3; }
.post-body-content h2 { font-size: 24px; font-weight: 700; color: #0f172a; margin: 1.3em 0 0.5em; line-height: 1.3; }
.post-body-content h3 { font-size: 20px; font-weight: 700; color: #1e293b; margin: 1.2em 0 0.4em; line-height: 1.35; }
.post-body-content h4 { font-size: 17px; font-weight: 700; color: #1e293b; margin: 1.1em 0 0.4em; }
.post-body-content h5 { font-size: 15px; font-weight: 700; color: #334155; margin: 1em 0 0.4em; }
.post-body-content p { margin-bottom: 1.2em; }
.post-body-content strong { color: #0f172a; font-weight: 700; }
.post-body-content em { font-style: italic; }
.post-body-content u { text-decoration: underline; text-underline-offset: 3px; }
.post-body-content blockquote {
  border-left: 4px solid #1e5ab6;
  background: #f8fafc;
  padding: 14px 20px;
  margin: 1.4em 0;
  border-radius: 0 8px 8px 0;
  color: #475569;
  font-style: italic;
}
.post-body-content ul, .post-body-content ol {
  padding-left: 24px;
  margin-bottom: 1.2em;
}
.post-body-content li {
  margin-bottom: 6px;
}
.post-body-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.4em 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.post-body-content table, .post-body-content th, .post-body-content td {
  border: 1px solid #cbd5e1;
  padding: 10px 14px;
  font-size: 14px;
}
.post-body-content th {
  background: #f1f5f9;
  font-weight: 700;
  color: #0f172a;
  text-align: left;
}
.post-body-content img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 1.2em 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
/* ---------- About Section (Justify Text Alignment) ---------- */
.at-about-section {
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
}
.at-about-content {
  text-align: justify;
  text-justify: inter-word;
}
.at-about-content p {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.75;
  margin-bottom: 14px;
  text-align: justify;
}

/* ============================================================
   Interactive Exam MCQs & Live Feedback Styles
   ============================================================ */

/* Exam Container Glassmorphism Touch */
.exam-main-card {
  background: #ffffff;
  border-radius: var(--radius);
  border: 1px solid var(--border-soft);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  padding: 30px;
}

.exam-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f1f5f9;
}

/* Header Action Controls (Sound + Lang) */
.exam-header-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Sound Toggle Button */
.btn-sound-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f8fafc;
  border: 1px solid var(--border-soft);
  color: var(--text-main);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
}
.btn-sound-toggle:hover {
  background: #eff6ff;
  border-color: var(--primary-light);
  color: var(--primary-dark);
}
.btn-sound-toggle.muted {
  opacity: 0.75;
  background: #f1f5f9;
  border-color: #cbd5e1;
  color: var(--text-muted);
}
.btn-sound-toggle .sound-badge {
  display: inline-block;
  padding: 2px 6px;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}
.btn-sound-toggle:not(.muted) .sound-badge {
  background: rgba(22, 163, 74, 0.15);
  color: #16a34a;
}
.btn-sound-toggle.muted .sound-badge {
  background: rgba(100, 116, 139, 0.15);
  color: #64748b;
}

/* Interactive MCQ Option Cards */
.mcq-option-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
}

.mcq-option-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 18px;
  border: 1.5px solid #cbd5e1;
  border-radius: 12px;
  background: #ffffff;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  user-select: none;
  color: #0f172a;
}
.mcq-option-card:hover:not(.disabled) {
  border-color: var(--primary);
  background: #f0f7ff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(43, 108, 176, 0.12);
}
.mcq-option-left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
}
.mcq-option-badge {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #e2e8f0;
  border: 1px solid #cbd5e1;
  color: #0f172a;
  font-weight: 800;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.mcq-option-card:hover:not(.disabled) .mcq-option-badge {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}
.mcq-option-text {
  font-size: 16px;
  font-weight: 650;
  color: #0f172a;
  line-height: 1.5;
  letter-spacing: 0.1px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.mcq-option-status-icon {
  font-size: 18px;
  font-weight: 800;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Correct Option State */
.mcq-option-card.correct-opt {
  border-color: #16a34a !important;
  background: rgba(22, 163, 74, 0.08) !important;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.15) !important;
}
.mcq-option-card.correct-opt .mcq-option-badge {
  background: #16a34a !important;
  color: #ffffff !important;
}
.mcq-option-card.correct-opt .mcq-option-text {
  color: #14532d;
  font-weight: 600;
}
.mcq-option-card.correct-opt .mcq-option-status-icon {
  opacity: 1;
  transform: scale(1);
  color: #16a34a;
}

/* Wrong Option State */
.mcq-option-card.incorrect-opt {
  border-color: #dc2626 !important;
  background: rgba(220, 38, 38, 0.08) !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15) !important;
}
.mcq-option-card.incorrect-opt .mcq-option-badge {
  background: #dc2626 !important;
  color: #ffffff !important;
}
.mcq-option-card.incorrect-opt .mcq-option-text {
  color: #7f1d1d;
  font-weight: 600;
}
.mcq-option-card.incorrect-opt .mcq-option-status-icon {
  opacity: 1;
  transform: scale(1);
  color: #dc2626;
}

/* Disabled Option State */
.mcq-option-card.disabled {
  cursor: default;
  opacity: 0.9;
}

/* Explanation Box */
.mcq-explanation-card {
  margin-top: 20px;
  padding: 18px 22px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f0fdf4 0%, #e0f2fe 100%);
  border: 1px solid #bbf7d0;
  box-shadow: 0 4px 15px rgba(22, 163, 74, 0.05);
  animation: slideDown 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
.mcq-explanation-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #15803d;
  margin-bottom: 8px;
}
.mcq-explanation-body {
  font-size: 14.5px;
  line-height: 1.6;
  color: #1e293b;
}

/* Palette Statuses */
.palette-item.correct-answer {
  background: #16a34a !important;
  color: #ffffff !important;
  border-color: #16a34a !important;
}
.palette-item.incorrect-answer {
  background: #dc2626 !important;
  color: #ffffff !important;
  border-color: #dc2626 !important;
}

/* Confetti Canvas Container */
#confettiCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 99999;
}

/* Celebration Modal */
.celebration-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeIn 0.3s ease;
}
.celebration-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 36px 28px;
  max-width: 440px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  animation: scaleUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes scaleUp { from { transform: scale(0.8); opacity: 0; } to { transform: scale(1); opacity: 1; } }

.celebration-badge {
  font-size: 54px;
  margin-bottom: 12px;
  animation: bounce 1s infinite alternate;
}
@keyframes bounce { from { transform: translateY(0); } to { transform: translateY(-10px); } }

.celebration-title {
  font-size: 24px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 6px;
}
.celebration-sub {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 24px;
}
.celebration-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 24px;
  background: #f8fafc;
  padding: 16px;
  border-radius: 14px;
}
.celebration-stat-box strong {
  display: block;
  font-size: 20px;
  font-weight: 800;
}
.celebration-stat-box.green strong { color: #16a34a; }
.celebration-stat-box.red strong { color: #dc2626; }
.celebration-stat-box.blue strong { color: #2b6cb0; }
.celebration-stat-box span {
  font-size: 11px;
  color: #64748b;
  text-transform: uppercase;
  font-weight: 700;
}

/* ==================== PREMIUM / AUTH MODAL POPUP ==================== */
.premium-modal-backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 99999;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.premium-modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}
.premium-modal-card {
  background: #ffffff;
  width: 100%;
  max-width: 440px;
  border-radius: 24px;
  padding: 36px 28px 28px;
  text-align: center;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.35);
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid #e2e8f0;
}
.premium-modal-backdrop.open .premium-modal-card {
  transform: scale(1);
}
.premium-modal-icon-badge {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #fffbe3;
  border: 1.5px solid #fef3c7;
  color: #d97706;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  box-shadow: 0 8px 20px rgba(217, 119, 6, 0.12);
}
.premium-modal-title {
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
  line-height: 1.3;
}
.premium-modal-desc {
  font-size: 14px;
  color: #64748b;
  line-height: 1.55;
  margin-bottom: 28px;
  padding: 0 10px;
}
.premium-modal-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.btn-prem-cancel {
  flex: 1;
  height: 46px;
  border-radius: 12px;
  border: 1.5px solid #e2e8f0;
  background: #ffffff;
  color: #475569;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-prem-cancel:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  color: #1e293b;
}
.btn-prem-action {
  flex: 1;
  height: 46px;
  border-radius: 12px;
  border: none;
  background: #2563eb;
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}
.btn-prem-action:hover {
  background: #1d4ed8 !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.45);
}

/* ==================== BILINGUAL CURRENT AFFAIRS STYLING ==================== */
.bilingual-ca-wrapper {
  margin-top: 10px;
}

/* Floating / Sticky Pill Language Switcher */
.ca-lang-toggle-bar {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  padding: 5px 8px;
  border-radius: 50px;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
  flex-wrap: wrap;
}
.ca-lang-label {
  font-size: 12.5px;
  font-weight: 800;
  color: #475569;
  padding-left: 8px;
  margin-right: 4px;
}
.ca-lang-btn {
  padding: 6px 14px;
  border-radius: 30px;
  border: 1px solid transparent;
  background: #f1f5f9;
  color: #334155;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.ca-lang-btn:hover {
  background: #e2e8f0;
  color: #0f172a;
}
.ca-lang-btn.active {
  background: #2563eb;
  color: #ffffff !important;
  border-color: #2563eb;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Current Affairs Item Box */
.ca-post-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 24px 28px;
  margin-bottom: 22px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  transition: all 0.2s ease;
  position: relative;
}
.ca-post-item:hover {
  border-color: #cbd5e1;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.07);
}

/* Heading Styling with Number Badge */
.ca-item-heading {
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 16px;
  line-height: 1.45;
  letter-spacing: -0.2px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.ca-item-heading .ca-num {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff;
  font-weight: 900;
  font-size: 13px;
  min-width: 30px;
  height: 30px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 8px rgba(37, 99, 235, 0.3);
  flex-shrink: 0;
  margin-top: 1px;
}

/* Text Blocks */
.ca-text-block {
  margin-bottom: 14px;
  line-height: 1.75;
  font-size: 16.5px;
  position: relative;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.ca-text-block:last-child {
  margin-bottom: 0;
}

/* English Card Block */
.ca-lang-en {
  color: #0f172a;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.75;
  border-left: 4px solid #2563eb;
  background: #f8fafc;
  padding: 16px 20px;
  border-radius: 0 14px 14px 0;
  letter-spacing: 0.1px;
}
.ca-lang-en p {
  margin-bottom: 10px;
}
.ca-lang-en p:last-child {
  margin-bottom: 0;
}

/* Assamese Card Block */
.ca-lang-as {
  color: #0f172a;
  font-weight: 500;
  font-size: 17px;
  line-height: 1.85;
  border-left: 4px solid #d97706;
  background: #fffdf0;
  padding: 16px 20px;
  border-radius: 0 14px 14px 0;
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  letter-spacing: 0.15px;
}
.ca-lang-as p {
  margin-bottom: 10px;
}
.ca-lang-as p:last-child {
  margin-bottom: 0;
}

.ca-hide {
  display: none !important;
}

/* Mobile Responsiveness & Touch Adjustments */
@media (max-width: 768px) {
  .ca-post-item {
    padding: 18px 16px;
    border-radius: 14px;
    margin-bottom: 16px;
  }
  .ca-item-heading {
    font-size: 17.5px;
    margin-bottom: 12px;
    gap: 10px;
  }
  .ca-item-heading .ca-num {
    min-width: 26px;
    height: 26px;
    font-size: 12px;
    border-radius: 8px;
  }
  .ca-lang-en {
    padding: 12px 14px;
    font-size: 15px;
    line-height: 1.7;
    border-radius: 0 10px 10px 0;
  }
  .ca-lang-as {
    padding: 12px 14px;
    font-size: 16px;
    line-height: 1.8;
    border-radius: 0 10px 10px 0;
  }
  .ca-lang-toggle-bar {
    width: 100%;
    justify-content: space-between;
    border-radius: 16px;
    padding: 6px;
  }
  .ca-lang-btn {
    flex: 1;
    text-align: center;
    justify-content: center;
    padding: 7px 8px;
    font-size: 12.5px;
  }
  .ca-lang-label {
    display: none;
  }
}

/* Current Affairs Feed Cards */
.ca-feed-card {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 18px 22px;
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 3px 12px rgba(15, 23, 42, 0.04);
  transition: all 0.2s ease;
}
.ca-feed-card:hover {
  transform: translateY(-2px);
  border-color: #2563eb;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.1);
}
.ca-date-box {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid #bfdbfe;
  color: #1d4ed8;
}
.ca-date-day {
  font-size: 20px;
  color: #1e40af;
  line-height: 1;
  font-weight: 900;
}
.ca-date-month {
  font-size: 11px;
  color: #2563eb;
  font-weight: 800;
  text-transform: uppercase;
  margin-top: 2px;
}

@media (max-width: 768px) {
  .ca-feed-card {
    padding: 14px 16px;
    gap: 12px;
    border-radius: 14px;
  }
  .ca-date-box {
    width: 48px;
    height: 48px;
    border-radius: 10px;
  }
  .ca-date-day {
    font-size: 17px;
  }
  .ca-date-month {
    font-size: 10px;
  }
}

/* ==================== PREMIUM ARCHIVE & SKELETON LOCK STYLING ==================== */
.ca-hero-header {
  background: linear-gradient(135deg, #0f172a 0%, #1e4e7d 50%, #2b6cb0 100%);
  color: #ffffff;
  padding: 38px 0 42px;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.1);
}
.ca-hero-title {
  font-size: 28px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}
.ca-hero-sub {
  color: #f1f5f9;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 18px;
  max-width: 700px;
}
.ca-hero-badges {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.ca-hero-badge-pill {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 12.5px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(4px);
}

.ca-locked-skeleton-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid #f1f5f9;
}
.ca-locked-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.ca-skeleton-lines {
  flex: 1;
}
.ca-skeleton-line {
  height: 12px;
  background: linear-gradient(90deg, #e2e8f0 25%, #f1f5f9 50%, #e2e8f0 75%);
  background-size: 200% 100%;
  animation: skeletonPulse 1.5s infinite;
  border-radius: 6px;
  margin-bottom: 8px;
  filter: blur(1px);
  opacity: 0.75;
}
.ca-skeleton-line.w-90 { width: 90%; }
.ca-skeleton-line.w-75 { width: 75%; }
.ca-skeleton-line.w-60 { width: 60%; }
.ca-skeleton-line.w-40 { width: 40%; }

@keyframes skeletonPulse {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.ca-premium-archive-card {
  text-align: center;
  padding: 36px 20px 24px;
  margin-top: 10px;
}
.ca-prem-crown-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fffbe3;
  border: 1.5px solid #fef3c7;
  color: #d97706;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.12);
}
.ca-prem-title {
  font-size: 19px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
}
.ca-prem-desc {
  font-size: 13.5px;
  color: #64748b;
  max-width: 440px;
  margin: 0 auto 20px;
  line-height: 1.5;
}
.btn-go-premium {
  background: #2563eb;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 14px;
  padding: 11px 26px;
  border-radius: 10px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none !important;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
  transition: all 0.2s ease;
}
.btn-go-premium:hover {
  background: #1d4ed8 !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.45);
}

/* Infinite Scroll Loader */
.ca-loader-bar {
  text-align: center;
  padding: 16px 20px;
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}
.ca-loader-spinner {
  width: 18px;
  height: 18px;
  border: 2.5px solid #bfdbfe;
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: caSpin 0.8s linear infinite;
}
@keyframes caSpin { to { transform: rotate(360deg); } }

/* Month-Wise Current Affairs Pills */
.ca-month-pill-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  padding: 8px 0 4px;
  margin-top: 14px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.ca-month-pill-bar::-webkit-scrollbar {
  display: none;
}
.ca-month-pill-label {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
}
.ca-month-pill {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff !important;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 12.5px;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none !important;
  transition: all 0.2s ease;
  backdrop-filter: blur(4px);
}
.ca-month-pill:hover {
  background: rgba(255, 255, 255, 0.3);
  color: #ffffff !important;
  transform: translateY(-1px);
}
.ca-month-pill.active {
  background: #ffffff !important;
  color: #1e4e7d !important;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
  border-color: #ffffff;
}

/* ==================== MONTH SEPARATOR DIVIDER BAR ==================== */
.ca-month-divider {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 32px 0 16px;
  position: relative;
}
.ca-month-divider-label {
  font-size: 13px;
  font-weight: 800;
  color: #64748b;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.ca-month-divider-line {
  flex: 1;
  height: 1px;
  background: #cbd5e1;
  margin: 0 16px;
}
.ca-month-divider-meta {
  font-size: 12.5px;
  font-weight: 600;
  color: #94a3b8;
  white-space: nowrap;
}

/* ============================================================
   PREMIUM SIGNUP / AUTH POPUP MODAL STYLING
   ============================================================ */
.prem-signup-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.prem-signup-backdrop.open {
  opacity: 1;
  visibility: visible;
}
.prem-signup-card {
  background: #ffffff;
  width: 100%;
  max-width: 460px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.35);
  position: relative;
  transform: translateY(20px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.prem-signup-backdrop.open .prem-signup-card {
  transform: translateY(0) scale(1);
}
.prem-signup-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.2s ease;
  line-height: 1;
}
.prem-signup-close:hover {
  background: rgba(255, 255, 255, 0.35);
}
.prem-signup-header {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #2563eb 100%);
  padding: 32px 28px 24px;
  color: #ffffff;
  text-align: center;
}
.prem-signup-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.18);
  color: #fde047;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.8px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.prem-signup-title {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 8px 0;
  line-height: 1.25;
  letter-spacing: -0.3px;
}
.prem-signup-subtitle {
  font-size: 13.5px;
  color: #cbd5e1;
  margin: 0;
  line-height: 1.5;
}
.prem-signup-body {
  padding: 24px 28px;
}
.prem-features-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}
.prem-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  padding: 10px 14px;
  border-radius: 12px;
}
.prem-feature-icon {
  font-size: 20px;
  flex-shrink: 0;
}
.prem-feature-item strong {
  display: block;
  font-size: 13.5px;
  color: #0f172a;
  font-weight: 700;
}
.prem-feature-item span {
  font-size: 12px;
  color: #64748b;
  line-height: 1.3;
}
.prem-signup-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.btn-prem-register {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff;
  padding: 13px 20px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
  transition: all 0.2s ease;
  display: block;
}
.btn-prem-register:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.45);
  color: #ffffff;
}
.btn-prem-login {
  background: #f1f5f9;
  color: #334155;
  padding: 11px 20px;
  border-radius: 12px;
  font-size: 13.5px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s ease;
  display: block;
}
.btn-prem-login:hover {
  background: #e2e8f0;
  color: #0f172a;
}

/* ============================================================
   GOOGLE ACCOUNT / GMAIL STYLE HEADER PROFILE DROPDOWN
   ============================================================ */
.google-profile-wrap {
  position: relative;
  display: inline-block;
}
.google-profile-btn {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  padding: 5px 12px 5px 6px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.google-profile-btn:hover {
  border-color: #2563eb;
  background: #f8fafc;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.12);
}
.google-profile-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff;
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(37, 99, 235, 0.25);
}
.google-profile-name {
  font-size: 13.5px;
  font-weight: 700;
  color: #0f172a;
  max-width: 110px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.google-pro-badge {
  font-size: 10px;
  font-weight: 800;
  color: #16a34a;
  background: #dcfce7;
  border: 1px solid #bbf7d0;
  padding: 2px 6px;
  border-radius: 10px;
  letter-spacing: 0.5px;
}
.google-free-badge {
  font-size: 10px;
  font-weight: 700;
  color: #64748b;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  padding: 2px 6px;
  border-radius: 10px;
}
.google-profile-chevron {
  color: #64748b;
  transition: transform 0.2s ease;
}
.google-profile-wrap.open .google-profile-chevron {
  transform: rotate(180deg);
  color: #2563eb;
}

/* Dropdown Menu Card */
.google-profile-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 290px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.18);
  padding: 16px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.96);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.google-profile-wrap.open .google-profile-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.g-drop-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 12px;
}
.g-drop-avatar-lg {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  color: #ffffff;
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}
.g-drop-user-info {
  flex: 1;
  min-width: 0;
}
.g-drop-name {
  font-size: 15px;
  font-weight: 800;
  color: #0f172a;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.g-drop-email {
  font-size: 12px;
  color: #64748b;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-bottom: 4px;
}
.g-drop-plan-pill {
  font-size: 11.5px;
  font-weight: 700;
}
.g-drop-plan-pill.pro {
  color: #16a34a;
}
.g-drop-plan-pill.free {
  color: #64748b;
}
.g-drop-divider {
  height: 1px;
  background: #f1f5f9;
  margin: 10px 0;
}
.g-drop-menu {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.g-drop-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 12px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: #334155;
  text-decoration: none;
  transition: all 0.15s ease;
}
.g-drop-item:hover {
  background: #f8fafc;
  color: #2563eb;
}
.g-drop-icon {
  font-size: 16px;
  width: 20px;
  text-align: center;
}
.g-drop-logout {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 12px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 700;
  color: #ef4444;
  text-decoration: none;
  transition: all 0.15s ease;
}
.g-drop-logout:hover {
  background: #fef2f2;
  color: #dc2626;
}



