/* ================================================================
   VALYCRON — SELLAUTH CUSTOM THEME
   ================================================================ */

/* --- CSS variable overrides: cascade into every Tailwind class --- */
:root {
  --cl-background: 0, 0, 0;
  --cl-card: 10, 10, 10;
  --cl-accent: 255, 255, 255;
  --cl-t-primary: 255, 255, 255;
  --cl-t-accent: 0, 0, 0;
  --cl-snow: 255, 255, 255;
  --vb: rgba(255,255,255,.08);
  --vb2: rgba(255,255,255,.18);
  --vg: rgba(255,255,255,.03);
  --vg2: rgba(255,255,255,.07);
}

/* --- Base --- */
html { overflow-x: hidden; }
body { background: #000 !important; overflow-x: hidden; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,.12); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,.25); }

/* --- Animated grid --- */
.v-grid-bg {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 64px 64px;
  animation: vGP 10s ease-in-out infinite;
}
.v-grid-radial {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(255,255,255,.05) 0%, transparent 70%);
}
#v-ptc { position: fixed; inset: 0; pointer-events: none; z-index: 1; }
@keyframes vGP { 0%,100%{opacity:.5} 50%{opacity:1} }

/* --- App container --- */
#app { position: relative; z-index: 2; }

/* Shop page: full-width, no padding (each section self-contains) */
.v-tpl-shop {
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* ================================================================
   HEADER / NAV
   ================================================================ */
.v-nav {
  position: sticky; top: 0; z-index: 100;
  padding: 18px 28px;
  transition: background .3s, padding .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.v-nav.v-sc {
  background: rgba(0,0,0,.9) !important;
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom-color: var(--vb) !important;
  padding: 12px 28px;
}
.v-nav-in {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.v-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.v-logo img { max-height: 30px; border-radius: 6px; }
.v-logo-t {
  font-size: 20px; font-weight: 900; color: #fff; letter-spacing: -.5px;
  text-shadow: 0 0 24px rgba(255,255,255,.4);
}
.v-logo-t em { color: rgba(255,255,255,.4); font-style: normal; }
.v-nav-links { display: flex; align-items: center; gap: 6px; list-style: none; margin: 0; padding: 0; }
.v-nav-link, .v-nav-link-btn {
  display: inline-block; color: rgba(255,255,255,.55); text-decoration: none;
  font-size: 13px; font-weight: 500; padding: 7px 13px; border-radius: 8px;
  transition: all .2s; border: 1px solid transparent;
  background: none; cursor: pointer; font-family: inherit; line-height: 1.4;
}
.v-nav-link:hover, .v-nav-link-btn:hover {
  color: #fff; background: rgba(255,255,255,.05); border-color: var(--vb);
}
.v-nav-cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff; color: #000; padding: 8px 18px; border-radius: 8px;
  font-size: 13px; font-weight: 800; text-decoration: none;
  transition: all .2s; box-shadow: 0 0 20px rgba(255,255,255,.2);
  white-space: nowrap; border: none; cursor: pointer; font-family: inherit;
}
.v-nav-cta:hover { box-shadow: 0 0 36px rgba(255,255,255,.45); transform: translateY(-1px); }
.v-nav-cart {
  display: inline-flex; align-items: center; justify-content: center;
  position: relative; width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,.05); border: 1px solid var(--vb);
  color: rgba(255,255,255,.7); text-decoration: none; transition: all .2s;
}
.v-nav-cart:hover { background: rgba(255,255,255,.1); border-color: var(--vb2); color: #fff; }
.v-cart-badge {
  position: absolute; top: -6px; right: -6px;
  background: #fff; color: #000;
  font-size: 9px; font-weight: 900; width: 16px; height: 16px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.v-tog { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.v-tog span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all .3s; }
.v-mob {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,.97);
  z-index: 200; flex-direction: column; align-items: center; justify-content: center; gap: 24px;
}
.v-mob.open { display: flex; }
.v-mob-close { position: absolute; top: 22px; right: 24px; background: none; border: none; color: #fff; font-size: 24px; cursor: pointer; }
.v-mob a, .v-mob-link {
  color: #fff; text-decoration: none; font-size: 22px; font-weight: 700;
  background: none; border: none; cursor: pointer; font-family: inherit; transition: opacity .2s;
}
.v-mob a:hover, .v-mob-link:hover { opacity: .6; }

/* ================================================================
   SHOP PAGE HERO
   ================================================================ */
.v-hero {
  min-height: 93vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 100px 28px 80px; position: relative;
}
.v-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08);
  border-radius: 100px; padding: 6px 16px;
  font-size: 11px; font-weight: 600; color: rgba(255,255,255,.5);
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 28px;
  animation: vFU .8s ease forwards; opacity: 0;
}
.v-badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: #fff; box-shadow: 0 0 8px rgba(255,255,255,.9);
  animation: vBlink 2s ease-in-out infinite;
}
@keyframes vBlink { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.7)} }
.v-hero-title {
  font-size: clamp(56px, 9vw, 114px); font-weight: 900;
  letter-spacing: -5px; line-height: .9; margin-bottom: 12px;
  animation: vFU .8s .1s ease forwards; opacity: 0;
}
.v-hero-title .v-glow {
  display: block; color: #fff;
  text-shadow: 0 0 50px rgba(255,255,255,.28), 0 0 100px rgba(255,255,255,.1);
}
.v-hero-sub {
  display: block; font-size: clamp(13px, 2vw, 24px); font-weight: 300;
  color: rgba(255,255,255,.3); letter-spacing: 3px; text-transform: uppercase; margin-top: 10px;
}
.v-hero-desc {
  font-size: 16px; color: rgba(255,255,255,.48);
  max-width: 420px; margin: 24px auto 36px; line-height: 1.8;
  animation: vFU .8s .2s ease forwards; opacity: 0;
}
.v-hero-btns {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; flex-wrap: wrap;
  animation: vFU .8s .3s ease forwards; opacity: 0;
}
.v-bp {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: #000; padding: 13px 28px; border-radius: 10px;
  font-size: 14px; font-weight: 800; text-decoration: none; letter-spacing: .2px;
  transition: all .3s; box-shadow: 0 0 30px rgba(255,255,255,.28), 0 0 60px rgba(255,255,255,.08);
}
.v-bp:hover { transform: translateY(-3px); box-shadow: 0 0 50px rgba(255,255,255,.5), 0 0 100px rgba(255,255,255,.2); }
.v-bs {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.04); color: #fff; padding: 13px 28px; border-radius: 10px;
  font-size: 14px; font-weight: 600; text-decoration: none;
  border: 1px solid rgba(255,255,255,.1); transition: all .3s; backdrop-filter: blur(10px);
}
.v-bs:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.2); transform: translateY(-3px); }
.v-hero-stats {
  display: flex; align-items: center; justify-content: center;
  gap: 40px; margin-top: 64px; flex-wrap: wrap;
  animation: vFU .8s .4s ease forwards; opacity: 0;
}
.v-sn { font-size: 24px; font-weight: 800; color: #fff; letter-spacing: -1px; }
.v-sl { font-size: 11px; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: 1px; margin-top: 3px; }
.v-sdiv { width: 1px; height: 30px; background: rgba(255,255,255,.08); }

/* ================================================================
   DISCLAIMER BANNER
   ================================================================ */
.v-disclaimer {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; padding: 12px 28px;
  background: rgba(255,200,0,.04);
  border-top: 1px solid rgba(255,200,0,.12);
  border-bottom: 1px solid rgba(255,200,0,.12);
  font-size: 12.5px; color: rgba(255,255,255,.52);
  line-height: 1.6; text-align: center; flex-wrap: wrap;
}
.v-disclaimer svg { flex-shrink: 0; color: rgba(255,200,0,.7); }
.v-disclaimer strong { color: rgba(255,255,255,.78); font-weight: 700; }

/* ================================================================
   SECTION LAYOUT HELPERS
   ================================================================ */
.v-sec { padding: 96px 28px; }
.v-sec-alt { padding: 96px 28px; background: rgba(255,255,255,.012); }
.v-inner { max-width: 1200px; margin: 0 auto; }
.v-hd { text-align: center; margin-bottom: 52px; }
.v-tag {
  display: inline-block; font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,.4);
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08);
  padding: 5px 14px; border-radius: 100px; margin-bottom: 12px;
}
.v-h2 { font-size: clamp(28px, 4vw, 46px); font-weight: 900; letter-spacing: -2px; color: #fff; line-height: 1.05; }
.v-desc { font-size: 14px; color: rgba(255,255,255,.4); max-width: 420px; margin: 12px auto 0; line-height: 1.8; }

/* ================================================================
   FEATURES GRID
   ================================================================ */
.v-fgrid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.v-fc {
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.07);
  border-radius: 16px; padding: 28px; transition: all .4s; position: relative; overflow: hidden;
}
.v-fc::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
  transform: scaleX(0); transition: transform .4s;
}
.v-fc:hover::before { transform: scaleX(1); }
.v-fc:hover { border-color: rgba(255,255,255,.12); background: rgba(255,255,255,.055); transform: translateY(-5px); }
.v-fi {
  width: 44px; height: 44px; border-radius: 11px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; color: rgba(255,255,255,.65); transition: all .3s;
}
.v-fc:hover .v-fi { background: rgba(255,255,255,.1); color: #fff; box-shadow: 0 0 16px rgba(255,255,255,.06); }
.v-ft { font-size: 14.5px; font-weight: 700; color: #fff; margin-bottom: 8px; letter-spacing: -.2px; }
.v-fd { font-size: 12.5px; color: rgba(255,255,255,.42); line-height: 1.7; }

/* ================================================================
   WHY SECTION
   ================================================================ */
.v-why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.v-why-h { font-size: clamp(24px, 3.2vw, 42px); font-weight: 900; letter-spacing: -2px; color: #fff; line-height: 1.1; margin: 14px 0 16px; }
.v-why-p { font-size: 14px; color: rgba(255,255,255,.42); line-height: 1.8; margin-bottom: 24px; }
.v-why-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.v-why-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 13.5px; color: rgba(255,255,255,.62); line-height: 1.6;
}
.v-why-list li::before {
  content: ''; width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0; margin-top: 1px;
  background: rgba(255,255,255,.06) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' viewBox='0 0 10 8' fill='none'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
  border: 1px solid rgba(255,255,255,.18);
}
.v-wcard {
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.07);
  border-radius: 20px; padding: 36px; position: relative; overflow: hidden;
}
.v-wcard::before {
  content: ''; position: absolute; top: -80px; right: -80px; width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(255,255,255,.04) 0%, transparent 70%); pointer-events: none;
}
.v-wn { font-size: 50px; font-weight: 900; color: #fff; letter-spacing: -3px; line-height: 1; text-shadow: 0 0 40px rgba(255,255,255,.18); }
.v-wl { font-size: 12px; color: rgba(255,255,255,.38); margin-top: 5px; }
.v-wd { height: 1px; background: rgba(255,255,255,.08); margin: 22px 0; }
.v-wrow { display: flex; gap: 24px; }
.v-wmn { font-size: 24px; font-weight: 800; color: #fff; letter-spacing: -1px; }
.v-wml { font-size: 11px; color: rgba(255,255,255,.38); margin-top: 3px; }

/* ================================================================
   PRODUCT CARD
   ================================================================ */
.v-pc {
  display: block; height: 100%; text-decoration: none;
  background: rgba(255,255,255,.03) !important;
  border: 1px solid rgba(255,255,255,.07) !important;
  border-radius: 16px !important; overflow: hidden;
  transition: all .4s; position: relative; color: #fff;
}
.v-pc:hover {
  transform: translateY(-7px);
  background: rgba(255,255,255,.06) !important;
  border-color: rgba(255,255,255,.14) !important;
  box-shadow: 0 24px 64px rgba(0,0,0,.6);
}
.v-pc-img { width: 100%; aspect-ratio: 16/9; overflow: hidden; background: #080808; position: relative; }
.v-pc-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s, filter .4s; filter: brightness(.8);
}
.v-pc:hover .v-pc-img img { transform: scale(1.06); filter: brightness(1); }
.v-pc-ph {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #080808, #111);
}
.v-pbadge {
  position: absolute; top: 10px; right: 10px;
  background: rgba(0,0,0,.82); border: 1px solid rgba(255,255,255,.08);
  border-radius: 6px; padding: 3px 10px;
  font-size: 10px; font-weight: 700; color: #fff; letter-spacing: .5px; backdrop-filter: blur(10px);
}
.v-pc-body { padding: 20px; }
.v-pname { font-size: 16px; font-weight: 800; color: #fff; margin-bottom: 7px; letter-spacing: -.3px; }
.v-pstock { font-size: 12px; color: rgba(255,255,255,.38); margin-bottom: 16px; display: flex; align-items: center; gap: 5px; }
.v-pfoot { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.v-pprice { font-size: 20px; font-weight: 900; color: #fff; letter-spacing: -.5px; }
.v-pslash { font-size: 12px; color: rgba(255,255,255,.32); text-decoration: line-through; margin-left: 4px; }
.v-pbuy {
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff; color: #000; padding: 9px 16px; border-radius: 8px;
  font-size: 12.5px; font-weight: 800; text-decoration: none;
  transition: all .3s; white-space: nowrap; box-shadow: 0 0 18px rgba(255,255,255,.15);
}
.v-pbuy:hover { box-shadow: 0 0 32px rgba(255,255,255,.38); transform: translateY(-1px); }

/* SellAuth products component wrapper */
.v-tpl-shop .components .component { padding: 0; }
.v-tpl-shop .components .component > div {
  padding-left: 28px !important; padding-right: 28px !important;
  max-width: 1280px; margin: 0 auto;
}

/* ================================================================
   DISCORD CTA
   ================================================================ */
.v-dc-wrap { padding: 96px 28px; background: rgba(255,255,255,.012); }
.v-dc-inner { max-width: 1200px; margin: 0 auto; }
.v-dc {
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.07);
  border-radius: 24px; padding: 72px 48px; text-align: center; position: relative; overflow: hidden;
}
.v-dc::before {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(255,255,255,.03) 0%, transparent 65%); pointer-events: none;
}
.v-dcico { display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.7); margin-bottom: 22px; }
.v-dct { font-size: clamp(22px, 3.5vw, 40px); font-weight: 900; letter-spacing: -2px; color: #fff; margin-bottom: 14px; }
.v-dcd { font-size: 15px; color: rgba(255,255,255,.42); max-width: 380px; margin: 0 auto 32px; line-height: 1.75; }
.v-dcb { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ================================================================
   FOOTER
   ================================================================ */
footer.component {
  background: transparent !important;
  border: none !important;
  border-top: 1px solid rgba(255,255,255,.07) !important;
  border-radius: 0 !important;
  margin-top: 32px;
}
footer .max-w-7xl { max-width: 1200px !important; }
footer .border-b { border-bottom-color: rgba(255,255,255,.07) !important; }
footer .bg-card\/25 { background: transparent !important; }

/* ================================================================
   ANIMATIONS
   ================================================================ */
@keyframes vFU { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }
.v-fade { opacity: 0; transform: translateY(36px); transition: opacity .8s ease, transform .8s ease; }
.v-fade.v-vis { opacity: 1; transform: translateY(0); }
.vd1{transition-delay:.1s} .vd2{transition-delay:.2s} .vd3{transition-delay:.3s}
.vd4{transition-delay:.4s} .vd5{transition-delay:.5s}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media(max-width:1024px) {
  .v-fgrid { grid-template-columns: repeat(2,1fr); }
  .v-why-grid { grid-template-columns: 1fr; gap: 48px; }
}
@media(max-width:768px) {
  .v-nav-links { display: none; }
  .v-tog { display: flex; }
  .v-fgrid { grid-template-columns: 1fr; }
  .v-hero-stats { gap: 20px; }
  .v-sdiv { display: none; }
  .v-dc { padding: 48px 24px; }
  .v-sec, .v-sec-alt, .v-dc-wrap { padding: 72px 20px; }
  .v-hero { padding: 90px 20px 60px; }
}