/* 
================================================================
   PREMIUM CSS DESIGN SYSTEM - NIITLEL SITE (NUUTSHAN.COM)
================================================================
*/

:root {
  /* Colors */
  --bg-dark: #070a13;
  --bg-card: rgba(17, 24, 39, 0.6);
  --bg-modal: rgba(15, 23, 42, 0.85);
  --border-light: rgba(255, 255, 255, 0.08);
  --border-active: rgba(37, 99, 235, 0.4);
  
  --text-primary: #f3f4f6;
  --text-secondary: #9ca3af;
  --text-muted: #6b7280;
  
  --accent: #2563eb;
  --accent-light: #3b82f6;
  --accent-hover: #1d4ed8;
  
  --emerald: #10b981;
  --emerald-dark: #047857;
  --emerald-light: #d1fae5;
  
  --amber: #f59e0b;
  --amber-dark: #b45309;
  --amber-light: #fef3c7;
  
  --danger: #ef4444;
  
  /* Layout & Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-premium: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  
  /* Fonts */
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  /* Transitions */
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Reset & Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-dark);
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Copy Protection Helpers */
body:not(.admin) {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Ambient glow blobs */
body::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, rgba(7, 10, 19, 0) 70%);
  top: -200px;
  left: -200px;
  z-index: -10;
  pointer-events: none;
}

body::after {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, rgba(7, 10, 19, 0) 70%);
  top: 500px;
  right: -300px;
  z-index: -10;
  pointer-events: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
}

.wrap {
  width: min(1200px, calc(100% - 40px));
  margin: auto;
}

/* Header & Navigation */
.top {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 10, 19, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  transition: all var(--transition-normal);
}

.bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.5px;
}

.brand span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
}

.brand b {
  color: #fff;
}

/* Layout Columns */
.news-home {
  padding-top: 24px;
}

.news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 40px;
  padding: 40px 0 80px;
}

/* Spotlight Cover (Featured Post) */
.spotlight-wrap {
  padding-bottom: 20px;
}

.spotlight {
  position: relative;
  display: block;
  min-height: 480px;
  overflow: hidden;
  border-radius: 24px;
  background: var(--art);
  background-position: center;
  background-size: cover;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-xl);
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.spotlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 10, 19, 0.95) 0%, rgba(7, 10, 19, 0.7) 50%, rgba(7, 10, 19, 0.2) 100%),
              linear-gradient(to right, rgba(7, 10, 19, 0.9) 0%, rgba(7, 10, 19, 0.4) 100%);
  z-index: 1;
}

.spotlight:hover {
  transform: translateY(-4px);
  border-color: var(--border-active);
  box-shadow: 0 30px 60px -15px rgba(37, 99, 235, 0.25);
}

.spotlight-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 40px;
  width: 100%;
  max-width: 800px;
  z-index: 2;
}

/* Metadata components */
.meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.meta span {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  border: 1px solid var(--border-light);
}

.meta span:first-child {
  background: rgba(37, 99, 235, 0.15);
  color: #60a5fa;
  border-color: rgba(37, 99, 235, 0.3);
}

.meta span:nth-child(2) {
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
  border-color: rgba(245, 158, 11, 0.3);
  font-weight: 700;
}

.spotlight h1 {
  color: #fff;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  text-wrap: balance;
  transition: color var(--transition-fast);
}

.spotlight:hover h1 {
  color: #60a5fa;
}

.spotlight p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
  margin-top: 14px;
  max-width: 680px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Title bar */
.section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-light);
}

.section-title span {
  width: 6px;
  height: 24px;
  border-radius: 3px;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.6);
}

.section-title h2 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}

/* Article Feed List */
.news-feed {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.news-row {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.news-row:hover {
  transform: translateX(6px);
  border-color: var(--border-active);
  background: rgba(17, 24, 39, 0.8);
  box-shadow: var(--shadow-lg);
}

.news-thumb {
  position: relative;
  aspect-ratio: 16/10;
  background: var(--art);
  background-position: center;
  background-size: cover;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.news-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(0, 0, 0, 0.2));
}

.news-row-copy {
  display: flex;
  flex-direction: column;
}

.news-row h3 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  margin: 6px 0 10px;
  transition: color var(--transition-fast);
}

.news-row:hover h3 {
  color: #60a5fa;
}

.news-row p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Sidebar Widgets */
.news-sidebar {
  position: sticky;
  top: 96px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Sidebar Search */
.dark-search {
  display: flex;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  overflow: hidden;
  transition: all var(--transition-fast);
}

.dark-search:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.dark-search input {
  flex: 1;
  min-height: 44px;
  border: 0;
  background: transparent;
  color: #fff;
  padding: 0 14px;
  font-size: 14px;
  outline: none;
}

.dark-search input::placeholder {
  color: var(--text-muted);
}

.dark-search button {
  width: 44px;
  border-left: 1px solid var(--border-light);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-secondary);
  font-size: 18px;
  display: grid;
  place-items: center;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.dark-search button:hover {
  background: rgba(37, 99, 235, 0.1);
  color: #fff;
}

/* Side panels */
.side-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 24px;
  backdrop-filter: blur(10px);
}

.side-panel h3 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-light);
}

.side-panel a {
  display: block;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.side-panel a:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.side-panel a span {
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--text-primary);
  transition: color var(--transition-fast);
}

.side-panel a:hover span {
  color: #60a5fa;
}

.side-panel a small {
  display: inline-block;
  margin-top: 4px;
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
  background: rgba(245, 158, 11, 0.1);
  color: #fbbf24;
  padding: 2px 6px;
  border-radius: 4px;
}

.category-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 14px;
  color: var(--text-secondary);
}

.category-line:last-child {
  border-bottom: none;
}

.category-line span {
  font-weight: 500;
}

.category-line b {
  font-size: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  padding: 2px 8px;
  border-radius: 20px;
  font-weight: 600;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border-light);
  padding: 30px 0;
  color: var(--text-muted);
  background: #04060b;
  font-size: 13px;
  text-align: center;
}

/* Post Detail Styles */
.reader {
  overflow: hidden;
  margin-bottom: 40px;
  border-radius: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-xl);
}

.reader-head {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  border-bottom: 1px solid var(--border-light);
  background: linear-gradient(to right, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.4));
}

.reader-copy {
  padding: 40px;
}

.reader-copy h2 {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 12px;
}

.reader-copy p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

.reader-art {
  align-self: stretch;
  background: var(--art);
  background-position: center;
  background-size: cover;
  min-height: 250px;
}

.article {
  max-width: 780px;
  margin: auto;
  padding: 40px 24px 60px;
  color: #cbd5e1;
  font-size: 17px;
  line-height: 1.8;
}

.article p {
  margin-bottom: 24px;
}

/* Figures / Media inside post */
.article-image {
  margin: 36px 0;
}

.article-image img {
  display: block;
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
}

.article-image figcaption {
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 13px;
  text-align: center;
  font-style: italic;
}

/* Paywall (Locked Area) */
.paywall {
  margin: 40px 0;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  color: #fff;
  background: radial-gradient(circle at top, rgba(37, 99, 235, 0.25) 0%, rgba(7, 10, 19, 0) 80%),
              linear-gradient(135deg, rgba(22, 28, 45, 0.8), rgba(15, 23, 42, 0.95));
  border: 1px solid var(--border-active);
  box-shadow: 0 20px 50px rgba(7, 10, 19, 0.5);
  position: relative;
}

.lock {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.2);
  color: var(--accent-light);
  font-size: 22px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(37, 99, 235, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
}

.paywall h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.paywall p {
  max-width: 580px;
  margin: 0 auto 24px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  border-radius: 10px;
  padding: 0 22px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.btn:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.35);
}

.btn:active {
  transform: translateY(0);
}

/* Modern QPay Payment Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: var(--bg-modal);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.open {
  display: flex;
  opacity: 1;
}

.paybox {
  width: 100%;
  max-width: 480px;
  background: #ffffff;
  color: #0f172a;
  border-radius: 20px;
  box-shadow: var(--shadow-premium);
  overflow: hidden;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.modal.open .paybox {
  transform: scale(1);
}

.paybox header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #f1f5f9;
}

.paybox h2 {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
}

.paybox header button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #64748b;
  font-size: 24px;
  display: grid;
  place-items: center;
  transition: background 0.2s;
}

.paybox header button:hover {
  background: #f1f5f9;
  color: #0f172a;
}

.summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 20px 24px;
  background: #f8fafc;
}

.summary div {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px;
  background: #ffffff;
}

.summary small {
  display: block;
  font-size: 11px;
  color: #64748b;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.summary b {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
}

.summary #payStatus {
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  color: var(--amber-dark);
  background: var(--amber-light);
  padding: 4px 8px;
  border-radius: 6px;
}

.summary #payStatus.ok {
  color: var(--emerald-dark);
  background: var(--emerald-light);
}

.qrwrap {
  padding: 20px 24px;
  text-align: center;
  border-bottom: 1px solid #f1f5f9;
}

.qrwrap h3 {
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 4px;
}

.qrwrap p {
  font-size: 12px;
  color: #64748b;
  margin-bottom: 16px;
}

.qr {
  position: relative;
  width: 160px;
  height: 160px;
  margin: 0 auto;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  padding: 6px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qr span {
  position: absolute;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  box-shadow: 0 4px 8px rgba(37, 99, 235, 0.25);
}

.qr.real-qr span {
  display: none;
}

.wide {
  width: calc(100% - 48px);
  margin: 16px 24px;
}

.divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 12px 24px;
  color: #94a3b8;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.divider::before, .divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e2e8f0;
}

.center {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 12px;
}

.banks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 0 24px 24px;
  max-height: 200px;
  overflow-y: auto;
}

.bank {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #ffffff;
  transition: all 0.2s;
  text-align: center;
}

.bank:hover {
  border-color: var(--accent-light);
  background: #f8fafc;
}

.bank img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.bank i {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: var(--c);
  color: #fff;
  font-style: normal;
  font-size: 11px;
  font-weight: 700;
}

.bank i[hidden] {
  display: none;
}

.bank span {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 9px;
  font-weight: 600;
  color: #475569;
}

/* Toast Messages */
.toast {
  position: fixed;
  left: 50%;
  bottom: 30px;
  transform: translate(-50%, 15px);
  z-index: 2000;
  max-width: 320px;
  width: calc(100% - 40px);
  border-radius: 12px;
  padding: 12px 18px;
  background: #0f172a;
  color: #f8fafc;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-xl);
  opacity: 0;
  pointer-events: none;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.1), opacity 0.25s;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* Responsive Overrides */
@media (max-width: 900px) {
  .news-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .news-sidebar {
    position: static;
  }
  .news-row {
    grid-template-columns: 180px minmax(0, 1fr);
  }
  .reader-head {
    grid-template-columns: 1fr;
  }
  .reader-art {
    height: 200px;
    min-height: 200px;
  }
}

@media (max-width: 640px) {
  .news-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .news-thumb {
    aspect-ratio: 16/9;
  }
  .bar {
    flex-direction: column;
    gap: 16px;
  }
  .paybox {
    border-radius: 16px;
  }
  .banks {
    grid-template-columns: repeat(2, 1fr);
    padding-bottom: 20px;
  }
  .reader-copy {
    padding: 24px;
  }
  .article {
    padding: 30px 16px 40px;
    font-size: 16px;
  }
}

/* Top Promo Bar */
.promo-bar {
  background: linear-gradient(90deg, #1e3a8a, #3b82f6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  color: #fff;
  font-size: 13px;
  text-align: center;
}
.promo-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}
.promo-content span {
  font-weight: 700;
}
.promo-content small {
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
}
.promo-link {
  color: #fbbf24;
  font-weight: 700;
  text-decoration: underline;
  margin-left: 4px;
}
.promo-link:hover {
  color: #fca5a5;
  text-decoration: none;
}

/* Article Promo Box */
.article-promo-box {
  background: rgba(30, 41, 59, 0.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 16px;
  padding: 20px 24px;
  margin-bottom: 25px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
}
@media (max-width: 640px) {
  .article-promo-box {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 15px;
  }
}
.promo-icon {
  font-size: 28px;
  background: rgba(59, 130, 246, 0.15);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto;
}
.promo-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px 0;
}
.promo-text p {
  font-size: 13px;
  color: var(--text-secondary) !important;
  margin: 0;
  line-height: 1.4;
}
.promo-btn {
  background: var(--accent);
  color: #fff;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}
.promo-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}
