/* ===== Casibom 2026 — Ceiling Blues Tema ===== */

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

::-webkit-scrollbar { width:5px; }
::-webkit-scrollbar-track { background:transparent; }
::-webkit-scrollbar-thumb { background:#386994; border-radius:3px; }
::-webkit-scrollbar-thumb:hover { background:#8eaebb; }

:root {
  /* Ceiling Blues Palette */
  --c1: #051827;   /* darkest navy */
  --c2: #214457;   /* dark teal */
  --c3: #386994;   /* mid blue - primary accent */
  --c4: #8eaebb;   /* light blue-grey */
  --c5: #bdd9cd;   /* light mint - highlight */

  /* Semantic backgrounds */
  --bg-body:      #051827;
  --bg-section:   #071e30;
  --bg-card:      #0c2a3c;
  --bg-card-hover:#133245;
  --bg-input:     #081c2b;

  /* Accent system (maps to --c3) */
  --blue:         #386994;
  --blue2:        #4a7daa;
  --blue-dark:    #214457;
  --blue-subtle:  rgba(56,105,148,0.14);
  --blue-border:  rgba(56,105,148,0.32);
  --blue-glow:    rgba(56,105,148,0.55);

  /* Borders */
  --border:       rgba(56,105,148,0.18);
  --border-strong:rgba(56,105,148,0.38);

  /* Text */
  --text-primary:   #bdd9cd;
  --text-secondary: #8eaebb;
  --text-muted:     #5a7898;

  --sidebar-w: 240px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg-body);
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 60px;
  -webkit-text-size-adjust: 100%;
}

a { color: var(--blue2); text-decoration: none; }
a:hover { color: var(--c5); }
img { max-width: 100%; height: auto; }

/* ===== NAVBAR ===== */
.site-navbar {
  background: rgba(5,24,39,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
}
.site-logo {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}
.site-logo span { color: var(--c5); }
.site-logo:hover { color: var(--text-primary); }

.site-nav { display:flex; align-items:center; gap:4px; }
.site-nav a {
  color: var(--text-secondary);
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  transition: all .2s;
}
.site-nav a:hover, .site-nav a.active {
  color: var(--c5);
  background: var(--blue-subtle);
}
.navbar-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-size: 20px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
}
.mobile-menu {
  display: none;
  background: rgba(5,24,39,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 12px 24px;
  position: fixed;
  top: 60px; left: 0; right: 0;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu a {
  display: block;
  color: var(--text-secondary);
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  transition: all .2s;
}
.mobile-menu a:hover { color: var(--c5); background: var(--blue-subtle); }
.mobile-menu.open { display: flex; }

/* ===== HERO ===== */
.hero-section {
  background: var(--bg-body);
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  min-height: 560px;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(56,105,148,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 85% 50%, rgba(33,68,87,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 15% 80%, rgba(56,105,148,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(56,105,148,0.22) 0%, transparent 70%);
  filter: blur(50px);
  animation: glowPulse 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes glowPulse {
  0%, 100% { opacity:0.5; transform:translateX(-50%) scale(1); }
  50%       { opacity:1;   transform:translateX(-50%) scale(1.15); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue-subtle);
  border: 1px solid var(--blue-border);
  color: var(--c5);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(30px, 5vw, 58px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 18px;
}
.hero-title .accent {
  background: linear-gradient(135deg, #bdd9cd 0%, #8eaebb 45%, #386994 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.65;
}

/* ===== BUTTONS ===== */
.btn-orange {
  background: linear-gradient(135deg, #386994, #214457);
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 24px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all .3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(56,105,148,0.32);
}
.btn-orange:hover {
  box-shadow: 0 0 40px rgba(56,105,148,0.65);
  color: #fff;
  transform: translateY(-2px);
}
.btn-outline {
  border: 1px solid var(--blue-border);
  color: var(--c5);
  background: transparent;
  padding: 11px 24px;
  border-radius: 24px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all .3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.btn-outline:hover {
  background: var(--blue-subtle);
  color: var(--c5);
  box-shadow: 0 0 20px rgba(56,105,148,0.2);
}

/* ===== HERO TRUST ===== */
.hero-trust-item {
  font-size: 13px;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-trust-item i { color: var(--c5); font-size: 14px; }

/* ===== HERO PROMO CARD ===== */
.hero-promo-card {
  background: linear-gradient(145deg, #071e2e 0%, #0f2e42 60%, #071e2e 100%);
  border: 1px solid rgba(56,105,148,0.45);
  border-radius: 20px;
  padding: 32px 28px;
  max-width: 300px;
  width: 100%;
  box-shadow: 0 0 80px rgba(56,105,148,0.2), 0 24px 48px rgba(0,0,0,0.5);
}
.hero-promo-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--c5);
  font-weight: 700;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.hero-promo-pct {
  font-size: 76px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 4px;
  background: linear-gradient(135deg, #bdd9cd, #386994);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-promo-title { font-size: 16px; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; }
.hero-promo-limit { font-size: 13px; color: var(--text-secondary); margin-bottom: 20px; }
.hero-promo-divider { height: 1px; background: var(--border); margin-bottom: 16px; }
.hero-promo-extras { margin-bottom: 4px; }
.hero-promo-extra { font-size: 13px; color: var(--text-secondary); margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.hero-promo-extra i { color: var(--c5); font-size: 15px; }

/* ===== CTA STRIP ===== */
.cta-strip {
  background: linear-gradient(135deg, #051827 0%, #0c2a3c 50%, #051827 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.cta-strip-title { font-size: 16px; font-weight: 700; color: var(--text-primary); margin-bottom: 2px; display: flex; align-items: center; gap: 6px; }
.cta-strip-title i { color: var(--c5); }
.cta-strip-desc { font-size: 13px; color: var(--text-secondary); }

/* ===== STATS BAR ===== */
.stats-bar { background: var(--bg-section); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 32px 0; }
.stat-item { text-align:center; }
.stat-number { font-size: 28px; font-weight: 900; color: var(--c5); line-height: 1; }
.stat-label { font-size: 12px; color: var(--text-muted); margin-top: 4px; }

/* ===== FEATURES ===== */
.feature-card { text-align: center; padding: 28px 16px; }
.feature-icon { font-size: 34px; color: var(--c5); margin-bottom: 14px; display: block; }
.feature-title { font-size: 15px; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; }
.feature-desc { font-size: 13px; color: var(--text-secondary); }

/* ===== SECTIONS ===== */
.section { padding: 60px 0; }
.section-alt { background: var(--bg-section); }
.section-header { margin-bottom: 36px; }
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue-subtle);
  color: var(--c5);
  border: 1px solid var(--blue-border);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.section-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.section-desc { color: var(--text-secondary); font-size: 15px; max-width: 520px; }

/* ===== BONUS CARDS ===== */
.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all .3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.bonus-card:hover {
  border-color: var(--blue-border);
  box-shadow: 0 12px 40px rgba(56,105,148,0.22);
  transform: translateY(-4px);
}
.bonus-card-img { width: 100%; height: 180px; object-fit: cover; background: var(--bg-section); }
.bonus-card-img-placeholder {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, #071e2e, #214457);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(142,174,187,0.35);
  font-size: 40px;
}
.bonus-card-body {
  padding: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.bonus-type-badge {
  display: inline-block;
  background: var(--blue-subtle);
  color: var(--c5);
  border: 1px solid var(--blue-border);
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .4px;
}
.bonus-card-title { font-size: 15px; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; line-height: 1.35; }
.bonus-card-desc { font-size: 13px; color: var(--text-secondary); margin-bottom: 14px; flex: 1; }
.bonus-card-link {
  background: linear-gradient(135deg, #386994, #214457);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 20px;
  transition: all .3s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  box-shadow: 0 0 14px rgba(56,105,148,0.25);
}
.bonus-card-link:hover {
  box-shadow: 0 0 28px rgba(56,105,148,0.6);
  color: #fff;
  transform: translateY(-1px);
}
.bonus-card-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: auto;
}
.bonus-card-actions .bonus-card-link {
  flex: 1 1 auto;
  justify-content: center;
  align-self: stretch;
}
.bonus-card-info {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 8px 14px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: rgba(33,68,87,0.25);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all .25s;
  white-space: nowrap;
}
.bonus-card-info:hover {
  color: var(--text-primary);
  border-color: var(--blue-border);
  background: rgba(56,105,148,0.35);
}

/* ===== BONUS DETAY CTA ===== */
.bonus-detay-cta {
  margin-top: 24px;
  padding: 28px 24px;
  background: linear-gradient(135deg, rgba(56,105,148,0.18), rgba(33,68,87,0.35));
  border: 1px solid var(--blue-border);
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 0 40px rgba(56,105,148,0.18);
}
.bonus-detay-cta-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.bonus-detay-cta-title i { color: var(--orange); }
.bonus-detay-cta-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 18px;
}
.btn-lg-cta {
  font-size: 16px !important;
  padding: 14px 32px !important;
  border-radius: 30px !important;
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
}
@media (max-width: 576px) {
  .bonus-detay-cta { padding: 22px 16px; }
  .bonus-detay-cta-title { font-size: 18px; }
  .btn-lg-cta { font-size: 14px !important; padding: 12px 24px !important; }
  .bonus-card-actions { flex-direction: column; align-items: stretch; gap: 6px; }
  .bonus-card-actions .bonus-card-link,
  .bonus-card-actions .bonus-card-info { width: 100%; justify-content: center; }
}

/* ===== ARTICLE CARDS ===== */
.article-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: all .3s;
  height: 100%;
}
.article-card:hover {
  border-color: var(--blue-border);
  box-shadow: 0 8px 32px rgba(56,105,148,0.15);
  transform: translateY(-2px);
}
.article-card-body { padding: 20px; }
.article-meta { font-size: 12px; color: var(--text-muted); margin-bottom: 8px; display: flex; gap: 12px; flex-wrap: wrap; }
.article-meta span { display: flex; align-items: center; gap: 4px; }
.article-card-title { font-size: 16px; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; line-height: 1.4; }
.article-card-title a { color: var(--text-primary); }
.article-card-title a:hover { color: var(--c5); }
.article-card-excerpt { font-size: 14px; color: var(--text-secondary); }
.article-cat-badge {
  display: inline-block;
  background: var(--blue-subtle);
  color: var(--c5);
  border: 1px solid var(--blue-border);
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* ===== GENERIC CARD ===== */
.card-casibom {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  transition: all .3s;
  height: 100%;
}
.card-casibom:hover {
  border-color: var(--blue-border);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(56,105,148,0.12);
}
.card-icon {
  width: 44px; height: 44px;
  background: var(--blue-subtle);
  border: 1px solid var(--blue-border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--c5);
  font-size: 20px;
  margin-bottom: 14px;
}
.card-title { font-size: 16px; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.card-text { font-size: 14px; color: var(--text-secondary); }

/* ===== FAQ ===== */
.faq-item { border: 1px solid var(--border); border-radius: 12px; margin-bottom: 10px; overflow: hidden; background: var(--bg-card); transition: all .3s; }
.faq-item:hover { border-color: var(--blue-border); }
.faq-question {
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--text-primary);
  font-size: 15px;
  transition: background .2s;
}
.faq-question:hover { background: rgba(56,105,148,0.06); }
.faq-question.open { color: var(--c5); }
.faq-question i { color: var(--c5); font-size: 14px; transition: transform .3s; flex-shrink: 0; }
.faq-question.open i { transform: rotate(180deg); }
.faq-answer { padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s; color: var(--text-secondary); font-size: 14px; }
.faq-answer.open { max-height: 500px; padding: 0 20px 16px; }

/* ===== BREADCRUMB ===== */
.breadcrumb-bar { background: var(--bg-section); border-bottom: 1px solid var(--border); padding: 10px 0; }
.breadcrumb-bar .breadcrumb { margin: 0; background: transparent; padding: 0; }
.breadcrumb-item a { color: var(--text-muted); font-size: 13px; }
.breadcrumb-item a:hover { color: var(--c5); }
.breadcrumb-item.active { color: var(--text-secondary); font-size: 13px; }
.breadcrumb-item+.breadcrumb-item::before { color: var(--text-muted); }

/* ===== PAGE HEADER ===== */
.page-header {
  background: linear-gradient(135deg, #051827 0%, #0c2a3c 50%, #051827 100%);
  padding: 52px 0 40px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 100% at 50% 0%, rgba(56,105,148,0.14) 0%, transparent 70%);
  pointer-events: none;
}
.page-header h1 { font-size: clamp(22px,3.5vw,36px); font-weight: 900; color: var(--text-primary); margin-bottom: 8px; position: relative; }
.page-header p { color: var(--text-secondary); font-size: 15px; position: relative; }

/* ===== FOOTER ===== */
.site-footer { background: #030f19; border-top: 1px solid var(--border); padding: 48px 0 24px; }
.footer-logo { font-size: 18px; font-weight: 800; color: var(--text-primary); margin-bottom: 8px; }
.footer-logo span { color: var(--c5); }
.footer-desc { font-size: 13px; color: var(--text-muted); max-width: 280px; line-height: 1.6; }
.footer-heading { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: var(--c5); margin-bottom: 14px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: var(--text-muted); font-size: 13px; transition: color .2s; }
.footer-links a:hover { color: var(--c5); }
.footer-bottom { border-top: 1px solid var(--border); margin-top: 32px; padding-top: 16px; font-size: 12px; color: var(--text-muted); }

/* ===== ARTICLE DETAIL ===== */
.article-content { color: var(--text-secondary); line-height: 1.85; font-size: 16px; }
.article-content h2 { color: var(--text-primary); font-size: 22px; margin: 28px 0 12px; }
.article-content h3 { color: var(--text-primary); font-size: 18px; margin: 22px 0 10px; }
.article-content p { margin-bottom: 16px; }
.article-content ul, .article-content ol { margin-left: 20px; margin-bottom: 16px; }
.article-content li { margin-bottom: 6px; }
.article-content strong { color: var(--text-primary); }
.article-content a { color: var(--c5); }
.article-content blockquote { border-left: 3px solid var(--blue); padding: 12px 20px; background: var(--blue-subtle); border-radius: 0 8px 8px 0; margin: 20px 0; color: var(--text-secondary); }

/* ===== PAGINATION ===== */
.pagination-bar { display: flex; gap: 6px; justify-content: center; margin-top: 32px; }
.pagination-bar a, .pagination-bar span { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 8px; border: 1px solid var(--border); font-size: 14px; color: var(--text-secondary); background: var(--bg-card); transition: all .2s; }
.pagination-bar a:hover { border-color: var(--blue-border); color: var(--c5); }
.pagination-bar span.active { background: linear-gradient(135deg, #386994, #214457); border-color: var(--blue); color: #fff; }

/* ===== ADMIN ===== */
.admin-wrapper { display: flex; min-height: 100vh; }
.admin-sidebar { width: var(--sidebar-w); background: #030f19; border-right: 1px solid var(--border); position: fixed; top: 0; left: 0; height: 100%; overflow-y: auto; z-index: 100; transition: transform .3s; }
.admin-sidebar-logo { padding: 20px 20px 16px; font-size: 16px; font-weight: 800; color: var(--text-primary); border-bottom: 1px solid var(--border); }
.admin-sidebar-logo span { color: var(--c5); }
.admin-nav { padding: 12px 8px; }
.admin-nav-section { font-size: 10px; text-transform: uppercase; letter-spacing: .8px; color: var(--text-muted); padding: 8px 12px 4px; font-weight: 700; }
.admin-nav a { display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-radius: 8px; color: var(--text-secondary); font-size: 13px; font-weight: 500; margin-bottom: 2px; transition: all .2s; border: 1px solid transparent; }
.admin-nav a:hover, .admin-nav a.active { background: var(--blue-subtle); color: var(--c5); border-color: var(--blue-border); }
.admin-nav a i { font-size: 15px; width: 18px; text-align: center; }
.admin-content { margin-left: var(--sidebar-w); flex: 1; min-height: 100vh; background: var(--bg-body); }
.admin-topbar { background: #030f19; border-bottom: 1px solid var(--border); padding: 0 24px; height: 52px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 50; }
.admin-page { padding: 24px; }
.admin-page-title { font-size: 20px; font-weight: 700; color: var(--text-primary); margin-bottom: 20px; }
.admin-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 20px; margin-bottom: 20px; }
.admin-card-title { font-size: 14px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 4px; }
.admin-card-value { font-size: 28px; font-weight: 800; color: var(--c5); }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { padding: 10px 14px; text-align: left; font-size: 11px; text-transform: uppercase; letter-spacing: .5px; color: var(--text-muted); border-bottom: 1px solid var(--border); background: var(--bg-section); }
.admin-table td { padding: 12px 14px; font-size: 14px; color: var(--text-secondary); border-bottom: 1px solid var(--border); }
.admin-table tr:hover td { background: rgba(56,105,148,0.05); }
.admin-table tr:last-child td { border-bottom: none; }
.badge-active { background: rgba(34,197,94,.15); color: #22c55e; padding: 2px 8px; border-radius: 20px; font-size: 11px; font-weight: 600; }
.badge-inactive { background: rgba(239,68,68,.15); color: #ef4444; padding: 2px 8px; border-radius: 20px; font-size: 11px; font-weight: 600; }
.badge-published { background: rgba(34,197,94,.15); color: #22c55e; padding: 2px 8px; border-radius: 20px; font-size: 11px; font-weight: 600; }
.badge-draft { background: rgba(234,179,8,.15); color: #eab308; padding: 2px 8px; border-radius: 20px; font-size: 11px; font-weight: 600; }

/* ===== FORMS ===== */
.form-control-dark { background: var(--bg-input); border: 1px solid var(--border); border-radius: 8px; color: var(--text-primary); padding: 10px 14px; font-size: 14px; width: 100%; transition: border .2s; }
.form-control-dark:focus { outline: none; border-color: var(--blue-border); box-shadow: 0 0 0 3px var(--blue-subtle); }
.form-control-dark::placeholder { color: var(--text-muted); }
.form-label-dark { font-size: 13px; font-weight: 600; color: var(--text-secondary); margin-bottom: 6px; display: block; }
.form-hint { font-size: 11px; color: var(--text-muted); margin-top: 4px; }
select.form-control-dark option { background: var(--bg-card); }

/* ===== SEO TABS ===== */
.seo-tabs { display: flex; gap: 4px; flex-wrap: wrap; margin-bottom: 24px; border-bottom: 1px solid var(--border); }
.seo-tab { padding: 9px 16px; border-radius: 8px 8px 0 0; font-size: 13px; font-weight: 600; color: var(--text-muted); cursor: pointer; border: 1px solid transparent; border-bottom: none; background: transparent; transition: all .2s; margin-bottom: -1px; }
.seo-tab:hover { color: var(--text-secondary); }
.seo-tab.active { background: var(--bg-card); border-color: var(--border); color: var(--c5); border-bottom: 1px solid var(--bg-card); }
.seo-panel { display: none; }
.seo-panel.active { display: block; }

/* ===== GOOGLE PREVIEW ===== */
.google-preview { border: 1px solid var(--border); border-radius: 10px; padding: 20px; background: var(--bg-section); font-family: Arial, sans-serif; max-width: 600px; }
.gp-url { font-size: 12px; color: #34a853; margin-bottom: 2px; }
.gp-title { font-size: 18px; color: #8ab4f8; margin-bottom: 4px; cursor: pointer; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.gp-desc { font-size: 13px; color: #bdc1c6; line-height: 1.5; }
.char-counter { font-size: 11px; margin-top: 4px; text-align: right; }
.char-ok { color: #22c55e; }
.char-warn { color: #eab308; }
.char-over { color: #ef4444; }

/* ===== ROBOTS EDITOR ===== */
.robots-editor { background: #030f19; border: 1px solid var(--border); border-radius: 8px; padding: 16px; font-family: 'Courier New', monospace; font-size: 13px; color: var(--text-secondary); min-height: 200px; width: 100%; resize: vertical; }
.robots-editor:focus { outline: none; border-color: var(--blue-border); }

/* ===== LOGIN ===== */
.login-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: radial-gradient(ellipse at center, #0c2a3c 0%, #051827 70%); padding-top: 0 !important; }
.login-card { background: var(--bg-card); border: 1px solid var(--blue-border); border-radius: 20px; padding: 40px; width: 100%; max-width: 380px; box-shadow: 0 0 60px rgba(56,105,148,0.15); }
.login-logo { text-align: center; margin-bottom: 28px; font-size: 22px; font-weight: 900; color: var(--text-primary); }
.login-logo span { color: var(--c5); }

/* ===== ALERTS ===== */
.alert-orange { background: var(--blue-subtle); border: 1px solid var(--blue-border); color: var(--c5); padding: 12px 16px; border-radius: 8px; font-size: 14px; margin-bottom: 16px; }
.alert-error { background: rgba(239,68,68,.1); border: 1px solid rgba(239,68,68,.3); color: #ef4444; padding: 12px 16px; border-radius: 8px; font-size: 14px; margin-bottom: 16px; }
.alert-success { background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.3); color: #22c55e; padding: 12px 16px; border-radius: 8px; font-size: 14px; margin-bottom: 16px; }

/* Admin body override */
body.admin-body { padding-top: 0 !important; }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .hero-section { padding: 64px 0 48px; min-height: auto; }
  .hero-promo-card { padding: 22px; }
  .section { padding: 56px 0; }
  .stat-number { font-size: 26px; }
}
@media (max-width: 768px) {
  body { padding-top: 56px; }
  .site-navbar { height: 56px; padding: 0 16px; }
  .mobile-menu { top: 56px; padding: 10px 16px; }
  .site-nav { display: none; }
  .navbar-toggle { display: block; }
  .hero-section { padding: 44px 0 32px; min-height: auto; }
  .section { padding: 40px 0; }
  .page-header { padding: 36px 0 20px; }
  .stats-bar { padding: 14px 0; }
  .stat-number { font-size: 22px; }
  .stat-label { font-size: 11px; }
  .feature-icon { font-size: 28px; margin-bottom: 10px; }
  .feature-title { font-size: 14px; }
  .feature-desc { font-size: 12px; }
  .cta-strip { padding: 18px 0; }
  .admin-sidebar { transform: translateX(-100%); }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-content { margin-left: 0; }
  .seo-tabs { gap: 2px; }
  .seo-tab { padding: 7px 10px; font-size: 12px; }
}
@media (max-width: 576px) {
  .container { padding-left: 14px; padding-right: 14px; }
  .hero-section { padding: 32px 0 24px; }
  .hero-desc { font-size: 15px; }
  .hero-badge { font-size: 12px; padding: 4px 12px; margin-bottom: 14px; }
  .section { padding: 32px 0; }
  .section-title { font-size: 22px; }
  .section-desc { font-size: 14px; }
  .bonus-card-img-placeholder { font-size: 32px; }
  .footer-logo { font-size: 16px; }
  .footer-bottom { font-size: 11px; gap: 4px; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 26px; }
  .hero-desc { font-size: 14px; }
  .hero-section { padding: 24px 0 20px; min-height: 400px; }
  .page-header { padding: 28px 0 16px; }
  .page-header h1 { font-size: 24px; }
  .stat-number { font-size: 20px; }
  .login-card { padding: 28px 20px; margin: 16px; }
  .btn-orange, .btn-outline { padding: 10px 18px; font-size: 13px; }
}

/* Reduced motion: stop animated background blob & shrink transitions */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .hero-glow { animation: none !important; opacity: 0.7; }
}
