:root {
  --primary:   #22d3ee;   
  --secondary: #a855f7;   
  --accent:    #06b6d4;
  --bg:        #000000;
  --bg-2:      #0a0a0f;
  --bg-3:      #0f0f1a;
  --card-bg:   rgba(15,15,30,0.7);
  --border:    rgba(34,211,238,0.12);
  --border-2:  rgba(168,85,247,0.15);
  --text:      #f1f5f9;
  --muted:     #64748b;
  --glow-c:    rgba(34,211,238,0.35);
  --glow-p:    rgba(168,85,247,0.35);
  --radius:    14px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle, rgba(34,211,238,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(34,211,238,0.3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

@keyframes float {
  0%,100% { transform: translateY(0) scale(1); opacity:.15; }
  50%      { transform: translateY(-30px) scale(1.05); opacity:.25; }
}
@keyframes glow-pulse {
  0%,100% { opacity:.6; }
  50%      { opacity:1; }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
@keyframes fadeUp {
  from { opacity:0; transform:translateY(24px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes borderBeam {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes authModalIn {
  from { opacity:0; transform:scale(.92) translateY(20px); }
  to   { opacity:1; transform:scale(1) translateY(0); }
}
@keyframes toastIn {
  from { opacity:0; transform:translateX(-50%) translateY(16px) scale(.95); }
  to   { opacity:1; transform:translateX(-50%) translateY(0) scale(1); }
}
@keyframes modalPop {
  from { opacity:0; transform:scale(.88) translateY(24px); }
  to   { opacity:1; transform:scale(1) translateY(0); }
}

.hero-glow {
  position: fixed;
  width: 600px; height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .12;
  pointer-events: none;
  z-index: 0;
  animation: float 16s ease-in-out infinite;
  background: var(--primary);
}

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6%;
  height: 68px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.logo {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
  cursor: default;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .3px;
  position: relative;
  padding: 4px 0;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: width var(--transition);
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 10px; }

.auth-nav-btn {
  display: flex; align-items: center; gap: 7px;
  padding: 8px 18px;
  background: rgba(34,211,238,0.08);
  border: 1px solid rgba(34,211,238,0.25);
  border-radius: 50px;
  color: var(--primary);
  font-size: .84rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all var(--transition);
}
.auth-nav-btn:hover {
  background: rgba(34,211,238,0.15);
  border-color: var(--primary);
  box-shadow: 0 0 20px var(--glow-c);
  transform: translateY(-1px);
}

.custom-cart-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 18px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border: none;
  border-radius: 50px;
  color: #000;
  font-weight: 800;
  font-size: .84rem;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 0 20px var(--glow-c);
}
.custom-cart-btn:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 0 32px var(--glow-c), 0 0 16px var(--glow-p);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  z-index: 1;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse at center,
    rgba(34,211,238,0.12) 0%,
    rgba(168,85,247,0.08) 40%,
    transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1px;
  color: #fff;
  text-shadow: 0 0 60px rgba(34,211,238,0.25), 0 0 120px rgba(168,85,247,0.15);
  margin-bottom: 24px;
  animation: fadeUp .8s ease both;
}

.hero h1 span {
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s linear infinite;
}

.hero p {
  max-width: 620px;
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 44px;
  animation: fadeUp .8s .15s ease both;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp .8s .3s ease both;
}

.btn-main {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border: none;
  border-radius: 50px;
  color: #000;
  font-weight: 800;
  font-size: .95rem;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: 0 0 24px var(--glow-c);
}
.btn-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.15), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.btn-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px var(--glow-c), 0 0 20px var(--glow-p);
}
.btn-main:hover::before { opacity: 1; }

.btn-secondary {
  background: transparent !important;
  border: 1px solid rgba(34,211,238,0.35) !important;
  color: var(--primary) !important;
  box-shadow: none !important;
  margin-left: 0;
}
.btn-secondary:hover {
  background: rgba(34,211,238,0.08) !important;
  border-color: var(--primary) !important;
  box-shadow: 0 0 24px var(--glow-c) !important;
  color: #fff !important;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 20s linear infinite;
  will-change: transform;
}
.marquee-content {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  padding-right: 60px;
  color: #000;
  font-weight: 700;
  font-size: .82rem;
  min-width: 50vw;
}
.marquee-content i { color: rgba(0,0,0,.6); font-size: .75rem; }

.container {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px 24px;
  z-index: 1;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}
.section-title h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #fff 30%, var(--muted));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.product-card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
  transition: all .4s cubic-bezier(.175,.885,.32,1.275);
  z-index: 1;
}
.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(34,211,238,.06) 0%, rgba(168,85,247,.04) 100%);
  opacity: 0;
  transition: opacity .4s;
  z-index: -1;
}
.product-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--primary), var(--secondary), var(--primary));
  background-size: 200% auto;
  opacity: 0;
  z-index: -2;
  transition: opacity .4s;
}
.product-card:hover {
  transform: translateY(-12px);
  border-color: rgba(34,211,238,.4);
  box-shadow: 0 20px 60px rgba(0,0,0,.6), 0 0 30px var(--glow-c);
}
.product-card:hover::before { opacity: 1; }
.product-card:hover i { transform: scale(1.15) rotate(5deg); color: var(--primary); }
.product-card i { transition: .35s; }

.price {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  margin: 20px 0;
  display: block;
}

.view-btn {
  width: 100%;
  padding: 11px;
  margin-bottom: 10px;
  background: rgba(34,211,238,.06);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--muted);
  font-weight: 600;
  font-size: .84rem;
  font-family: inherit;
  cursor: pointer;
  transition: all var(--transition);
}
.view-btn:hover {
  background: rgba(34,211,238,.12);
  border-color: rgba(34,211,238,.35);
  color: #fff;
}

.action-btn {
  width: 100%;
  padding: 13px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border: none;
  border-radius: var(--radius);
  color: #000;
  font-weight: 800;
  font-size: .88rem;
  font-family: inherit;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 0 16px var(--glow-c);
}
.action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 28px var(--glow-c), 0 0 14px var(--glow-p);
}

.filter-bar {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 10px 22px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: 50px;
  color: var(--muted);
  font-weight: 600;
  font-size: .84rem;
  font-family: inherit;
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover {
  border-color: rgba(34,211,238,.35);
  color: #fff;
  transform: translateY(-1px);
}
.filter-btn.active {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-color: transparent;
  color: #000;
  font-weight: 800;
  box-shadow: 0 0 20px var(--glow-c);
}

.cart-sidebar {
  position: fixed;
  right: -440px; top: 0;
  width: 400px; height: 100%;
  background: rgba(5,5,15,.95);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border-left: 1px solid var(--border);
  transition: right .5s cubic-bezier(.25,1,.3,1);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 60px rgba(0,0,0,.7);
}
.cart-sidebar.active { right: 0; }

.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 22px 18px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.cart-header-left { display: flex; align-items: center; gap: 12px; }
.cart-header-icon {
  width: 40px; height: 40px;
  background: rgba(34,211,238,.1);
  border: 1px solid rgba(34,211,238,.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: .95rem;
}
.cart-title { font-size: 1rem; font-weight: 800; }
.cart-subtitle { font-size: .75rem; color: var(--muted); }
.cart-close-btn {
  width: 32px; height: 32px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--muted);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: .78rem;
  transition: all var(--transition);
}
.cart-close-btn:hover { background: rgba(239,68,68,.15); border-color: #ef4444; color: #ef4444; }

.cart-items-list {
  flex: 1; overflow-y: auto;
  padding: 14px 18px;
  display: flex; flex-direction: column; gap: 10px;
}
.cart-items-list::-webkit-scrollbar { width: 3px; }
.cart-items-list::-webkit-scrollbar-thumb { background: rgba(34,211,238,.2); border-radius: 2px; }

.cart-item {
  display: flex; align-items: center; gap: 10px;
  background: rgba(34,211,238,.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  transition: all var(--transition);
}
.cart-item:hover { border-color: rgba(34,211,238,.25); }
.cart-item-icon {
  width: 36px; height: 36px;
  background: rgba(34,211,238,.1);
  border: 1px solid rgba(34,211,238,.2);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: .82rem; flex-shrink: 0;
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-weight: 700; font-size: .84rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-item-price { color: var(--primary); font-size: .76rem; font-weight: 600; }
.cart-item-remove {
  width: 28px; height: 28px;
  background: rgba(239,68,68,.08);
  border: 1px solid rgba(239,68,68,.2);
  border-radius: 7px;
  color: #ef4444;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: .74rem;
  transition: all var(--transition); flex-shrink: 0;
}
.cart-item-remove:hover { background: rgba(239,68,68,.2); transform: scale(1.1); }

.cart-empty {
  flex: 1; display: none;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; color: var(--muted); padding: 40px; text-align: center;
}
.cart-empty i { font-size: 2.2rem; color: rgba(34,211,238,.15); }
.cart-empty p { font-weight: 700; font-size: .9rem; color: #475569; }
.cart-empty span { font-size: .78rem; color: #334155; }

.cart-footer {
  padding: 18px 18px 24px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}
.cart-summary { margin-bottom: 14px; }
.cart-summary-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 5px 0; font-size: .84rem; color: var(--muted);
}
.cart-summary-total {
  border-top: 1px solid var(--border);
  margin-top: 8px; padding-top: 10px;
  font-size: .95rem; color: var(--text);
}
.cart-summary-total strong { color: var(--primary); font-size: 1.1rem; }

.cart-order-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border: none; border-radius: 12px;
  color: #000; font-weight: 800; font-size: .88rem;
  padding: 14px; cursor: pointer; font-family: inherit;
  display: flex; align-items: center; justify-content: center; gap: 7px;
  margin-bottom: 8px;
  transition: all var(--transition);
  box-shadow: 0 0 20px var(--glow-c);
}
.cart-order-btn:hover { transform: translateY(-2px); box-shadow: 0 0 32px var(--glow-c); }

.cart-clear-btn {
  width: 100%;
  background: none;
  border: 1px solid var(--border);
  border-radius: 9px;
  color: var(--muted); font-size: .8rem; font-weight: 600;
  padding: 9px; cursor: pointer; font-family: inherit;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  transition: all var(--transition);
}
.cart-clear-btn:hover { border-color: rgba(239,68,68,.4); color: #ef4444; background: rgba(239,68,68,.06); }

.order-modal {
  display: none; position: fixed; inset: 0; z-index: 4000;
  background: rgba(0,0,0,.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow-y: auto;
}
.order-content {
  background: rgba(8,8,20,.97);
  border: 1px solid rgba(34,211,238,.2);
  margin: 7% auto; padding: 48px 36px;
  width: 90%; max-width: 480px;
  border-radius: 24px; text-align: center;
  box-shadow: 0 0 60px rgba(34,211,238,.1), 0 40px 80px rgba(0,0,0,.6);
  animation: modalPop .4s cubic-bezier(.175,.885,.32,1.275) forwards;
}
.order-code {
  background: rgba(34,211,238,.05);
  border: 1px dashed rgba(34,211,238,.35);
  border-radius: 12px; padding: 18px;
  color: var(--primary); font-size: 1.1rem;
  margin: 24px 0; cursor: pointer; transition: all var(--transition);
}
.order-code:hover { background: rgba(34,211,238,.1); transform: scale(1.02); }

.checkout-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--secondary), #7c3aed);
  border: none; border-radius: 12px;
  color: #fff; font-weight: 800; font-size: .9rem;
  padding: 15px; cursor: pointer; font-family: inherit;
  margin-top: 16px; transition: all var(--transition);
  box-shadow: 0 0 20px var(--glow-p);
}
.checkout-btn:hover { transform: translateY(-2px); box-shadow: 0 0 32px var(--glow-p); }

@keyframes verifySlideIn {
  from { opacity:0; transform:translateY(16px); }
  to   { opacity:1; transform:translateY(0); }
}

.auth-input-group { position: relative; margin-bottom: 14px; }
.auth-input-group i {
  position: absolute; left: 14px; top: 50%;
  transform: translateY(-50%);
  color: var(--muted); font-size: .84rem; pointer-events: none;
}
.auth-input-group input {
  width: 100%;
  background: rgba(34,211,238,.04);
  border: 1px solid var(--border);
  color: #fff;
  padding: 12px 12px 12px 40px;
  border-radius: 10px; font-size: .9rem;
  outline: none; font-family: inherit;
  transition: border-color var(--transition), background var(--transition);
}
.auth-input-group input:focus {
  border-color: var(--primary);
  background: rgba(34,211,238,.06);
}
.auth-input-group input::placeholder { color: #334155; }

.auth-error { color: #ef4444; font-size: .8rem; min-height: 16px; margin-bottom: 4px; }

.auth-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border: none; border-radius: 10px;
  color: #000; font-weight: 800; font-size: .9rem;
  padding: 13px 18px; cursor: pointer; font-family: inherit;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 6px; transition: all var(--transition);
  box-shadow: 0 0 16px var(--glow-c);
}
.auth-submit-btn:hover { transform: translateY(-2px); box-shadow: 0 0 28px var(--glow-c); }
.auth-submit-btn:disabled { opacity: .6; cursor: not-allowed; transform: none; }

.auth-back-btn {
  background: none; border: none;
  color: var(--muted); font-size: .8rem;
  cursor: pointer; margin-top: 12px;
  font-family: inherit; transition: color var(--transition);
}
.auth-back-btn:hover { color: var(--primary); }

.auth-verify-panel {
  position: absolute; inset: 0;
  background: rgba(5,5,15,.99);
  border-radius: 24px; padding: 36px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.auth-verify-panel.active {
  opacity: 1; pointer-events: auto;
  animation: verifySlideIn .4s ease forwards;
}
.verify-icon-wrap {
  width: 64px; height: 64px;
  background: rgba(34,211,238,.1);
  border: 1px solid rgba(34,211,238,.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--primary); margin-bottom: 18px;
}
.verify-title { font-size: 1.2rem; font-weight: 800; margin-bottom: 8px; }
.verify-desc { color: var(--muted); font-size: .82rem; text-align: center; margin-bottom: 20px; line-height: 1.6; }
.verify-desc span { color: #fff; }
.verify-input { width: 100%; margin-bottom: 8px; }
.verify-input input { text-align: center; letter-spacing: 10px; font-size: 1.1rem; font-weight: 700; }

.oauth-divider {
  display: flex; align-items: center; gap: 10px;
  margin: 18px 0 14px; font-size: .76rem;
}
.oauth-divider::before, .oauth-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}
.oauth-divider span { color: #334155; white-space: nowrap; }

.oauth-btns { display: flex; gap: 10px; }
.oauth-btn {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 7px;
  padding: 11px; border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
  color: var(--muted); font-weight: 700; font-size: .82rem;
  cursor: pointer; font-family: inherit; transition: all var(--transition);
}
.oauth-btn:hover { transform: translateY(-2px); }
.oauth-discord { border-color: rgba(88,101,242,.3); }
.oauth-discord:hover { background: rgba(88,101,242,.12); border-color: #5865F2; color: #fff; }
.oauth-discord i { color: #5865F2; }
.oauth-google { border-color: rgba(234,67,53,.25); }
.oauth-google:hover { background: rgba(234,67,53,.08); border-color: #EA4335; color: #fff; }

.remember-row { margin: 6px 0 2px; }
.remember-label {
  display: flex; align-items: center; gap: 8px;
  cursor: pointer; color: var(--muted); font-size: .8rem; user-select: none;
}
.remember-label input[type="checkbox"] { display: none; }
.remember-check {
  width: 16px; height: 16px;
  border: 1px solid var(--border); border-radius: 4px;
  background: rgba(255,255,255,.04);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition); flex-shrink: 0;
}
.remember-label input:checked + .remember-check { background: var(--primary); border-color: var(--primary); }
.remember-label input:checked + .remember-check::after {
  content: ''; width: 4px; height: 8px;
  border: 2px solid #000; border-top: none; border-left: none;
  transform: rotate(45deg) translateY(-1px); display: block;
}

.nx-toast {
  position: fixed; bottom: 28px; left: 50%;
  transform: translateX(-50%) translateY(16px);
  background: rgba(5,5,15,.97);
  border: 1px solid var(--border);
  color: var(--text); padding: 12px 22px;
  border-radius: 50px;
  display: flex; align-items: center; gap: 9px;
  font-size: .86rem; font-weight: 600;
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 40px rgba(0,0,0,.5);
  z-index: 9999; opacity: 0; pointer-events: none;
  transition: opacity .3s, transform .3s; white-space: nowrap;
}
.nx-toast-show {
  opacity: 1; transform: translateX(-50%) translateY(0);
  pointer-events: auto;
  animation: toastIn .35s cubic-bezier(.175,.885,.32,1.275) forwards;
}
.nx-toast-success { border-color: rgba(16,185,129,.3); }
.nx-toast-success i { color: #10b981; }
.nx-toast-error { border-color: rgba(239,68,68,.3); }
.nx-toast-error i { color: #ef4444; }
.nx-toast-info { border-color: rgba(34,211,238,.3); }
.nx-toast-info i { color: var(--primary); }

.nx-confirm-box {
  background: rgba(8,8,20,.98);
  border: 1px solid rgba(34,211,238,.18);
  border-radius: 22px; padding: 36px 30px;
  width: 90%; max-width: 360px; margin: 20vh auto;
  text-align: center;
  box-shadow: 0 0 60px rgba(34,211,238,.1), 0 30px 60px rgba(0,0,0,.6);
  animation: authModalIn .35s cubic-bezier(.175,.885,.32,1.275) forwards;
}
.nx-confirm-icon {
  width: 56px; height: 56px;
  background: rgba(34,211,238,.1);
  border: 1px solid rgba(34,211,238,.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--primary); margin: 0 auto 16px;
}
.nx-confirm-msg { color: #cbd5e1; font-size: .9rem; line-height: 1.6; margin-bottom: 24px; }
.nx-confirm-btns { display: flex; gap: 10px; }
.nx-confirm-btn {
  flex: 1; padding: 11px; border-radius: 10px;
  border: none; font-weight: 700; font-size: .86rem;
  cursor: pointer; font-family: inherit; transition: all var(--transition);
}
.nx-confirm-btn-cancel {
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border); color: var(--muted);
}
.nx-confirm-btn-cancel:hover { background: rgba(255,255,255,.1); color: #fff; }
.nx-confirm-btn-ok {
  background: linear-gradient(135deg, var(--primary), var(--secondary)); color: #000;
}
.nx-confirm-btn-ok:hover { transform: translateY(-2px); box-shadow: 0 6px 20px var(--glow-c); }

.cookie-banner {
  position: fixed; bottom: -130px; left: 50%;
  transform: translateX(-50%);
  width: 90%; max-width: 680px;
  background: rgba(8,8,20,.97);
  border: 1px solid rgba(34,211,238,.2);
  border-radius: 18px; padding: 16px 20px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  z-index: 8000; backdrop-filter: blur(20px);
  box-shadow: 0 -8px 40px rgba(0,0,0,.4);
  transition: bottom .5s cubic-bezier(.25,.8,.25,1);
}
.cookie-banner.visible { bottom: 22px; }
.cookie-content { display: flex; align-items: center; gap: 10px; flex: 1; min-width: 180px; }
.cookie-content p { color: var(--muted); font-size: .82rem; line-height: 1.5; }
.cookie-content a { color: var(--primary); text-decoration: none; }
.cookie-btns { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-btn-accept {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #000; border: none; padding: 8px 18px;
  border-radius: 50px; font-weight: 700; font-size: .8rem;
  cursor: pointer; font-family: inherit; transition: all var(--transition);
}
.cookie-btn-accept:hover { transform: translateY(-1px); box-shadow: 0 6px 18px var(--glow-c); }
.cookie-btn-reject {
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border); color: var(--muted);
  padding: 8px 18px; border-radius: 50px;
  font-weight: 700; font-size: .8rem;
  cursor: pointer; font-family: inherit; transition: all var(--transition);
}
.cookie-btn-reject:hover { color: #fff; border-color: rgba(255,255,255,.25); }

footer {
  border-top: 1px solid var(--border);
  background: rgba(0,0,0,.8);
  backdrop-filter: blur(20px);
  padding: 48px 20px 28px;
  text-align: center;
  position: relative; z-index: 1;
}
.footer-inner { max-width: 760px; margin: 0 auto; }
.footer-logo {
  font-size: 1.5rem; font-weight: 900; letter-spacing: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; margin-bottom: 8px;
}
.footer-desc { color: #334155; font-size: .86rem; margin-bottom: 24px; }
.footer-links {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 12px; margin-bottom: 26px;
}
.footer-link {
  display: flex; align-items: center; gap: 7px;
  color: var(--muted); text-decoration: none;
  font-size: .82rem; font-weight: 600;
  padding: 7px 16px; border-radius: 50px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
  transition: all var(--transition);
}
.footer-link:hover {
  color: #fff; border-color: rgba(34,211,238,.35);
  background: rgba(34,211,238,.06); transform: translateY(-2px);
}
.footer-link .fab.fa-discord { color: #5865F2; }
.footer-link .fas.fa-envelope { color: var(--primary); }
.footer-link .fas.fa-headset  { color: #10b981; }
.footer-link .fab.fa-whatsapp { color: #25D366; }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 18px;
  color: #1e293b; font-size: .78rem;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.cookie-settings-btn {
  background: none; border: 1px solid var(--border);
  color: #334155; width: 28px; height: 28px;
  border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; transition: all var(--transition);
}
.cookie-settings-btn:hover { color: var(--primary); border-color: rgba(34,211,238,.35); }

.popup-top-bar { height: 3px; background: linear-gradient(90deg, var(--primary), var(--secondary)); }

.cart-items-list::-webkit-scrollbar { width: 3px; }
.cart-items-list::-webkit-scrollbar-track { background: transparent; }
.cart-items-list::-webkit-scrollbar-thumb { background: rgba(34,211,238,.2); border-radius: 2px; }

@media (max-width: 768px) {
  nav { padding: 0 4%; }
  .nav-links { display: none; }
  .auth-nav-btn span { display: none; }
  .auth-nav-btn { padding: 8px 12px; }
  .custom-cart-btn { padding: 8px 14px; }
  .hero h1 { font-size: 2.2rem; }
  .hero p { font-size: .95rem; }
  .hero-btns { flex-direction: column; align-items: center; }
  .btn-main { width: 100%; max-width: 280px; text-align: center; justify-content: center; }
  .container { padding: 60px 16px; }
  .product-grid { grid-template-columns: 1fr; gap: 16px; }
  .cart-sidebar { width: 100%; right: -100%; }
  .oauth-btns { flex-direction: column; }
  .cookie-banner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
  .logo { font-size: .95rem; letter-spacing: 1px; }
  .price { font-size: 1.7rem; }
}
