/*
Theme Name: Netivoti Gold Royale
Theme URI: https://netivoti.co.il
Author: Netivoti
Description: תבנית VIP מותאמת לכרטיסי גירוד — Gold Vault Design
Version: 3.0
Text Domain: netivoti
Tags: dark, rtl, gaming
*/

/* =====================================================
   CSS VARIABLES
===================================================== */
:root {
  --gold:          #f5ce53;
  --gold-dark:     #c09d24;
  --gold-dim:      #e6c047;
  --red:           #ff7072;
  --red-dark:      #ad0224;
  --green:         #8eff71;
  --green-bright:  #2ff801;
  --bg:            #0e0e0e;
  --surface-low:   #131313;
  --surface:       #1a1919;
  --surface-high:  #201f1f;
  --surface-top:   #262626;
  --text:          #ffffff;
  --text-muted:    #adaaaa;
  --outline:       rgba(255,255,255,0.07);
  --nav-h:         72px;
  --sidebar-w:     260px;
  --radius-sm:     8px;
  --radius-md:     14px;
  --radius-lg:     20px;
  --radius-xl:     28px;
}

/* =====================================================
   RESET & BASE
===================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--bg) !important;
  color: var(--text);
  font-family: 'Manrope', 'Arial', sans-serif;
  direction: rtl;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* =====================================================
   TYPOGRAPHY
===================================================== */
.font-headline { font-family: 'Epilogue', 'Arial Black', sans-serif; }
h1, h2, h3 { font-family: 'Epilogue', 'Arial Black', sans-serif; line-height: 1.1; }

/* =====================================================
   LAYOUT HELPERS
===================================================== */
.nv-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.nv-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.nv-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 8px; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }
.text-center { text-align: center; }
.hidden { display: none !important; }

/* =====================================================
   TOP NAVIGATION
===================================================== */
#nv-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(14,14,14,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--outline);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
}
body.admin-bar #nv-nav { top: 32px; }
@media (max-width: 782px) { body.admin-bar #nv-nav { top: 46px; } }

.nv-logo {
  font-family: 'Epilogue', 'Arial Black', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold);
  text-shadow: 0 2px 12px rgba(245,206,83,0.4);
  letter-spacing: -0.02em;
}

.nv-nav-links { display: flex; gap: 24px; align-items: center; }
.nv-nav-links a {
  font-family: 'Epilogue', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nv-nav-links a:hover,
.nv-nav-links a.active { color: var(--gold); }
.nv-nav-links a.active { border-bottom: 2px solid var(--gold); padding-bottom: 2px; }

.nv-nav-actions { display: flex; gap: 12px; align-items: center; }
.nv-btn-login {
  padding: 8px 16px;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nv-btn-login:hover { color: var(--gold); }

.nv-btn-join {
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #2c2100;
  font-weight: 900;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 20px rgba(245,206,83,0.25);
  transition: transform 0.15s, box-shadow 0.2s;
  letter-spacing: 0.03em;
}
.nv-btn-join:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(245,206,83,0.4);
}

/* Mobile menu toggle */
.nv-menu-toggle {
  display: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  padding: 8px;
}
.nv-menu-toggle:hover { color: var(--gold); }

/* Mobile dropdown */
#nv-mobile-menu {
  position: fixed;
  top: var(--nav-h);
  right: 0; left: auto;
  width: 260px;
  height: calc(100vh - var(--nav-h));
  background: rgba(14,14,14,0.98);
  backdrop-filter: blur(20px);
  border-left: 1px solid var(--outline);
  z-index: 999;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}
#nv-mobile-menu a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--outline);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-muted);
  transition: color 0.2s, padding-right 0.2s;
}
#nv-mobile-menu a:hover { color: var(--gold); padding-right: 8px; }
#nv-mobile-menu a:last-child { border-bottom: none; }

/* =====================================================
   SIDEBAR (desktop only)
===================================================== */
#nv-sidebar {
  position: fixed;
  right: 0; top: var(--nav-h); bottom: 0;
  width: var(--sidebar-w);
  background: var(--bg);
  border-right: 1px solid var(--outline);
  z-index: 100;
  display: flex;
  flex-direction: column;
  padding: 24px 16px;
  overflow-y: auto;
}

.nv-vip-card {
  background: var(--surface-top);
  border-radius: var(--radius-md);
  border: 1px solid rgba(245,206,83,0.12);
  padding: 16px;
  margin-bottom: 20px;
}
.nv-vip-card .label {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.nv-vip-card .title {
  font-family: 'Epilogue', sans-serif;
  font-weight: 900;
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 12px;
}
.nv-vip-card .pts-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.nv-vip-card .pts-val {
  font-family: 'Epilogue', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
}

.nv-sidebar-nav { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.nv-sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s;
}
.nv-sidebar-nav a:hover {
  background: var(--surface-top);
  color: var(--text);
  padding-right: 18px;
}
.nv-sidebar-nav a.active {
  background: linear-gradient(90deg, rgba(245,206,83,0.15), transparent);
  color: var(--gold);
  border-right: 3px solid var(--gold);
}
.nv-sidebar-nav .icon {
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
  display: inline-block;
}

.nv-sidebar-cta {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--outline);
}
.nv-sidebar-cta a {
  display: block;
  text-align: center;
  padding: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #2c2100;
  font-weight: 900;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px rgba(245,206,83,0.2);
  transition: brightness 0.2s, transform 0.15s;
  font-size: 0.9rem;
}
.nv-sidebar-cta a:hover { filter: brightness(1.1); transform: translateY(-1px); }

/* =====================================================
   MAIN CONTENT AREA
===================================================== */
#nv-main {
  padding-top: calc(var(--nav-h) + 32px);
  padding-bottom: 80px;
  padding-left: 20px;
  padding-right: 20px;
  min-height: 100vh;
}

/* =====================================================
   PAGE HEADER
===================================================== */
.nv-page-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.nv-page-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: var(--text);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.nv-page-subtitle {
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 500;
}

/* Points bento */
.nv-points-bento {
  display: flex;
  align-items: center;
  background: var(--surface-top);
  border-radius: var(--radius-lg);
  border: 1px solid var(--outline);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  flex-shrink: 0;
}
.nv-points-bento .pts-block { padding: 14px 22px; }
.nv-points-bento .pts-lbl {
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.nv-points-bento .pts-num {
  font-family: 'Epilogue', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.nv-points-bento .pts-unit {
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(245,206,83,0.5);
  margin-right: 4px;
}
.nv-points-bento .divider {
  width: 1px;
  height: 48px;
  background: var(--outline);
}
.nv-points-bento .add-block {
  padding: 12px 18px;
  display: flex;
  align-items: center;
}
.nv-points-bento .add-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(245,206,83,0.1);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  transition: background 0.2s;
}
.nv-points-bento .add-btn:hover { background: rgba(245,206,83,0.2); }

/* =====================================================
   GAME LAYOUT (index page)
===================================================== */
.nv-game-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 24px;
  align-items: start;
}

/* Scratch Card Container */
.nv-scratch-card {
  position: relative;
  background: var(--surface-low);
  border-radius: var(--radius-xl);
  padding: 24px;
  border: 1px solid var(--outline);
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
  overflow: hidden;
}
.nv-scratch-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(245,206,83,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.nv-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.nv-live-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}
.nv-live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #ef4444;
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

/* Scratch plugin wrapper — override plugin CSS */
.nv-scratch-body .city-scratch-wrap {
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  border: none !important;
}

/* =====================================================
   SIDEBAR PANELS (right column on index)
===================================================== */
.nv-side-panels { display: flex; flex-direction: column; gap: 20px; }

.nv-panel {
  background: var(--surface-high);
  border-radius: var(--radius-xl);
  border: 1px solid var(--outline);
  overflow: hidden;
}
.nv-panel-header {
  padding: 16px 20px 0;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Try again card */
.nv-result-card {
  border-right: 4px solid var(--red);
}
.nv-result-card .inner {
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.nv-result-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(255,112,114,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.nv-result-title { font-weight: 900; font-size: 1.1rem; margin-bottom: 4px; }
.nv-result-sub { color: var(--text-muted); font-size: 0.85rem; line-height: 1.5; }

/* Winners list */
.nv-winner-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  border-bottom: 1px solid var(--outline);
  transition: background 0.15s;
}
.nv-winner-row:last-child { border-bottom: none; }
.nv-winner-row:hover { background: rgba(255,255,255,0.03); }
.nv-winner-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--surface-top);
  border: 1px solid var(--outline);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  flex-shrink: 0;
}
.nv-winner-name { font-weight: 700; font-size: 0.9rem; }
.nv-winner-time { font-size: 0.7rem; color: var(--text-muted); margin-top: 2px; }
.nv-winner-badge {
  color: var(--green);
  font-weight: 900;
  font-size: 0.85rem;
}

/* Jackpot Banner */
.nv-jackpot-banner {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1a1200 0%, #261a00 50%, #0e0e0e 100%);
  display: flex;
  align-items: flex-end;
}
.nv-jackpot-bg-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -60%);
  font-size: 5rem;
  opacity: 0.08;
}
.nv-jackpot-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg) 0%, transparent 60%);
}
.nv-jackpot-content {
  position: relative;
  padding: 20px;
  z-index: 1;
}
.nv-jackpot-label {
  font-size: 0.6rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--red);
  margin-bottom: 4px;
}
.nv-jackpot-amount {
  font-family: 'Epilogue', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.02em;
}

/* =====================================================
   WINNERS PAGE
===================================================== */
.nv-stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.nv-stat-card {
  background: var(--surface-low);
  border-radius: var(--radius-md);
  border: 1px solid var(--outline);
  padding: 20px 16px;
  text-align: center;
}
.nv-stat-icon { font-size: 1.8rem; margin-bottom: 8px; }
.nv-stat-val {
  font-family: 'Epilogue', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
}
.nv-stat-lbl {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-top: 4px;
}

.nv-winners-table {
  background: var(--surface-low);
  border-radius: var(--radius-xl);
  border: 1px solid var(--outline);
  overflow: hidden;
}
.nv-table-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid var(--outline);
  transition: background 0.15s;
}
.nv-table-row:last-child { border-bottom: none; }
.nv-table-row:nth-child(even) { background: rgba(255,255,255,0.02); }
.nv-table-row:hover { background: rgba(245,206,83,0.04); }

/* =====================================================
   VIP PAGE
===================================================== */
.nv-packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.nv-pkg-card {
  background: var(--surface-low);
  border-radius: var(--radius-xl);
  border: 2px solid var(--outline);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.nv-pkg-card:hover { border-color: rgba(245,206,83,0.2); }
.nv-pkg-card.popular {
  border-color: rgba(245,206,83,0.35);
  box-shadow: 0 0 60px rgba(245,206,83,0.1);
  margin-top: -12px;
}
.nv-pkg-badge {
  position: absolute;
  top: -12px;
  left: 50%; transform: translateX(-50%);
  background: var(--gold);
  color: #2c2100;
  font-weight: 900;
  font-size: 0.7rem;
  padding: 4px 14px;
  border-radius: 999px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.nv-pkg-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: var(--surface-top);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.nv-pkg-name {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.nv-pkg-pts {
  font-family: 'Epilogue', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 16px;
}
.nv-pkg-pts span { color: var(--gold); }
.nv-pkg-price {
  font-family: 'Epilogue', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 20px;
}
.popular .nv-pkg-price { color: var(--gold); }
.nv-pkg-perks { list-style: none; display: flex; flex-direction: column; gap: 10px; flex: 1; margin-bottom: 24px; }
.nv-pkg-perks li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.nv-pkg-perks li::before {
  content: '✓';
  color: var(--green);
  font-weight: 900;
  flex-shrink: 0;
}
.nv-pkg-btn {
  width: 100%;
  padding: 14px;
  border-radius: var(--radius-md);
  font-weight: 900;
  font-size: 0.95rem;
  transition: all 0.2s;
  letter-spacing: 0.03em;
}
.nv-pkg-btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #2c2100;
  box-shadow: 0 4px 20px rgba(245,206,83,0.25);
}
.nv-pkg-btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(245,206,83,0.4);
}
.nv-pkg-btn-secondary {
  background: var(--surface-top);
  color: var(--text);
}
.nv-pkg-btn-secondary:hover { background: var(--surface-high); }

/* =====================================================
   FOOTER
===================================================== */
#nv-footer {
  background: var(--bg);
  border-top: 1px solid var(--outline);
  padding: 48px 24px 80px;
  text-align: center;
}
.nv-footer-logo {
  font-family: 'Epilogue', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 20px;
}
.nv-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}
.nv-footer-links a {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nv-footer-links a:hover { color: var(--red); }
.nv-footer-copy {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}

/* =====================================================
   MOBILE BOTTOM NAV
===================================================== */
#nv-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 64px;
  background: rgba(14,14,14,0.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--outline);
  z-index: 1000;
  align-items: center;
  justify-content: space-around;
  padding: 0 8px;
}
.nv-bottom-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 8px 12px;
  color: var(--text-muted);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.2s;
  text-decoration: none;
}
.nv-bottom-item:hover,
.nv-bottom-item.active { color: var(--gold); }
.nv-bottom-item .icon { font-size: 1.3rem; }
.nv-bottom-fab {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  margin-top: -24px;
  border: 4px solid var(--bg);
  box-shadow: 0 4px 20px rgba(245,206,83,0.4);
  font-size: 1.3rem;
  color: #2c2100;
  transition: transform 0.15s;
  text-decoration: none;
}
.nv-bottom-fab:hover { transform: scale(1.08); }

/* =====================================================
   PLUGIN OVERRIDES — city-scratch-cards
===================================================== */
.csc-logo-wrap { text-align: center !important; }
.csc-logo { margin-left: auto !important; margin-right: auto !important; display: block !important; }
.city-scratch-wrap {
  background: var(--surface-low) !important;
  color: var(--text) !important;
  border-radius: var(--radius-lg) !important;
  border: 1px solid var(--outline) !important;
  border-top: 2px solid var(--gold) !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5) !important;
  font-family: 'Manrope', Arial, sans-serif !important;
  max-width: 100% !important;
}
.city-scratch-wrap h1 {
  font-family: 'Epilogue', Arial, sans-serif !important;
  font-weight: 900 !important;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}
.csc-subtitle { color: var(--text-muted) !important; }
.csc-auth-box {
  background: var(--surface-high) !important;
  border: 1px solid var(--outline) !important;
  border-radius: var(--radius-md) !important;
}
.csc-auth-title { color: var(--gold) !important; }
.csc-form-wrap input,
.csc-auth-box input[type=text],
.csc-auth-box input[type=email],
.csc-auth-box input[type=password] {
  background: var(--bg) !important;
  color: var(--text) !important;
  border: 1px solid var(--outline) !important;
  border-radius: var(--radius-sm) !important;
  font-family: 'Manrope', Arial, sans-serif !important;
}
.csc-form-wrap input:focus,
.csc-auth-box input:focus {
  border-color: var(--green) !important;
  box-shadow: 0 0 0 3px rgba(142,255,113,0.15) !important;
  outline: none !important;
}
.csc-auth-submit-btn,
.csc-start-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: #2c2100 !important;
  font-weight: 900 !important;
  font-family: 'Manrope', Arial, sans-serif !important;
  border-radius: var(--radius-sm) !important;
  box-shadow: 0 4px 20px rgba(245,206,83,0.3) !important;
  transition: transform 0.15s, box-shadow 0.2s !important;
  border: none !important;
}
.csc-start-btn:hover,
.csc-auth-submit-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 32px rgba(245,206,83,0.5) !important;
}
.csc-start-btn[disabled] { opacity: 0.4 !important; transform: none !important; }
.csc-user-header {
  background: var(--surface-high) !important;
  border: 1px solid var(--outline) !important;
  border-radius: var(--radius-sm) !important;
  color: var(--text) !important;
}
.csc-user-greeting { color: var(--text) !important; }
.csc-points-badge {
  background: rgba(245,206,83,0.15) !important;
  color: var(--gold) !important;
  border: 1px solid rgba(245,206,83,0.35) !important;
  border-radius: 999px !important;
}
.csc-logout-btn { color: var(--text-muted) !important; }
.csc-msg {
  background: var(--surface-high) !important;
  color: var(--gold) !important;
  border: 1px solid rgba(245,206,83,0.2) !important;
  border-radius: var(--radius-sm) !important;
}
.csc-tab.active { color: var(--gold) !important; border-bottom-color: var(--gold) !important; }
.csc-tab { color: var(--text-muted) !important; background: transparent !important; }
.csc-auth-tabs { border-bottom-color: var(--outline) !important; }
.csc-result-text { color: var(--green) !important; font-weight: 900 !important; }
.csc-share-box {
  background: var(--surface-high) !important;
  border: 1px solid var(--outline) !important;
  border-top: 2px solid var(--red) !important;
  border-radius: var(--radius-lg) !important;
}
.csc-share-title { color: var(--text) !important; }
.csc-nopoints-box {
  background: var(--surface-high) !important;
  border: 1px solid var(--outline) !important;
  border-top: 2px solid var(--gold) !important;
  border-radius: var(--radius-lg) !important;
}
.csc-nopoints-title { color: var(--gold) !important; }
.csc-nopoints-sub, .csc-share-sub { color: var(--text-muted) !important; }
.csc-second-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: #2c2100 !important;
  font-weight: 900 !important;
  border-radius: var(--radius-sm) !important;
}
.csc-card-shell {
  border-radius: var(--radius-md) !important;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6), 0 0 0 1px rgba(245,206,83,0.1) !important;
}
.csc-auth-msg.error { background: rgba(139,0,0,0.2) !important; color: #f87171 !important; border: 1px solid rgba(139,0,0,0.3) !important; }
.csc-auth-msg.success { background: rgba(142,255,113,0.1) !important; color: var(--green) !important; border: 1px solid rgba(142,255,113,0.25) !important; }
.csc-dot { opacity: 0.15 !important; }
.csc-dot.done { opacity: 1 !important; }
.csc-dots-label, .csc-second-msg { color: var(--green) !important; }

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 1279px) {
  #nv-sidebar { display: none; }
  #nv-main { padding-right: 20px; }
}
@media (max-width: 767px) {
  .nv-menu-toggle { display: flex !important; }
  #nv-bottom-nav { display: flex; }
  #nv-main { padding-top: calc(var(--nav-h) + 12px); padding-bottom: 80px; padding-left: 8px; padding-right: 8px; }
  .nv-game-layout { grid-template-columns: 1fr; }
  .nv-stats-strip { grid-template-columns: repeat(2, 1fr); }
  .nv-packages { grid-template-columns: 1fr; }
  .nv-packages .nv-pkg-card.popular { margin-top: 0; }
  .nv-page-header { flex-direction: column; align-items: flex-start; }
  .nv-points-bento { width: 100%; }
  .nv-grid-2, .nv-grid-3 { grid-template-columns: 1fr; }
  #nv-footer { padding-bottom: 80px; }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .nv-game-layout { grid-template-columns: 1fr; }
  .nv-packages { grid-template-columns: repeat(2, 1fr); }
  .nv-packages .nv-pkg-card.popular { margin-top: 0; grid-column: 1/-1; max-width: 400px; margin-inline: auto; }
}

/* =====================================================
   SLOT MACHINE MOBILE FIX
===================================================== */
@media (max-width: 900px) {
  .nv-slot-grid {
    grid-template-columns: 1fr !important;
  }
}



