@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --bg: #080c24;
  --bg2: #0d1235;
  --bg3: #111840;
  --primary: #6c3de8;
  --primary-light: #8b5cf6;
  --accent: #00d4ff;
  --accent2: #ff6b6b;
  --green: #10b981;
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --border: rgba(108,61,232,0.3);
  --glass: rgba(13,18,53,0.7);
  --radius: 16px;
  --shadow: 0 8px 32px rgba(108,61,232,0.15);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }
input, button, select, textarea { font-family: inherit; }

/* SCROLLBAR */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* TYPOGRAPHY */
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; line-height: 1.1; }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); font-weight: 800; }
h3 { font-size: 1.25rem; font-weight: 700; }
p { color: var(--text-muted); }

/* GRADIENT TEXT */
.grad { background: linear-gradient(135deg, var(--primary-light), var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; border-radius: 50px; font-weight: 600; font-size: 0.95rem; cursor: pointer; border: none; text-decoration: none; transition: all 0.3s; }
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: #fff; box-shadow: 0 4px 20px rgba(108,61,232,0.4); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(108,61,232,0.6); }
.btn-accent { background: linear-gradient(135deg, var(--accent), #0099cc); color: #000; font-weight: 700; }
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,212,255,0.4); }
.btn-outline { background: transparent; border: 2px solid var(--border); color: var(--text); }
.btn-outline:hover { border-color: var(--primary); background: rgba(108,61,232,0.1); }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-lg { padding: 16px 40px; font-size: 1.05rem; }
.btn-green { background: linear-gradient(135deg, var(--green), #059669); color: #fff; box-shadow: 0 4px 20px rgba(16,185,129,0.4); }
.btn-green:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(16,185,129,0.6); }

/* GLASS CARD */
.card { background: var(--glass); backdrop-filter: blur(20px); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; transition: all 0.3s; }
.card:hover { border-color: var(--primary); box-shadow: var(--shadow); transform: translateY(-4px); }
.card-featured { border-color: var(--primary); box-shadow: 0 0 30px rgba(108,61,232,0.3); }

/* BADGE */
.badge { display: inline-block; padding: 4px 12px; border-radius: 50px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.badge-primary { background: rgba(108,61,232,0.3); color: var(--primary-light); border: 1px solid var(--primary); }
.badge-accent { background: rgba(0,212,255,0.2); color: var(--accent); border: 1px solid rgba(0,212,255,0.4); }
.badge-green { background: rgba(16,185,129,0.2); color: var(--green); border: 1px solid rgba(16,185,129,0.4); }
.badge-red { background: rgba(255,107,107,0.2); color: var(--accent2); border: 1px solid rgba(255,107,107,0.4); }

/* SECTION */
.section { padding: 80px 20px; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-title { text-align: center; margin-bottom: 60px; }
.section-title p { margin-top: 12px; font-size: 1.1rem; }

/* NAV */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 12px 16px; display: flex; align-items: center; justify-content: space-between; background: rgba(8,12,36,0.9); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); transition: all 0.3s; gap: 12px; }
.nav-logo { font-size: 1.25rem; font-weight: 900; background: linear-gradient(135deg, var(--primary-light), var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; white-space: nowrap; flex-shrink: 0; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--text-muted); transition: color 0.3s; white-space: nowrap; }
.nav-links a:hover { color: var(--text); }
.nav-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
#themeToggle { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1); border-radius: 10px; padding: 7px 10px; cursor: pointer; color: var(--text); font-size: .95rem; transition: all .2s; line-height: 1; }
#navAuthBtn { font-size: .82rem !important; padding: 7px 14px !important; white-space: nowrap; }
.cart-btn { position: relative; background: rgba(108,61,232,0.2); border: 1px solid var(--border); color: var(--text); padding: 7px 13px; border-radius: 50px; cursor: pointer; transition: all 0.3s; display: flex; align-items: center; gap: 5px; font-size: 0.85rem; white-space: nowrap; }
.cart-btn:hover { background: rgba(108,61,232,0.4); }
.cart-count { position: absolute; top: -5px; right: -5px; background: var(--accent2); color: #fff; width: 18px; height: 18px; border-radius: 50%; font-size: 0.65rem; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 6px; flex-shrink: 0; }
.hamburger span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; display: block; }

/* HERO */
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding-top: 80px; position: relative; overflow: hidden; text-align: center; }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(108,61,232,0.25) 0%, transparent 70%), radial-gradient(ellipse 60% 40% at 80% 80%, rgba(0,212,255,0.1) 0%, transparent 60%); }
.hero-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.particle { position: absolute; width: 2px; height: 2px; background: var(--accent); border-radius: 50%; animation: float linear infinite; opacity: 0.5; }
@keyframes float { 0% { transform: translateY(100vh) rotate(0); opacity: 0; } 10% { opacity: 0.5; } 90% { opacity: 0.5; } 100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; } }
.hero-content { position: relative; z-index: 1; max-width: 860px; margin: 0 auto; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(108,61,232,0.2); border: 1px solid var(--border); padding: 6px 18px; border-radius: 50px; font-size: 0.85rem; color: var(--accent); margin-bottom: 24px; }
.hero h1 { margin-bottom: 20px; }
.hero p { font-size: 1.15rem; margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* DOMAIN SEARCH BOX */
.search-box { background: var(--glass); backdrop-filter: blur(20px); border: 1px solid var(--border); border-radius: 60px; padding: 8px 8px 8px 28px; display: flex; align-items: center; gap: 12px; max-width: 700px; margin: 0 auto 48px; box-shadow: 0 8px 40px rgba(108,61,232,0.2); }
.search-box input { flex: 1; background: none; border: none; outline: none; color: var(--text); font-size: 1rem; }
.search-box input::placeholder { color: var(--text-muted); }
.search-box .btn { border-radius: 50px; white-space: nowrap; }

/* TLD PILLS */
.tld-pills { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 20px; }
.tld-pill { background: rgba(13,18,53,0.8); border: 1px solid var(--border); border-radius: 50px; padding: 6px 16px; font-size: 0.8rem; color: var(--text-muted); }
.tld-pill span { color: var(--accent); font-weight: 700; }

/* STATS BAR */
.stats-bar { display: flex; gap: 40px; justify-content: center; flex-wrap: wrap; padding: 24px; background: var(--glass); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stat-item { text-align: center; }
.stat-item .num { font-size: 1.8rem; font-weight: 900; background: linear-gradient(135deg, var(--primary-light), var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-item .lbl { font-size: 0.8rem; color: var(--text-muted); }

/* DOMAIN RESULTS */
.domain-result-row { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; background: var(--glass); border: 1px solid var(--border); border-radius: 12px; margin-bottom: 12px; transition: all 0.3s; flex-wrap: wrap; gap: 12px; }
.domain-result-row:hover { border-color: var(--primary); }
.domain-result-row.unavailable { opacity: 0.5; }
.domain-name-display { font-size: 1.1rem; font-weight: 700; }
.domain-meta { display: flex; align-items: center; gap: 16px; }
.domain-price { font-size: 1.2rem; font-weight: 800; color: var(--accent); }
.domain-renew { font-size: 0.78rem; color: var(--text-muted); }

/* HOSTING CARDS */
.hosting-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.hosting-card { background: var(--glass); backdrop-filter: blur(20px); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px 28px; position: relative; transition: all 0.3s; }
.hosting-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.hosting-card.featured { border-color: var(--primary); background: linear-gradient(135deg, rgba(108,61,232,0.15), rgba(139,92,246,0.1)); }
.hosting-card .plan-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); white-space: nowrap; }
.plan-name { font-size: 1.3rem; font-weight: 800; margin-bottom: 8px; }
.plan-price { font-size: 2.5rem; font-weight: 900; color: var(--accent); line-height: 1; }
.plan-price span { font-size: 1rem; color: var(--text-muted); font-weight: 400; }
.plan-renew { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 24px; }
.plan-features { margin-bottom: 28px; }
.plan-features li { padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.05); display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--text); }
.plan-features li::before { content: '✓'; color: var(--green); font-weight: 700; }

/* CART */
.cart-page { padding-top: 100px; min-height: 100vh; }
.cart-grid { display: grid; grid-template-columns: 1fr 360px; gap: 28px; }
.cart-items { display: flex; flex-direction: column; gap: 16px; }
.cart-item { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; background: var(--glass); border: 1px solid var(--border); border-radius: 12px; gap: 12px; flex-wrap: wrap; }
.cart-item-icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; }
.cart-item-icon.domain { background: rgba(108,61,232,0.2); }
.cart-item-icon.hosting { background: rgba(0,212,255,0.15); }
.cart-item-info h4 { font-size: 0.95rem; font-weight: 700; }
.cart-item-info p { font-size: 0.8rem; }
.cart-item-price { font-size: 1.1rem; font-weight: 800; color: var(--accent); white-space: nowrap; }
.remove-btn { background: none; border: none; color: var(--text-muted); cursor: pointer; font-size: 1.2rem; transition: color 0.3s; }
.remove-btn:hover { color: var(--accent2); }
.order-summary { position: sticky; top: 100px; }

/* PROMO INPUT */
.promo-row { display: flex; gap: 10px; margin-top: 16px; }
.promo-row input { flex: 1; background: rgba(255,255,255,0.05); border: 1px solid var(--border); border-radius: 8px; padding: 10px 16px; color: var(--text); outline: none; font-size: 0.9rem; }
.promo-row input:focus { border-color: var(--primary); }

/* FORM */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-muted); margin-bottom: 8px; }
.form-control { width: 100%; background: rgba(255,255,255,0.05); border: 1px solid var(--border); border-radius: 10px; padding: 12px 16px; color: var(--text); outline: none; font-size: 0.95rem; transition: border-color 0.3s; }
.form-control:focus { border-color: var(--primary); background: rgba(108,61,232,0.08); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-section-title { font-size: 1rem; font-weight: 700; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid var(--border); color: var(--text); }

/* PAYMENT METHODS */
.payment-methods { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 20px; }
.pay-method { padding: 14px; border: 2px solid var(--border); border-radius: 10px; cursor: pointer; text-align: center; font-size: 0.85rem; font-weight: 600; transition: all 0.3s; }
.pay-method.selected { border-color: var(--primary); background: rgba(108,61,232,0.15); color: var(--primary-light); }
.pay-method:hover { border-color: var(--primary-light); }

/* TOAST */
.toast { position: fixed; bottom: 24px; right: 24px; background: var(--glass); backdrop-filter: blur(20px); border: 1px solid var(--border); border-radius: 12px; padding: 14px 20px; display: flex; align-items: center; gap: 12px; z-index: 9999; transform: translateY(100px); opacity: 0; transition: all 0.4s; max-width: 340px; }
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { border-color: var(--green); }
.toast.error { border-color: var(--accent2); }

/* TABS */
.tabs { display: flex; gap: 4px; background: rgba(255,255,255,0.05); border-radius: 12px; padding: 4px; margin-bottom: 32px; flex-wrap: wrap; }
.tab { flex: 1; padding: 10px 20px; border-radius: 8px; border: none; background: none; color: var(--text-muted); cursor: pointer; font-weight: 600; font-size: 0.9rem; transition: all 0.3s; white-space: nowrap; }
.tab.active { background: var(--primary); color: #fff; }

/* FOOTER */
footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 60px 20px 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; max-width: 1200px; margin: 0 auto 40px; }
.footer-brand p { margin-top: 12px; font-size: 0.9rem; max-width: 260px; }
.footer-col h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 16px; color: var(--text); }
.footer-col a { display: block; font-size: 0.875rem; color: var(--text-muted); margin-bottom: 10px; transition: color 0.3s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { text-align: center; padding-top: 24px; border-top: 1px solid var(--border); font-size: 0.85rem; color: var(--text-muted); max-width: 1200px; margin: 0 auto; }

/* EMPTY STATE */
.empty-state { text-align: center; padding: 60px 20px; }
.empty-state .icon { font-size: 4rem; margin-bottom: 16px; opacity: 0.4; }
.empty-state h3 { margin-bottom: 8px; }

/* SKELETON */
.skeleton { background: linear-gradient(90deg, rgba(255,255,255,0.05) 25%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.05) 75%); background-size: 200% 100%; animation: shimmer 1.5s infinite; border-radius: 8px; }
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* ALERT */
.alert { padding: 14px 18px; border-radius: 10px; font-size: 0.9rem; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.alert-success { background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.3); color: var(--green); }
.alert-error { background: rgba(255,107,107,0.1); border: 1px solid rgba(255,107,107,0.3); color: var(--accent2); }
.alert-info { background: rgba(0,212,255,0.1); border: 1px solid rgba(0,212,255,0.3); color: var(--accent); }

/* MOBILE */
@media (max-width: 768px) {
  .navbar { padding: 10px 14px; }
  .nav-logo { font-size: 1.1rem; }
  .nav-links { display: none; position: fixed; top: 58px; left: 0; right: 0; background: rgba(8,12,36,.98); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); flex-direction: column; padding: 16px 20px; gap: 14px; z-index: 999; }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid rgba(255,255,255,.05); }
  .nav-links a { font-size: .95rem; padding: 8px 0; display: block; color: var(--text) !important; }
  .hamburger { display: flex; }
  /* Hide theme + login on mobile — accessible via hamburger menu */
  #themeToggle { display: none; }
  #navAuthBtn { display: none; }
  .cart-btn { padding: 7px 10px; font-size: .8rem; }
  .cart-grid { grid-template-columns: 1fr; }
  .order-summary { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .payment-methods { grid-template-columns: 1fr 1fr; }
  .stats-bar { gap: 16px; flex-wrap: wrap; justify-content: center; }
  .search-box { border-radius: 16px; flex-direction: column; align-items: stretch; padding: 12px; }
  .search-box input { text-align: center; padding: 10px; }
  .section { padding: 60px 16px; }
}
@media (max-width: 380px) {
  .navbar { padding: 8px 12px; }
  .nav-logo { font-size: 1rem; }
  .cart-btn { padding: 6px 8px; font-size: .75rem; }
  .cart-btn span:not(.cart-count) { display: none; } /* hide 'Cart' text, keep icon+count */
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .tabs { flex-direction: column; }
  .tab { text-align: center; }
}

/* ANIMATIONS */
.fade-up { opacity: 0; transform: translateY(30px); transition: all 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.glow { box-shadow: 0 0 40px rgba(108,61,232,0.4); }

/* CONFIRMATION PAGE */
.confirm-icon { width: 100px; height: 100px; background: linear-gradient(135deg, var(--green), #059669); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; margin: 0 auto 28px; animation: popIn 0.5s cubic-bezier(0.175,0.885,0.32,1.275); }
@keyframes popIn { 0% { transform: scale(0); } 100% { transform: scale(1); } }

/* ── PRELOADER ─────────────────────────────────────────────── */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: #060a1a;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: opacity .5s ease, visibility .5s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-logo {
  font-size: 2rem; font-weight: 900;
  background: linear-gradient(135deg, #8b5cf6, #00d4ff);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 32px; animation: preloaderPulse 1.5s ease-in-out infinite;
}
@keyframes preloaderPulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.7;transform:scale(.97)} }
.preloader-bar {
  width: 200px; height: 3px; background: rgba(255,255,255,.08); border-radius: 99px; overflow: hidden; margin-bottom: 16px;
}
.preloader-bar-fill {
  height: 100%; width: 0; border-radius: 99px;
  background: linear-gradient(90deg, #8b5cf6, #00d4ff);
  animation: preloaderFill 1.2s ease-in-out forwards;
}
@keyframes preloaderFill { 0%{width:0} 60%{width:80%} 100%{width:100%} }
.preloader-dots { display: flex; gap: 8px; }
.preloader-dots span {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.2); animation: dotBounce 1.2s ease-in-out infinite;
}
.preloader-dots span:nth-child(2){animation-delay:.2s}
.preloader-dots span:nth-child(3){animation-delay:.4s}
@keyframes dotBounce { 0%,100%{background:rgba(255,255,255,.2);transform:scale(1)} 50%{background:#8b5cf6;transform:scale(1.4)} }
/* page transition  */
body.page-loading { overflow: hidden; }

/* ── LIGHT MODE ─────────────────────────────────────────────── */
body.light-mode {
  --bg:          #f0f4ff;
  --bg2:         #e8eeff;
  --text:        #0f172a;
  --text-muted:  #475569;
  --border:      rgba(0,0,0,.12);
  --glass:       rgba(255,255,255,.85);
  --card-bg:     rgba(255,255,255,.9);
  background: #f0f4ff !important;
}
body.light-mode .navbar {
  background: rgba(240,244,255,.92) !important;
  border-bottom-color: rgba(0,0,0,.1) !important;
}
body.light-mode .card,
body.light-mode .domain-card { background: #fff !important; color: #0f172a !important; }
body.light-mode .nav-links a { color: #334155 !important; }
body.light-mode .hero { background: linear-gradient(135deg, #e0e7ff 0%, #f0f4ff 60%) !important; }
body.light-mode .stats-bar { background: rgba(255,255,255,.8) !important; }
body.light-mode footer { background: #1e293b !important; }
body.light-mode .form-control {
  background: rgba(0,0,0,.04) !important;
  border-color: rgba(0,0,0,.15) !important;
  color: #0f172a !important;
}

/* ── LIGHT MODE COMPREHENSIVE FIX ───────────────────────────── */
body.light-mode { color: #0f172a !important; }
body.light-mode h1,body.light-mode h2,body.light-mode h3,
body.light-mode h4,body.light-mode p,body.light-mode span,
body.light-mode li,body.light-mode td,body.light-mode th,
body.light-mode label { color: #0f172a !important; }
body.light-mode .text-muted,body.light-mode [style*="color:var(--text-muted)"],
body.light-mode .form-label { color: #475569 !important; }
body.light-mode .card { background: #fff !important; box-shadow: 0 2px 20px rgba(0,0,0,.08) !important; }
body.light-mode .btn-outline { color: var(--primary) !important; border-color: var(--primary) !important; }
body.light-mode .search-box { background: rgba(255,255,255,.95) !important; border-color: rgba(108,61,232,.2) !important; }
body.light-mode .search-box input { color: #0f172a !important; background: transparent !important; }
body.light-mode .search-box input::placeholder { color: #94a3b8 !important; }
body.light-mode .upi-box { background: rgba(240,244,255,.8) !important; }
body.light-mode .upi-id-badge { background: rgba(0,0,0,.06) !important; color: var(--primary) !important; }
body.light-mode .utr-inp { background: #fff !important; color: #0f172a !important; border-color: rgba(0,0,0,.15) !important; }
body.light-mode .upi-app-btn { background: #f8fafc !important; color: #0f172a !important; border-color: rgba(0,0,0,.1) !important; }
body.light-mode .domain-result-card { background: rgba(255,255,255,.9) !important; }
body.light-mode .stats-card { background: #fff !important; }
body.light-mode section { background: transparent !important; }
body.light-mode .hero-badge { background: rgba(108,61,232,.1) !important; color: var(--primary) !important; }
body.light-mode .nav-logo { color: var(--primary) !important; -webkit-text-fill-color: unset !important; }
body.light-mode .preloader-logo { -webkit-text-fill-color: transparent !important; }

/* ── DOMAIN SEARCH: Fix white bg on focus ────────────────────── */
.search-box input { background: transparent !important; color: var(--text) !important; caret-color: var(--text) !important; }
.search-box:focus-within { background: var(--glass) !important; border-color: var(--primary) !important; }
.search-box input:-webkit-autofill,
.search-box input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px rgba(15,12,41,0.95) inset !important;
  -webkit-text-fill-color: var(--text) !important;
  background: transparent !important;
}
body.light-mode .search-box input:-webkit-autofill,
body.light-mode .search-box input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
  -webkit-text-fill-color: #0f172a !important;
}

/* ── DOMAIN STATUS BADGES ─────────────────────────────────────── */
.status-utr-pending { background: rgba(245,158,11,.15); color: #f59e0b; }

/* ── MOBILE MENU EXTRAS (Login+Theme inside hamburger menu) ─── */
.mobile-menu-extra { display: none; }
@media(max-width: 768px) {
  .mobile-menu-extra { display: block; }
  .mobile-menu-extra a { color: var(--text) !important; font-size: .9rem !important; }
}

/* ── HAMBURGER ACTIVE (X animation) ─────────────────────────── */
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.hamburger span { transition: transform .3s, opacity .3s; }
