:root{
  --bg:#0b0f14;
  --card:#121823;
  --text:#e8eef8;
  --muted:#9ab0c8;
  --line:#223047;
  --accent:#4dd2ff;
  --accent2:#22c55e;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif;
  background: radial-gradient(1200px 600px at 10% 0%, rgba(77,210,255,.12), transparent 60%),
              radial-gradient(900px 500px at 90% 10%, rgba(34,197,94,.10), transparent 55%),
              var(--bg);
  color:var(--text);
}
a{color:var(--accent);text-decoration:none}
a:hover{text-decoration:underline}
img{max-width:100%;display:block}

.container{max-width:1120px;margin:0 auto;padding:16px}
.muted{color:var(--muted)}
.card{background:rgba(18,24,35,.92);border:1px solid var(--line);border-radius:16px;overflow:hidden;box-shadow:0 10px 28px rgba(0,0,0,.25)}
.card-body{padding:14px 16px}

.btn{
  display:inline-flex;align-items:center;justify-content:center;
  gap:8px;
  padding:10px 14px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(15,22,34,.75);
  color:var(--text);
  cursor:pointer;
  font-weight:650;
}
.btn:hover{border-color:#2d4364;text-decoration:none}
.btn.primary{
  border-color:#225a7a;
  background:linear-gradient(180deg, rgba(15,42,59,.95), rgba(15,22,34,.85));
}
.wa-button{
  display:inline-block;
  margin-top:10px;
  padding:10px 14px;
  border-radius:14px;
  background:rgba(34,197,94,.18);
  border:1px solid rgba(34,197,94,.35);
  color:#d8ffe7;
  font-weight:700;
}
.wa-button:hover{text-decoration:none;filter:brightness(1.05)}

/* HEADER / NAV */
.site-header{
  position:sticky;top:0;z-index:50;
  background:rgba(11,15,20,.78);
  border-bottom:1px solid var(--line);
  backdrop-filter: blur(10px);
}
.nav-wrap{
  max-width:1120px;margin:0 auto;
  padding:10px 16px;
  display:flex;align-items:center;justify-content:space-between;gap:12px;
}
.logo{display:flex;align-items:center;gap:10px;text-decoration:none}
.logo img{height:44px;width:auto}
.logo .logo-tagline{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-weight:800;
  letter-spacing:.2px;
  color:rgba(255,255,255,.85);
  font-size:14px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(46,255,193,.22);
  background:rgba(0,0,0,.25);
  box-shadow:0 10px 24px rgba(0,0,0,.25);
}
.logo .logo-tagline .sep{opacity:.55;font-weight:700}
.menu-toggle{
  display:none;
  width:44px;height:40px;
  border-radius:12px;
  border:1px solid var(--line);
  background:rgba(15,22,34,.75);
  cursor:pointer;
}
.menu-toggle span{
  display:block;width:18px;height:2px;margin:4px auto;background:var(--text);border-radius:2px;
}
.nav-menu{
  display:flex;align-items:center;gap:10px;flex-wrap:wrap;
}
.nav-menu a{
  padding:8px 10px;border-radius:12px;color:var(--text);
}
.nav-menu a:hover{background:rgba(15,22,34,.55);text-decoration:none}
.nav-cta{
  border:1px solid var(--line);
  background:rgba(15,22,34,.75);
}
.nav-cta.wa{border-color:rgba(34,197,94,.35);background:rgba(34,197,94,.12)}
.ticker{border-top:1px solid var(--line);overflow:hidden}
.ticker-inner{
  white-space:nowrap;
  padding:8px 16px;
  color:var(--muted);
  animation: ticker 22s linear infinite;
}
@keyframes ticker{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}

/* HERO */
.hero{
  display:grid;
  grid-template-columns: 1.25fr 1fr;
  gap:16px;
  padding-top:14px;
}
.hero-title{font-size:32px;line-height:1.08;margin:0}
.hero-subtitle{margin:10px 0 0 0;color:var(--muted);max-width:56ch}
.cta-row{display:flex;gap:10px;flex-wrap:wrap;margin-top:14px}

.profiles{display:grid;gap:12px;margin-top:16px}
.profile-card{
  display:flex;gap:12px;align-items:center;
  padding:12px;border:1px solid var(--line);
  border-radius:16px;background:rgba(15,22,34,.55);
}
.profile-card img{
  width:64px;height:64px;border-radius:14px;object-fit:cover;border:1px solid var(--line);
}
.profile-name{font-weight:800}

.hero-slider{
  position:relative;
  height:340px;
}
.hero-slider img{
  position:absolute;inset:0;
  width:100%;height:100%;
  object-fit:cover;
  opacity:0;
  transition:opacity .55s ease;
}

/* SECTIONS */
.section{margin-top:18px}
.section-title{margin:0}
.row-between{display:flex;align-items:flex-end;justify-content:space-between;gap:10px;flex-wrap:wrap}
.quick-grid{
  margin-top:12px;
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:12px;
}
.quick{
  display:flex;align-items:center;justify-content:center;
  padding:14px;border-radius:16px;
  background:rgba(18,24,35,.75);
  border:1px solid var(--line);
  color:var(--text);
  font-weight:800;
}
.quick:hover{text-decoration:none;border-color:#2d4364}


/* Data Lengkap cards (clean + mobile friendly) */
.dl-grid{margin-top:12px;display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}
@media (max-width: 980px){.dl-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media (max-width: 520px){.dl-grid{grid-template-columns:1fr}}

.dl-card{
  position:relative;
  padding:16px;
  border-radius:16px;
  border:1px solid rgba(46,255,193,.18);
  background:linear-gradient(145deg, rgba(15,26,24,.85), rgba(8,14,16,.72));
  box-shadow:0 10px 24px rgba(0,0,0,.24);
  cursor:pointer;
  transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.dl-card:hover{transform:translateY(-2px);border-color:rgba(46,255,193,.36);box-shadow:0 14px 30px rgba(0,0,0,.28)}

.dl-title-row{display:flex;align-items:center;justify-content:space-between;gap:10px}
.dl-title{font-weight:950;letter-spacing:.6px}
.dl-date{margin-top:6px;font-size:12px;font-weight:850;color:rgba(255,255,255,.68)}
.dl-pills{display:flex;gap:8px;flex-wrap:wrap;margin-top:10px}

.dl-btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:7px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:900;
  color:#0b0f14;
  background:linear-gradient(180deg, rgba(255,214,0,.95), rgba(255,164,0,.90));
  border:1px solid rgba(255,214,0,.35);
}
.dl-btn:hover{text-decoration:none;filter:brightness(1.03)}

/* Badge TERBARU */
.dl-badge{
  position:absolute;top:10px;right:10px;left:auto;
  padding:4px 10px;
  border-radius:999px;
  font-size:11px;
  font-weight:950;
  letter-spacing:.6px;
  color:#052018;
  background:linear-gradient(180deg, rgba(46,255,193,.95), rgba(0,200,150,.85));
  border:1px solid rgba(46,255,193,.35);
  box-shadow:0 10px 22px rgba(0,0,0,.24);
}

/* Data Lengkap: toolbar search */
.dl-toolbar{display:flex;gap:10px;flex-wrap:wrap;align-items:center;justify-content:flex-start;margin-top:4px}
.dl-search{flex:1;min-width:220px}
.dl-search .input{width:100%}

/* Glow P1 for new data */
@keyframes dlPulseGlow{
  0%{box-shadow:0 0 0 rgba(255,77,77,0)}
  60%{box-shadow:0 0 18px rgba(255,77,77,.45)}
  100%{box-shadow:0 0 0 rgba(255,77,77,0)}
}
.dl-glow{animation:dlPulseGlow 1.6s ease-in-out infinite}

/* Shimmer skeleton loading */
.dl-skeleton{margin-top:12px;display:none;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}
@media (max-width: 980px){.dl-skeleton{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media (max-width: 520px){.dl-skeleton{grid-template-columns:1fr}}

.dl-loading .dl-grid{display:none}
.dl-loading .dl-skeleton{display:grid}

.sk-card{padding:16px;border-radius:16px;border:1px solid rgba(255,255,255,.08);background:rgba(18,24,35,.55);position:relative;overflow:hidden}
.sk-card:before{
  content:'';position:absolute;inset:-60px;
  background:linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.08), rgba(255,255,255,0));
  transform:translateX(-40%);
  animation:dlShimmer 1.2s ease-in-out infinite;
}
@keyframes dlShimmer{to{transform:translateX(40%)}}

.sk-line{height:12px;border-radius:10px;background:rgba(255,255,255,.10);margin-bottom:10px}
.sk-line.w-60{width:60%}
.sk-line.w-40{width:40%}
.sk-pills{display:flex;gap:8px;margin-top:10px}
.sk-pill{height:34px;flex:1;border-radius:10px;background:rgba(255,255,255,.09)}
.sk-btn{height:28px;width:92px;border-radius:999px;background:rgba(255,255,255,.10);margin-top:12px;margin-left:auto}

/* Landing article */
.article-card{border-color:rgba(46,255,193,.22)}
.article-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px;margin-top:14px}
.article-list{margin:0;padding-left:18px}
.article-list li{margin:8px 0;line-height:1.55}

/* Admin polish */
.pill{display:inline-flex;align-items:center;gap:8px;padding:6px 10px;border-radius:999px;border:1px solid rgba(46,255,193,.22);background:rgba(0,0,0,.25);font-size:12px;color:rgba(255,255,255,.82)}
.admin-grid{display:grid;grid-template-columns:420px 1fr;gap:14px}
.admin-form input[type="text"],
.admin-form input[type="number"],
.admin-form input[type="file"],
.admin-form input{width:100%}
.table tr:hover td{background:rgba(255,255,255,.03)}

/* FOOTER */
.site-footer{margin-top:26px;border-top:1px solid var(--line);background:rgba(11,15,20,.55)}
.footer-inner{max-width:1120px;margin:0 auto;padding:16px;display:flex;justify-content:space-between;gap:10px;flex-wrap:wrap}
.footer-links{display:flex;gap:12px;flex-wrap:wrap}

/* PAGES */
.page-head{padding-top:14px}
.page-head h1{margin:0}
.page-head p{margin:8px 0 0 0}

/* MOBILE */
@media (max-width: 860px){
  .hero{grid-template-columns:1fr}
  .hero-slider{height:280px}
  .quick-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width: 680px){
  .menu-toggle{display:block}
  .nav-menu{
    position:fixed;left:0;right:0;top:62px;
    padding:12px 16px;
    background:rgba(11,15,20,.95);
    border-bottom:1px solid var(--line);
    display:none;
    flex-direction:column;align-items:stretch;
  }
  .nav-menu.active{display:flex}
  .nav-menu a{padding:12px 12px;border:1px solid var(--line);background:rgba(15,22,34,.6)}
  .ticker-inner{animation-duration: 18s}
  .logo .logo-tagline{display:none}
  .article-grid{grid-template-columns:1fr}
  .admin-grid{grid-template-columns:1fr}
  .prediksi-search{margin-right:0 !important}
}

.form{display:grid;gap:10px}

.nav-actions{display:flex;gap:10px;align-items:center;flex-wrap:wrap}
.nav-cta.primary{border-color:#225a7a;background:linear-gradient(180deg, rgba(15,42,59,.95), rgba(15,22,34,.85))}

/* Mobile Livechat floating button */
.lc-float{position:fixed;right:14px;bottom:14px;z-index:99;padding:12px 14px;border-radius:999px;border:1px solid rgba(34,197,94,.35);background:rgba(34,197,94,.14);color:#d8ffe7;font-weight:800;backdrop-filter:blur(10px)}
.lc-float:hover{text-decoration:none;filter:brightness(1.05)}
@media (min-width: 900px){.lc-float{display:none}}

/* CTA 4 buttons */
.cta-4{display:grid;grid-template-columns:repeat(4,1fr);gap:10px;align-items:stretch}
@media (max-width: 720px){.cta-4{grid-template-columns:repeat(2,1fr)}}

/* =========================
   Prediksi (grid + detail)
   ========================= */
.pred-grid{
  margin-top:14px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
@media (max-width: 980px){.pred-grid{grid-template-columns:repeat(2,1fr)}}
@media (max-width: 640px){.pred-grid{grid-template-columns:1fr}}

.pred-card{
  position:relative;
  border:2px solid rgba(0,255,170,.55);
  border-radius:14px;
  overflow:hidden;
  min-height:170px;
  background: var(--predbg, rgba(0,0,0,.55));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.pred-card::before{
  content:"";
  position:absolute;inset:0;
  background:
    radial-gradient(800px 260px at 20% 0%, rgba(255,255,255,.10), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.55));
  pointer-events:none;
}
.pred-card-inner{
  position:relative;
  height:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:16px;
  gap:8px;
}
.pred-title{
  font-weight:900;
  letter-spacing:.8px;
  font-size:30px;
  text-shadow:0 2px 10px rgba(0,0,0,.55);
}
.pred-date{
  font-weight:800;
  letter-spacing:.6px;
  text-shadow:0 2px 10px rgba(0,0,0,.55);
}
.pred-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 18px;
  border-radius:12px;
  background:linear-gradient(180deg, #00c27a, #007a4a);
  border:1px solid rgba(255,255,255,.14);
  color:#fff;
  font-weight:900;
  letter-spacing:.5px;
  box-shadow:0 10px 18px rgba(0,0,0,.32);
}
.pred-btn:hover{text-decoration:none;filter:brightness(1.06)}
.pred-meta{
  margin-top:2px;
  font-weight:800;
  font-size:12px;
  letter-spacing:.4px;
  color:rgba(255,255,255,.92);
  text-shadow:0 2px 10px rgba(0,0,0,.55);
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  justify-content:center;
}

.pred-detail{
  margin-top:14px;
  border:2px solid rgba(255,255,255,.10);
  border-radius:16px;
  overflow:hidden;
  background:rgba(0,0,0,.35);
  box-shadow:0 12px 28px rgba(0,0,0,.35);
}
.pred-detail-head{
  background:linear-gradient(180deg, #00b56f, #006b3f);
  border-bottom:1px solid rgba(255,255,255,.12);
  padding:14px 16px;
  text-align:center;
}
.pred-detail-title{font-weight:900;letter-spacing:.8px;font-size:24px}
.pred-detail-sub{margin-top:6px;font-weight:900;letter-spacing:.6px}
.pred-detail-body{padding:14px 16px;background:rgba(0,0,0,.25)}

.pred-table{
  border:2px solid rgba(255,255,255,.14);
  border-radius:12px;
  overflow:hidden;
}
.pred-row{display:grid;grid-template-columns:1.2fr 1fr;border-top:1px solid rgba(255,255,255,.10)}
.pred-row:first-child{border-top:none}
.pred-k{
  padding:12px 12px;
  background:linear-gradient(180deg, #00b56f, #006b3f);
  font-weight:900;
  letter-spacing:.6px;
  text-align:center;
}
.pred-v{
  padding:12px 12px;
  background:rgba(0,0,0,.45);
  font-weight:900;
  letter-spacing:.6px;
  text-align:center;
}

.pred-wide{
  margin-top:12px;
  border:2px solid rgba(255,255,255,.14);
  border-radius:12px;
  overflow:hidden;
}
.pred-wide-head{
  padding:12px;
  text-align:center;
  background:linear-gradient(180deg, #00b56f, #006b3f);
  font-weight:900;
  letter-spacing:.8px;
}
.pred-wide-body{
  padding:12px;
  text-align:center;
  background:rgba(0,0,0,.45);
  font-weight:900;
  letter-spacing:.8px;
}

.pred-actions{
  margin-top:12px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
@media (max-width: 560px){.pred-actions{grid-template-columns:1fr}}
.pred-action{
  display:flex;align-items:center;justify-content:center;
  padding:12px 14px;
  border-radius:12px;
  background:linear-gradient(180deg, #00b56f, #006b3f);
  border:1px solid rgba(255,255,255,.14);
  color:#fff;
  font-weight:900;
  letter-spacing:.6px;
}
.pred-action:hover{text-decoration:none;filter:brightness(1.06)}
.pred-note{margin-top:10px;font-size:13px;line-height:1.35}



/* Data Lengkap (clean emerald table + filters) */
.data-tools{display:flex;gap:10px;flex-wrap:wrap;align-items:center;justify-content:space-between;margin-top:12px}
.data-tools .left{display:flex;gap:10px;flex-wrap:wrap;align-items:center}
.data-tools .right{display:flex;gap:10px;flex-wrap:wrap;align-items:center}
.input, select.input{
  padding:10px 12px;border-radius:12px;
  border:1px solid var(--line);
  background:rgba(15,22,34,.6);
  color:var(--text);
  outline:none;
}
.input:focus{border-color:rgba(46,255,193,.45);box-shadow:0 0 0 3px rgba(46,255,193,.12)}
.badge{
  display:inline-flex;align-items:center;justify-content:center;
  padding:6px 10px;border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(0,0,0,.35);
  font-weight:900;font-size:12px;letter-spacing:.4px;
}
.badge-red{border-color:rgba(255,60,60,.35);background:rgba(255,60,60,.12);color:#ffd0d0}
.badge-green{border-color:rgba(46,255,193,.28);background:rgba(46,255,193,.10)}
.badge-amber{border-color:rgba(255,214,0,.35);background:rgba(255,214,0,.12);color:#ffeaa3}

.data-table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.14);
  border-radius:16px;
  background:rgba(0,0,0,.25);
}
.data-table th, .data-table td{padding:12px 10px;border-bottom:1px solid rgba(255,255,255,.10);text-align:left;vertical-align:middle}
.data-table thead th{
  background:linear-gradient(180deg, #00b56f, #006b3f);
  color:#fff;
  font-weight:900;
  letter-spacing:.6px;
  font-size:13px;
  position:sticky;top:0;z-index:1;
}
.data-table tbody tr{cursor:pointer}
.data-table tbody tr:hover td{background:rgba(255,255,255,.03)}
.data-table tbody tr:last-child td{border-bottom:none}
.num-pill{
  display:inline-flex;align-items:center;justify-content:center;
  min-width:62px;
  padding:8px 10px;border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(0,0,0,.40);
  font-weight:950;letter-spacing:.8px;
}
.num-p1{border-color:rgba(255,60,60,.35);background:rgba(255,60,60,.12);color:#ffd0d0}
.num-p2{border-color:rgba(46,255,193,.28);background:rgba(46,255,193,.10)}
.num-p3{border-color:rgba(77,210,255,.25);background:rgba(77,210,255,.08)}
.table-actions{display:flex;gap:8px;flex-wrap:wrap;justify-content:flex-end}
.btn-yellow{background:linear-gradient(180deg,#f7c948,#b7791f);border-color:rgba(255,255,255,.18);color:#1b1205}
.btn-yellow:hover{filter:brightness(1.05);text-decoration:none}

.pager{display:flex;gap:8px;flex-wrap:wrap;align-items:center;justify-content:center;margin-top:14px}
.pager a,.pager span{
  padding:8px 12px;border-radius:12px;
  border:1px solid var(--line);
  background:rgba(15,22,34,.6);
  color:var(--text);
  font-weight:850;
}
.pager a:hover{text-decoration:none;border-color:#2d4364}
.pager .current{background:rgba(46,255,193,.12);border-color:rgba(46,255,193,.28)}
.pager .disabled{opacity:.55}

/* Modal (detail view) */
.modal-backdrop{
  position:fixed;inset:0;background:rgba(0,0,0,.6);
  display:none;align-items:center;justify-content:center;
  padding:18px;z-index:9999;
}
.modal-backdrop.active{display:flex}
.modal{
  width:min(720px, 100%);
  border-radius:18px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(18,24,35,.96);
  box-shadow:0 18px 44px rgba(0,0,0,.5);
  overflow:hidden;
}
.modal-head{
  display:flex;align-items:center;justify-content:space-between;gap:10px;
  padding:14px 16px;
  background:linear-gradient(180deg, #00b56f, #006b3f);
  color:#fff;
}
.modal-title{font-weight:950;letter-spacing:.6px}
.modal-close{background:rgba(0,0,0,.25);border:1px solid rgba(255,255,255,.18);color:#fff;border-radius:12px;padding:8px 10px;cursor:pointer;font-weight:900}
.modal-body{padding:14px 16px}
.detail-grid{display:grid;grid-template-columns:1fr 1fr;gap:10px}
@media (max-width: 720px){
  .data-table thead{display:none}
  .data-table{border:none;background:transparent}
  .data-table, .data-table tbody, .data-table tr, .data-table td{display:block;width:100%}
  .data-table tr{
    border:1px solid rgba(255,255,255,.12);
    background:linear-gradient(145deg, rgba(18,24,35,.78), rgba(8,14,16,.62));
    border-radius:16px;
    overflow:hidden;
    margin-bottom:10px;
    box-shadow:0 10px 22px rgba(0,0,0,.18);
  }
  .data-table td{
    border-bottom:1px solid rgba(255,255,255,.08);
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    padding:12px 12px;
  }
  .data-table td:last-child{border-bottom:none}
  .data-table td[data-label]::before{
    content:attr(data-label);
    color:rgba(255,255,255,.72);
    font-weight:900;
    letter-spacing:.4px;
  }
  .table-actions{justify-content:flex-start}
  .detail-grid{grid-template-columns:1fr}
}


/* =============================
   INDEX / NAV HOVER ANIMATIONS
   ============================= */

/* Smooth hover for buttons */
.btn{
  transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease, filter .18s ease;
  will-change:transform;
}
.btn:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 22px rgba(0,0,0,.22);
}
.btn:active{transform:translateY(-1px) scale(.99)}

/* Navbar links: underline + lift */
.nav-menu a{
  position:relative;
  transition:transform .18s ease, background .18s ease, color .18s ease;
}
.nav-menu a::after{
  content:"";
  position:absolute;
  left:12px;
  right:12px;
  bottom:6px;
  height:2px;
  border-radius:2px;
  background:linear-gradient(90deg, rgba(46,255,193,.0), rgba(46,255,193,.85), rgba(46,255,193,.0));
  opacity:0;
  transform:translateY(4px);
  transition:opacity .18s ease, transform .18s ease;
}
.nav-menu a:hover{
  transform:translateY(-1px);
}
.nav-menu a:hover::after{
  opacity:1;
  transform:translateY(0);
}

/* Quick menu tiles */
.quick{
  transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease;
  will-change:transform;
}
.quick:hover{
  transform:translateY(-3px);
  border-color:rgba(46,255,193,.35);
  box-shadow:0 14px 26px rgba(0,0,0,.22);
}
.quick:active{transform:translateY(-1px) scale(.99)}

/* CTA row buttons: tiny pulse glow on hover */
.cta-row .btn:hover{
  filter:brightness(1.04);
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce){
  .btn, .nav-menu a, .quick{transition:none !important}
  .nav-menu a::after{transition:none !important}
}


/* ===== Promo page ===== */
.promo-layout{display:flex;flex-direction:column;gap:16px}
.promo-row{display:grid;grid-template-columns:1fr 220px;gap:18px;align-items:center}
.promo-item{display:block;border-radius:14px;overflow:hidden;border:1px solid rgba(0,255,170,.15);background:rgba(0,0,0,.25);box-shadow:0 10px 30px rgba(0,0,0,.25)}
.promo-item img{width:100%;display:block}
.promo-row-actions{display:flex;flex-direction:column;gap:10px}
.btn-wide{width:100%;text-align:center}
.btn-gold{background:linear-gradient(90deg,#ffd54f,#ffb300);color:#000;border:0}
.btn-gold2{background:linear-gradient(90deg,#ffb300,#ffd54f);color:#000;border:0}
@media(max-width:900px){
  .promo-row{grid-template-columns:1fr}
  .promo-row-actions{flex-direction:row}
  .promo-row-actions .btn-wide{width:auto;flex:1}
}
.promo-detail{display:grid;grid-template-columns:1fr;gap:14px;align-items:start}
.promo-banner{width:100%;border-radius:16px;border:1px solid rgba(0,255,170,.15);display:block}
.promo-box{border-radius:16px;border:1px solid rgba(0,255,170,.12);background:rgba(0,0,0,.25);padding:16px}
.promo-title{margin:0 0 10px 0}
.promo-detail-actions{display:flex;gap:10px;flex-wrap:wrap;margin-bottom:10px}
.promo-terms p{margin:0 0 10px 0;color:rgba(255,255,255,.9);line-height:1.6}
@media (max-width: 900px){
  .promo-layout{grid-template-columns:1fr}
  .promo-side{position:static;display:none}
  .promo-detail{grid-template-columns:1fr}
}

/* ===== Bonus article ===== */
.article h2{margin-top:16px}
.article ol{padding-left:18px}
.article li{margin:8px 0;color:rgba(255,255,255,.92);line-height:1.6}
.callout{margin-top:14px;padding:12px 14px;border-radius:14px;background:rgba(0,255,170,.08);border:1px solid rgba(0,255,170,.18)}
.cta-row{display:flex;gap:12px;flex-wrap:wrap;margin-top:16px}




/* ==========================================
   BLACK EMERALD + SUBTLE GOLD – LUXURY EDITION
   Premium • Clean • Expensive Look
   ========================================== */

:root{
  --bg-black:#050807;
  --bg-emerald-dark:#071C14;
  --bg-emerald:#0B2B20;
  --gold:#FFD700;
  --gold-soft:#C9A227;
  --text-main:#EFFFF8;
  --text-muted:rgba(239,255,248,0.75);
}

/* Background */
body{
  background:
    radial-gradient(circle at 50% -20%, rgba(255,215,0,0.08), transparent 40%),
    radial-gradient(circle at 20% 20%, rgba(0,255,168,0.08), transparent 40%),
    linear-gradient(180deg, var(--bg-emerald-dark), var(--bg-black)) !important;
  color: var(--text-main) !important;
}

/* Headings – Subtle Gold Glow */
h1,h2,h3,h4,h5,h6{
  color: var(--gold) !important;
  text-shadow: 0 0 8px rgba(255,215,0,0.35);
}

/* Body text clean white */
p, span, div, li, label, td, th, small{
  color: var(--text-main) !important;
}

/* Muted text */
.text-muted, .muted, .form-text, .help-text{
  color: var(--text-muted) !important;
}

/* Navbar */
.navbar, header{
  background: linear-gradient(90deg, #061712, #0B2B20) !important;
  border-bottom: 1px solid rgba(255,215,0,0.18) !important;
}

/* Cards */
.card, .panel, .box, .content, .container, .wrapper{
  background: rgba(7,28,20,0.85) !important;
  border: 1px solid rgba(255,215,0,0.15) !important;
  box-shadow: 0 0 20px rgba(0,0,0,0.6);
}

/* Buttons – Emerald base, gold text */
.btn, button, .button, a.btn, input[type="submit"], input[type="button"]{
  background: linear-gradient(45deg, #00C98D, #00FFA8) !important;
  border: 1px solid rgba(255,215,0,0.35) !important;
  color: var(--gold) !important;
  text-shadow: 0 0 6px rgba(255,215,0,0.4);
  box-shadow: 0 0 12px rgba(0,255,168,0.25);
  transition: all 0.3s ease;
}

.btn:hover, button:hover{
  transform: translateY(-2px);
  box-shadow:
    0 0 18px rgba(0,255,168,0.45),
    0 0 12px rgba(255,215,0,0.25);
}

/* Links */
a, a:visited{
  color: var(--gold) !important;
}
a:hover{
  color: #FFF2A6 !important;
}

/* Forms */
input, select, textarea{
  background: rgba(5,8,7,0.7) !important;
  border: 1px solid rgba(255,215,0,0.2) !important;
  color: var(--text-main) !important;
}

input::placeholder, textarea::placeholder{
  color: rgba(239,255,248,0.5) !important;
}

/* Table header subtle gold */
thead th{
  color: var(--gold) !important;
  border-bottom: 1px solid rgba(255,215,0,0.25);
}

/* Very subtle luxury particles */
@keyframes goldDrift {
  0% { background-position: 0 0; }
  100% { background-position: 0 800px; }
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background-image: radial-gradient(rgba(255,215,0,0.18) 1px, transparent 1px);
  background-size: 4px 4px;
  opacity:0.04;
  animation: goldDrift 60s linear infinite;
}



/* ==========================================
   BLACK EMERALD – REFINED PREMIUM EDITION
   Balanced Green (Not too bright, not too dark)
   ========================================== */

:root{
  --bg-black:#050807;
  --bg-deep:#071C14;
  --bg-emerald:#0F3326;
  --emerald-main:#18C29C;      /* balanced emerald */
  --emerald-soft:#149174;
  --emerald-accent:#1ED7A8;
  --text-main:#E8FFF8;
  --text-muted:rgba(232,255,248,0.70);
}

/* Background refined */
body{
  background:
    radial-gradient(circle at 20% 10%, rgba(24,194,156,0.08), transparent 45%),
    linear-gradient(180deg, var(--bg-deep), var(--bg-black)) !important;
  color: var(--text-main) !important;
}

/* Headings – Emerald subtle glow (no yellow) */
h1,h2,h3,h4,h5,h6{
  color: var(--emerald-main) !important;
  text-shadow: 0 0 10px rgba(24,194,156,0.25);
}

/* Body text */
p, span, div, li, label, td, th, small{
  color: var(--text-main) !important;
}

/* Muted text */
.text-muted, .muted, .form-text, .help-text{
  color: var(--text-muted) !important;
}

/* Navbar */
.navbar, header{
  background: linear-gradient(90deg, #081F17, #0F3326) !important;
  border-bottom: 1px solid rgba(24,194,156,0.25) !important;
}

/* Cards */
.card, .panel, .box, .content, .container, .wrapper{
  background: rgba(10,30,22,0.85) !important;
  border: 1px solid rgba(24,194,156,0.20) !important;
  box-shadow: 0 0 18px rgba(0,0,0,0.6);
}

/* Buttons – Emerald refined */
.btn, button, .button, a.btn, input[type="submit"], input[type="button"]{
  background: linear-gradient(45deg, var(--emerald-main), var(--emerald-soft)) !important;
  border: 1px solid rgba(24,194,156,0.35) !important;
  color: #02110B !important;
  box-shadow: 0 0 10px rgba(24,194,156,0.25);
  transition: all 0.3s ease;
}

.btn:hover, button:hover{
  transform: translateY(-2px);
  box-shadow:
    0 0 16px rgba(24,194,156,0.45),
    0 0 8px rgba(24,194,156,0.25);
}

/* Links */
a, a:visited{
  color: var(--emerald-accent) !important;
}
a:hover{
  color: #6FFFD6 !important;
}

/* Forms */
input, select, textarea{
  background: rgba(5,8,7,0.75) !important;
  border: 1px solid rgba(24,194,156,0.25) !important;
  color: var(--text-main) !important;
}

input::placeholder, textarea::placeholder{
  color: rgba(232,255,248,0.5) !important;
}

/* Table header emerald accent */
thead th{
  color: var(--emerald-main) !important;
  border-bottom: 1px solid rgba(24,194,156,0.25);
}
