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

:root {
  --bg: #060606;
  --bg-soft: #0e0e0f;
  --bg-card: rgba(255,255,255,0.05);
  --line: rgba(255,255,255,0.09);
  --text: #ffffff;
  --muted: rgba(255,255,255,0.68);
  --muted-2: rgba(255,255,255,0.42);
  --accent: #ff7a00;
  --accent-soft: rgba(255,122,0,0.14);
  --accent-strong: rgba(255,122,0,0.4);
  --radius: 28px;
  --shadow: 0 18px 80px rgba(0,0,0,0.45);
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  background:
    radial-gradient(circle at 12% 18%, rgba(255,122,0,0.18), transparent 24%),
    radial-gradient(circle at 88% 12%, rgba(255,255,255,0.07), transparent 18%),
    linear-gradient(180deg, #090909 0%, #050505 100%);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), transparent 18%),
    radial-gradient(circle at center, transparent 58%, rgba(0,0,0,0.35) 100%);
  z-index: -1;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }

.page-transition {
  animation: pageIn .7s cubic-bezier(.22,1,.36,1);
}
@keyframes pageIn {
  from { opacity: 0; transform: translateY(22px); filter: blur(8px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 50;
  padding: 16px 0 0;
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  background: rgba(7,7,7,0.62);
  backdrop-filter: blur(22px);
  border-radius: 999px;
  box-shadow: 0 12px 60px rgba(0,0,0,0.35);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  padding: 4px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border: 1px solid var(--line);
  box-shadow: 0 0 40px rgba(255,122,0,0.12);
  overflow: hidden;
}
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.brand-copy { min-width: 0; }
.brand-copy small {
  display: block;
  font-size: 11px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 2px;
}
.brand-copy strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
}

.nav-links, .social-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.nav-link, .pill {
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--muted);
  transition: .28s ease;
  border: 1px solid transparent;
}
.nav-link:hover,
.nav-link.active,
.pill:hover {
  color: var(--text);
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,122,0,0.18);
  box-shadow: 0 0 30px rgba(255,122,0,0.12);
  transform: translateY(-1px);
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-color: var(--line);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(20px);
}
.pill svg { width: 17px; height: 17px; color: var(--accent); }

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.05);
  color: var(--text);
}

.mobile-panel {
  display: none;
  margin-top: 12px;
  padding: 12px;
  border-radius: 26px;
  border: 1px solid var(--line);
  background: rgba(8,8,8,0.74);
  backdrop-filter: blur(20px);
}
.mobile-panel.open { display: grid; gap: 10px; }
.mobile-panel a { padding: 13px 14px; border-radius: 18px; color: var(--muted); }
.mobile-panel a:hover { background: rgba(255,255,255,0.05); color: var(--text); }

.hero {
  min-height: calc(100vh - 110px);
  display: grid;
  align-items: center;
  padding: 34px 0 48px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 34px;
  align-items: center;
}
.hero-copy {
  position: relative;
  z-index: 1;
}
.kicker {
  display: inline-flex;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.05);
  color: var(--muted-2);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .28em;
  backdrop-filter: blur(18px);
}
.hero h1 {
  margin: 20px 0 0;
  font-size: clamp(52px, 9vw, 102px);
  line-height: .94;
  letter-spacing: -0.05em;
}
.hero h1 span { color: var(--accent); text-shadow: 0 0 22px rgba(255,122,0,0.28); }
.hero p {
  margin: 22px 0 0;
  max-width: 760px;
  font-size: clamp(17px, 2vw, 19px);
  line-height: 1.95;
  color: var(--muted);
}
.hero-actions,
.hero-socials {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-actions { margin-top: 30px; }
.hero-socials { margin-top: 20px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.05);
  color: var(--text);
  transition: .28s ease;
  backdrop-filter: blur(18px);
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(180deg, #ff8a1d, #ff7a00);
  color: #111;
  border-color: rgba(255,122,0,0.5);
  box-shadow: 0 0 45px rgba(255,122,0,0.28);
}
.btn-primary:hover { box-shadow: 0 0 60px rgba(255,122,0,0.4); }

.hero-visual {
  position: relative;
  perspective: 1200px;
}
.hero-card {
  position: relative;
  transform: rotateY(-6deg) rotateX(2deg);
  overflow: hidden;
  border-radius: 36px;
  border: 1px solid rgba(255,255,255,0.11);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  box-shadow: var(--shadow);
  min-height: 640px;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.1), transparent 28%),
    radial-gradient(circle at 75% 15%, rgba(255,122,0,0.28), transparent 24%),
    linear-gradient(180deg, rgba(8,8,8,0.05), rgba(5,5,5,0.65));
  z-index: 2;
}
.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(0,0,0,0.18)),
    linear-gradient(135deg, rgba(255,122,0,0.18), transparent 24%),
    url('../images/hero-bg-1.jpg') center/cover no-repeat;
  transform: scale(1.06);
  animation: floatBg 15s ease-in-out infinite alternate;
}
.hero-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.15)),
    linear-gradient(135deg, rgba(255,122,0,0.08), transparent 28%),
    url('../images/hero-bg-2.png') center/cover no-repeat;
  opacity: .42;
  mix-blend-mode: screen;
  animation: crossfadeHero 18s ease-in-out infinite alternate;
}
@keyframes floatBg {
  from { transform: scale(1.05) translateY(0) translateX(0); }
  to { transform: scale(1.12) translateY(-14px) translateX(-10px); }
}
.hero-panel {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 3;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.11);
  background: rgba(6,6,6,0.42);
  backdrop-filter: blur(22px);
}
.hero-panel h3 { margin: 0 0 10px; font-size: 28px; }
.hero-panel p { margin: 0; font-size: 15px; line-height: 1.85; color: var(--muted); }
.hero-badge {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.page-section {
  padding: 48px 0 80px;
}

@keyframes crossfadeHero {
  0% { opacity: .18; transform: scale(1.02) translateX(0); }
  50% { opacity: .42; transform: scale(1.08) translateX(-1.5%); }
  100% { opacity: .26; transform: scale(1.05) translateY(-1%); }
}

.page-banner {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,0.11);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  box-shadow: var(--shadow);
  margin-bottom: 34px;
}
.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), transparent 22%),
    linear-gradient(180deg, rgba(7,7,7,0.12), rgba(7,7,7,0.52)),
    radial-gradient(circle at 82% 18%, rgba(255,122,0,0.28), transparent 22%);
  z-index: 2;
}
.page-banner-media {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.04);
}
.page-banner-media.alt {
  opacity: .24;
  mix-blend-mode: screen;
}
.page-banner-content {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 3;
  max-width: 700px;
  padding: 22px 24px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(6,6,6,0.34);
  backdrop-filter: blur(18px);
}
.page-banner-content small {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.page-banner-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}
[data-page='despre'] .page-banner-primary,
[data-page='contact'] .page-banner-primary { background-image: url('../images/hero-bg-1.jpg'); }
[data-page='despre'] .page-banner-secondary,
[data-page='contact'] .page-banner-secondary { background-image: url('../images/hero-bg-2.png'); }
[data-page='magazin'] .page-banner-primary,
[data-page='regulament'] .page-banner-primary { background-image: url('../images/hero-bg-2.png'); }
[data-page='magazin'] .page-banner-secondary,
[data-page='regulament'] .page-banner-secondary { background-image: url('../images/hero-bg-1.jpg'); }
.section-head {
  margin-bottom: 26px;
}
.section-head small {
  display: inline-flex;
  padding: 10px 15px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  color: var(--muted-2);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .3em;
}
.section-head h2 {
  margin: 16px 0 0;
  font-size: clamp(38px, 5vw, 64px);
  letter-spacing: -0.04em;
}
.section-head p {
  margin: 16px 0 0;
  max-width: 840px;
  color: var(--muted);
  line-height: 1.9;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 22px;
}
.grid-2 { grid-template-columns: 1.1fr .9fr; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  position: relative;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.03));
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: .32s ease;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255,122,0,0.12), transparent 26%);
  pointer-events: none;
}
.card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,122,0,0.2);
  box-shadow: 0 20px 90px rgba(0,0,0,0.5), 0 0 40px rgba(255,122,0,0.12);
}
.card h3,
.card h4 { margin: 0; }
.card p,
.card li { color: var(--muted); line-height: 1.85; }
.card ul { margin: 18px 0 0; padding-left: 18px; }
.card .meta {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,122,0,0.24);
  background: rgba(255,122,0,0.11);
  color: #ff9c46;
  font-size: 13px;
  font-weight: 700;
}

.staff-card {
  text-align: center;
}
.staff-avatar {
  width: 96px;
  height: 96px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02));
}
.staff-role {
  color: var(--muted-2);
  font-size: 12px;
  letter-spacing: .26em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.shop-toolbar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.shop-chip {
  padding: 11px 15px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  color: var(--muted);
  cursor: pointer;
  transition: .25s ease;
}
.shop-chip.active,
.shop-chip:hover {
  color: var(--text);
  border-color: rgba(255,122,0,0.22);
  box-shadow: 0 0 30px rgba(255,122,0,0.12);
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.product-card .top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}
.product-card h3 { font-size: 26px; }
.product-card ul { margin-top: 16px; }
.product-card .btn { margin-top: 18px; }

.rule-list {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, 1fr);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 22px;
}
.input,
.textarea {
  width: 100%;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,0.28);
  color: var(--text);
  padding: 15px 16px;
  outline: none;
  transition: .25s ease;
}
.input:focus,
.textarea:focus {
  border-color: rgba(255,122,0,0.34);
  box-shadow: 0 0 0 4px rgba(255,122,0,0.08);
}
.form-grid { display: grid; gap: 16px; }
.textarea { min-height: 180px; resize: vertical; }
.label { display: block; margin-bottom: 8px; color: var(--muted); }

.site-footer {
  padding: 18px 0 34px;
}
.footer-shell {
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-shell p { margin: 0; color: var(--muted-2); }

.note-box {
  margin-bottom: 24px;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,122,0,0.18);
  background: linear-gradient(180deg, rgba(255,122,0,0.13), rgba(255,255,255,0.03));
  backdrop-filter: blur(18px);
}
.note-box p { margin: 0; color: var(--muted); line-height: 1.9; }

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .hero-grid,
  .grid-2,
  .contact-layout,
  .grid-4,
  .grid-3,
  .shop-grid,
  .rule-list {
    grid-template-columns: 1fr 1fr;
  }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { min-height: 560px; }
}

@media (max-width: 860px) {
  .page-banner { min-height: 240px; }
  .nav-links, .social-links { display: none; }
  .menu-toggle { display: inline-grid; place-items: center; }
  .grid-2,
  .grid-3,
  .grid-4,
  .shop-grid,
  .rule-list,
  .contact-layout { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-card { min-height: 460px; }
  .hero-panel { left: 18px; right: 18px; bottom: 18px; padding: 20px; }
  .header-shell { border-radius: 28px; }
}

@media (max-width: 560px) {
  .page-banner-content { left: 16px; right: 16px; bottom: 16px; padding: 18px; }
  .container { width: min(var(--max), calc(100% - 20px)); }
  .header-shell { padding: 12px 14px; }
  .brand-mark { width: 48px; height: 48px; }
  .brand-copy small { letter-spacing: .22em; }
  .hero h1 { font-size: 48px; }
  .hero p { font-size: 16px; }
  .btn, .pill, .nav-link { padding: 12px 14px; }
}


.hero-card-slider {
  background: #070707;
}
.hero-card-slider::before {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), transparent 22%),
    radial-gradient(circle at 82% 14%, rgba(255,122,0,0.28), transparent 24%),
    linear-gradient(180deg, rgba(7,7,7,0.05), rgba(4,4,4,0.54));
}
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.15s cubic-bezier(.22,1,.36,1), transform 6.2s ease;
}
.hero-slide.is-active {
  opacity: .94;
  transform: scale(1);
}
.hero-card-glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(0,0,0,0.08) 24%, rgba(0,0,0,0.55)),
    radial-gradient(circle at 18% 20%, rgba(255,122,0,0.16), transparent 22%),
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.22));
}
.hero-panel {
  background: rgba(6,6,6,0.38);
}
.hero-dots {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.35);
  box-shadow: none;
  padding: 0;
  transition: width .28s ease, background .28s ease, box-shadow .28s ease, opacity .28s ease;
  opacity: .9;
}
.hero-dot.is-active {
  width: 34px;
  background: var(--accent);
  box-shadow: 0 0 20px rgba(255,122,0,0.35);
}
@media (max-width: 860px) {
  .hero-slide {
    transition: opacity 1s cubic-bezier(.22,1,.36,1), transform 5.8s ease;
  }
}


.trendsetters-page .page-hero-shell {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 24px;
  align-items: stretch;
}

.trendsetters-intro,
.trendsetters-note {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 34px;
  padding: 34px;
  background:
    radial-gradient(circle at top right, rgba(255,122,0,0.16), transparent 22%),
    linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02)),
    rgba(10,10,10,0.86);
  box-shadow: 0 20px 60px rgba(0,0,0,0.28);
}

.trendsetters-intro h1 {
  margin-top: 16px;
  font-size: clamp(34px, 5vw, 68px);
  line-height: .98;
  letter-spacing: -0.04em;
}

.trendsetters-intro p,
.trendsetters-note p,
.trend-gallery-head p {
  color: var(--muted);
  line-height: 1.9;
}

.trend-note-pill {
  display: inline-flex;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.05);
  color: var(--muted-2);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .22em;
  backdrop-filter: blur(18px);
}

.trendsetters-note {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.trendsetters-note h3 {
  margin: 18px 0 12px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
}

.trend-gallery-section {
  padding-top: 8px;
}

.trend-gallery-head {
  margin-bottom: 24px;
}

.trend-gallery-head small {
  color: var(--muted-2);
  letter-spacing: .24em;
  text-transform: uppercase;
}

.trend-gallery-head h2 {
  margin: 12px 0 8px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.trend-gallery {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 18px;
}

.trend-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  min-height: 290px;
  box-shadow: 0 16px 44px rgba(0,0,0,0.22);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.trend-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(0,0,0,0.3);
  border-color: rgba(255,122,0,0.22);
}

.trend-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s ease;
}

.trend-card:hover img {
  transform: scale(1.045);
}

.trend-card-xl {
  min-height: 520px;
}

.trend-card-text {
  background:
    radial-gradient(circle at top right, rgba(255,122,0,0.18), transparent 28%),
    linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)),
    rgba(12,12,12,0.92);
}

.trend-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 20px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.88));
}

.trend-overlay span {
  display: inline-block;
  margin-bottom: 6px;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
}

.trend-overlay h4, .trend-add-more h4 {
  margin: 0;
  font-size: 22px;
  line-height: 1.08;
}

.trend-add-more {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px;
}

.trend-plus {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 52px;
  line-height: 1;
  color: var(--accent);
  text-shadow: 0 0 26px rgba(255,122,0,0.25);
}

@media (max-width: 980px) {
  .trendsetters-page .page-hero-shell,
  .trend-gallery {
    grid-template-columns: 1fr;
  }

  .trend-card-xl {
    min-height: 340px;
  }
}


/* Full header hide + elegant floating logo */
.site-header {
  transition: transform .62s cubic-bezier(.22,1,.36,1), opacity .42s cubic-bezier(.22,1,.36,1);
  will-change: transform, opacity;
}

.header-shell {
  min-width: min(100%, 420px);
  overflow: hidden;
  transition:
    background .45s cubic-bezier(.22,1,.36,1),
    box-shadow .45s cubic-bezier(.22,1,.36,1),
    border-color .45s cubic-bezier(.22,1,.36,1),
    padding .45s cubic-bezier(.22,1,.36,1);
}

.nav-cluster {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  flex: 1 1 auto;
}

.nav-collapse-toggle {
  position: relative;
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
    rgba(12,12,12,0.52);
  box-shadow:
    0 12px 34px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.12);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  transition:
    transform .35s cubic-bezier(.22,1,.36,1),
    box-shadow .35s cubic-bezier(.22,1,.36,1),
    border-color .35s cubic-bezier(.22,1,.36,1),
    background .35s cubic-bezier(.22,1,.36,1),
    opacity .25s ease;
}

.nav-collapse-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(255,122,0,0.30);
  box-shadow:
    0 18px 40px rgba(0,0,0,0.28),
    0 0 28px rgba(255,122,0,0.15),
    inset 0 1px 0 rgba(255,255,255,0.14);
}

.nav-collapse-icon {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 13px;
  height: 13px;
  border-right: 2px solid rgba(255,255,255,0.92);
  border-bottom: 2px solid rgba(255,255,255,0.92);
  transform: rotate(45deg);
  transition: transform .4s cubic-bezier(.22,1,.36,1);
}

body.header-hidden .site-header {
  transform: translateY(-140%);
  opacity: 0;
  pointer-events: none;
}

body.header-hidden .nav-collapse-toggle {
  opacity: 0;
}

.header-restore-toggle {
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 70;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.04)),
    rgba(8,8,8,0.58);
  box-shadow:
    0 18px 42px rgba(0,0,0,0.26),
    inset 0 1px 0 rgba(255,255,255,0.14),
    0 0 30px rgba(255,122,0,0.12);
  backdrop-filter: blur(22px) saturate(165%);
  -webkit-backdrop-filter: blur(22px) saturate(165%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(-12px) scale(.96);
  pointer-events: none;
  transition:
    opacity .35s cubic-bezier(.22,1,.36,1),
    transform .45s cubic-bezier(.22,1,.36,1),
    box-shadow .35s cubic-bezier(.22,1,.36,1),
    border-color .35s cubic-bezier(.22,1,.36,1);
}

body.header-hidden .header-restore-toggle {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.header-restore-toggle:hover {
  border-color: rgba(255,122,0,0.32);
  box-shadow:
    0 22px 46px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.16),
    0 0 36px rgba(255,122,0,0.18);
}

.restore-chevron {
  width: 14px;
  height: 14px;
  border-left: 2px solid rgba(255,255,255,0.95);
  border-top: 2px solid rgba(255,255,255,0.95);
  transform: rotate(45deg);
  margin-left: 3px;
}

.page-watermark-logo {
  position: fixed;
  right: 28px;
  bottom: 24px;
  z-index: 20;
  width: clamp(82px, 8vw, 118px);
  opacity: .22;
  pointer-events: none;
  filter: drop-shadow(0 0 26px rgba(255,122,0,0.14));
  transition: opacity .35s ease, transform .35s ease;
}

.page-watermark-logo img {
  width: 100%;
  height: auto;
  display: block;
}

.page-watermark-logo::after {
  content: "";
  position: absolute;
  inset: -10% -10% -10% -10%;
  background: radial-gradient(circle, rgba(255,122,0,0.16), transparent 56%);
  z-index: -1;
  filter: blur(20px);
}

body.header-hidden .page-watermark-logo {
  opacity: .32;
  transform: translateY(-2px);
}

@media (max-width: 980px) {
  .nav-collapse-toggle,
  .header-restore-toggle,
  .page-watermark-logo {
    display: none !important;
  }
}


/* Lightning header controls + brighter floating logo */
.nav-collapse-toggle,
.header-restore-toggle {
  overflow: hidden;
}

.bolt-icon,
.restore-bolt {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  color: #fff4d6;
  text-shadow:
    0 0 10px rgba(255,122,0,0.35),
    0 0 22px rgba(255,190,70,0.22);
  transform: translateY(-1px);
}

.nav-collapse-toggle::before,
.header-restore-toggle::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,160,60,0.18), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  opacity: 1;
}

.nav-collapse-toggle::after,
.header-restore-toggle::after {
  content: "";
  position: absolute;
  inset: -20%;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.22) 48%, transparent 66%);
  transform: translateX(-130%);
  opacity: 0;
  pointer-events: none;
}

.nav-collapse-toggle:hover::after,
.header-restore-toggle:hover::after {
  animation: boltSweep 0.9s cubic-bezier(.22,1,.36,1);
  opacity: 1;
}

body.header-hidden .site-header::after {
  content: "";
  position: fixed;
  top: 22px;
  right: 22px;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  pointer-events: none;
  background:
    radial-gradient(circle, rgba(255,190,70,0.45), rgba(255,122,0,0.18) 42%, transparent 68%);
  filter: blur(14px);
  opacity: .95;
  animation: thunderPulse 0.9s cubic-bezier(.22,1,.36,1);
  z-index: 69;
}

.page-watermark-logo {
  top: 22px;
  right: 92px;
  bottom: auto;
  width: clamp(92px, 8.5vw, 126px);
  opacity: 1;
  z-index: 68;
  filter:
    drop-shadow(0 0 14px rgba(255,122,0,0.22))
    drop-shadow(0 0 24px rgba(255,190,70,0.16));
}

.page-watermark-logo img {
  opacity: 1;
}

.page-watermark-logo::after {
  background: radial-gradient(circle, rgba(255,160,60,0.24), transparent 58%);
  filter: blur(16px);
}

body.header-hidden .page-watermark-logo {
  opacity: 1;
  transform: translateY(0);
}

@keyframes boltSweep {
  0% { transform: translateX(-130%); opacity: 0; }
  20% { opacity: .85; }
  100% { transform: translateX(130%); opacity: 0; }
}

@keyframes thunderPulse {
  0% { transform: scale(.7); opacity: 0; }
  35% { transform: scale(1.18); opacity: 1; }
  100% { transform: scale(1); opacity: .85; }
}

@media (max-width: 980px) {
  .page-watermark-logo {
    display: none !important;
  }
}

.nav-collapse-icon,
.restore-chevron { display:none !important; }


/* STRONG lightning hide effect */
body.header-hidden::before {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(120deg,
    transparent 40%,
    rgba(255,255,255,0.9) 48%,
    rgba(255,180,60,0.8) 50%,
    rgba(255,255,255,0.9) 52%,
    transparent 60%);
  opacity: 0;
  pointer-events: none;
  z-index: 100;
  animation: lightningFlash 0.6s ease-out;
}

@keyframes lightningFlash {
  0% { opacity: 0; transform: translateX(-100%); }
  20% { opacity: 1; }
  50% { opacity: 0.8; }
  100% { opacity: 0; transform: translateX(100%); }
}



/* Double-strike lightning effect */
body.lightning-strike::before,
body.lightning-strike::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 120;
  opacity: 0;
  mix-blend-mode: screen;
}

body.lightning-strike::before {
  background:
    linear-gradient(118deg,
      transparent 36%,
      rgba(255,255,255,0.00) 42%,
      rgba(255,255,255,0.96) 47.6%,
      rgba(255,190,70,0.88) 49.5%,
      rgba(255,255,255,0.96) 51.4%,
      rgba(255,255,255,0.00) 56%,
      transparent 62%);
  animation: lightningStrikePrimary .34s cubic-bezier(.22,1,.36,1) forwards;
}

body.lightning-strike::after {
  background:
    linear-gradient(122deg,
      transparent 40%,
      rgba(255,255,255,0.00) 45%,
      rgba(255,255,255,0.82) 48.5%,
      rgba(255,140,40,0.72) 50%,
      rgba(255,255,255,0.82) 51.5%,
      rgba(255,255,255,0.00) 55%,
      transparent 60%);
  filter: blur(2px);
  animation: lightningStrikeSecondary .28s cubic-bezier(.22,1,.36,1) .14s forwards;
}

@keyframes lightningStrikePrimary {
  0% { opacity: 0; transform: translateX(-100%) skewX(-8deg); }
  14% { opacity: 1; }
  40% { opacity: .92; }
  100% { opacity: 0; transform: translateX(100%) skewX(-8deg); }
}

@keyframes lightningStrikeSecondary {
  0% { opacity: 0; transform: translateX(-80%) skewX(-10deg); }
  18% { opacity: .95; }
  48% { opacity: .78; }
  100% { opacity: 0; transform: translateX(100%) skewX(-10deg); }
}


/* VIP special styling */
.product-card.vip-bronze {
  border-color: rgba(184, 115, 51, 0.34);
  box-shadow: 0 18px 42px rgba(0,0,0,0.34), 0 0 28px rgba(184,115,51,0.14);
  background:
    radial-gradient(circle at top right, rgba(184,115,51,0.16), transparent 26%),
    rgba(255,255,255,0.05);
}
.product-card.vip-silver {
  border-color: rgba(192, 198, 208, 0.36);
  box-shadow: 0 18px 42px rgba(0,0,0,0.34), 0 0 28px rgba(192,198,208,0.14);
  background:
    radial-gradient(circle at top right, rgba(192,198,208,0.16), transparent 26%),
    rgba(255,255,255,0.05);
}
.product-card.vip-gold {
  border-color: rgba(255, 205, 72, 0.38);
  box-shadow: 0 18px 42px rgba(0,0,0,0.34), 0 0 30px rgba(255,205,72,0.16);
  background:
    radial-gradient(circle at top right, rgba(255,205,72,0.18), transparent 26%),
    rgba(255,255,255,0.05);
}
.product-card.vip-platinum {
  border-color: rgba(153, 226, 255, 0.38);
  box-shadow: 0 18px 42px rgba(0,0,0,0.34), 0 0 30px rgba(153,226,255,0.16);
  background:
    radial-gradient(circle at top right, rgba(153,226,255,0.18), transparent 26%),
    rgba(255,255,255,0.05);
}
.product-card.vip-bronze .meta,
.product-card.vip-silver .meta,
.product-card.vip-gold .meta,
.product-card.vip-platinum .meta {
  backdrop-filter: blur(12px);
}
.product-card.vip-bronze .meta { background: rgba(184,115,51,0.16); border-color: rgba(184,115,51,0.28); color: #ffc08a; }
.product-card.vip-silver .meta { background: rgba(192,198,208,0.14); border-color: rgba(192,198,208,0.28); color: #eef4ff; }
.product-card.vip-gold .meta { background: rgba(255,205,72,0.14); border-color: rgba(255,205,72,0.28); color: #ffe7a3; }
.product-card.vip-platinum .meta { background: rgba(153,226,255,0.14); border-color: rgba(153,226,255,0.28); color: #dff8ff; }
.product-card.vip-bronze:hover,
.product-card.vip-silver:hover,
.product-card.vip-gold:hover,
.product-card.vip-platinum:hover {
  transform: translateY(-6px) scale(1.01);
}


/* Editable staff system */
.staff-group {
  margin-top: 32px;
}
.staff-group-head {
  margin-bottom: 18px;
}
.staff-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.staff-profile {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03)),
    rgba(10,10,10,0.86);
}
.staff-photo-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 16px;
  background: rgba(255,255,255,0.04);
}
.staff-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.staff-profile:hover .staff-photo {
  transform: scale(1.045);
}
.staff-badge {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
}
.staff-profile h3 {
  margin: 0 0 10px;
  font-size: 22px;
}
.staff-profile p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.staff-profile.gods {
  border-color: rgba(255,122,0,0.4);
  box-shadow: 0 18px 44px rgba(0,0,0,0.34), 0 0 35px rgba(255,122,0,0.25);
  background:
    radial-gradient(circle at top right, rgba(255,122,0,0.25), transparent 30%),
    rgba(12,12,12,0.9);
}


.staff-profile.demi-gods {
  border-color: rgba(255,230,100,0.4);
  box-shadow: 0 18px 44px rgba(0,0,0,0.34), 0 0 30px rgba(255,230,100,0.2);
}


.staff-profile.angels {
  border-color: rgba(140,0,255,0.4);
  box-shadow: 0 18px 44px rgba(0,0,0,0.34), 0 0 30px rgba(140,0,255,0.25);
}


.staff-profile.demi-angels {
  border-color: rgba(200,120,255,0.4);
  box-shadow: 0 18px 44px rgba(0,0,0,0.34), 0 0 30px rgba(200,120,255,0.25);
}

.staff-profile.gods .staff-badge {
  background: rgba(255,122,0,0.14);
  border-color: rgba(255,122,0,0.24);
  color: #ffd5a8;
}

.staff-profile.demi-gods .staff-badge {
  background: rgba(255,230,100,0.15);
  border-color: rgba(255,230,100,0.3);
  color: #fff3a0;
}


.staff-profile.angels .staff-badge {
  background: rgba(140,0,255,0.15);
  border-color: rgba(140,0,255,0.3);
  color: #e0b3ff;
}


.staff-profile.demi-angels .staff-badge {
  background: rgba(200,120,255,0.15);
  border-color: rgba(200,120,255,0.3);
  color: #f0d6ff;
}

@media (max-width: 1100px) {
  .staff-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 700px) {
  .staff-grid {
    grid-template-columns: 1fr;
  }
}


/* Animated premium staff effects */
@keyframes godsPulse {
  0%, 100% {
    box-shadow: 0 18px 44px rgba(0,0,0,0.34), 0 0 28px rgba(255,122,0,0.18), 0 0 0 rgba(255,122,0,0);
    border-color: rgba(255,122,0,0.34);
  }
  50% {
    box-shadow: 0 22px 52px rgba(0,0,0,0.38), 0 0 42px rgba(255,122,0,0.32), 0 0 70px rgba(255,122,0,0.10);
    border-color: rgba(255,122,0,0.5);
  }
}

@keyframes auraPurpleDark {
  0%, 100% {
    box-shadow: 0 18px 44px rgba(0,0,0,0.34), 0 0 24px rgba(140,0,255,0.18);
  }
  50% {
    box-shadow: 0 22px 50px rgba(0,0,0,0.38), 0 0 36px rgba(140,0,255,0.30), 0 0 62px rgba(140,0,255,0.08);
  }
}

@keyframes auraPurpleLight {
  0%, 100% {
    box-shadow: 0 18px 44px rgba(0,0,0,0.34), 0 0 24px rgba(200,120,255,0.18);
  }
  50% {
    box-shadow: 0 22px 50px rgba(0,0,0,0.38), 0 0 36px rgba(200,120,255,0.28), 0 0 60px rgba(200,120,255,0.08);
  }
}

.staff-profile {
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease, background .35s ease;
}

.staff-profile.gods {
  animation: godsPulse 3.2s ease-in-out infinite;
}

.staff-profile.demi-gods {
  position: relative;
  overflow: hidden;
}

.staff-profile.demi-gods::before {
  content: "";
  position: absolute;
  top: -120%;
  left: -50%;
  width: 55%;
  height: 300%;
  background: linear-gradient(180deg, transparent, rgba(255,230,100,0.05), rgba(255,244,176,0.34), rgba(255,230,100,0.05), transparent);
  transform: rotate(20deg);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}

.staff-profile.demi-gods:hover::before {
  opacity: 1;
  animation: goldShine 1.2s cubic-bezier(.22,1,.36,1) 1;
}

@keyframes goldShine {
  from { left: -55%; }
  to { left: 125%; }
}

.staff-profile.angels {
  animation: auraPurpleDark 3.8s ease-in-out infinite;
}

.staff-profile.demi-angels {
  animation: auraPurpleLight 4.2s ease-in-out infinite;
}

.staff-profile.gods:hover,
.staff-profile.demi-gods:hover,
.staff-profile.angels:hover,
.staff-profile.demi-angels:hover {
  transform: translateY(-6px) scale(1.015);
}

.staff-profile.gods .staff-photo-wrap {
  box-shadow: 0 0 30px rgba(255,122,0,0.16);
}
.staff-profile.demi-gods .staff-photo-wrap {
  box-shadow: 0 0 28px rgba(255,230,100,0.12);
}
.staff-profile.angels .staff-photo-wrap {
  box-shadow: 0 0 28px rgba(140,0,255,0.12);
}
.staff-profile.demi-angels .staff-photo-wrap {
  box-shadow: 0 0 28px rgba(200,120,255,0.12);
}


.regulation-card { padding: 24px; }
.regulation-pre {
  margin: 0;
  white-space: pre-wrap;
  color: var(--muted);
  line-height: 1.9;
  font-family: Inter, system-ui, sans-serif;
  font-size: 15px;
}


.regulation-link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.reg-link-card {
  position: relative;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02)),
    rgba(10,10,10,0.88);
  box-shadow: 0 18px 44px rgba(0,0,0,0.28);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease, background .3s ease;
}

.reg-link-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 58px rgba(0,0,0,0.34);
  border-color: rgba(255,122,0,0.22);
}

.reg-link-icon {
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 28px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.reg-link-card h3 {
  margin: 4px 0 8px;
  font-size: 22px;
  line-height: 1.15;
}

.reg-link-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.reg-general {
  border-color: rgba(255, 76, 76, 0.20);
  box-shadow: 0 18px 44px rgba(0,0,0,0.28), 0 0 24px rgba(255,76,76,0.08);
}
.reg-police {
  border-color: rgba(90, 150, 255, 0.18);
  box-shadow: 0 18px 44px rgba(0,0,0,0.28), 0 0 24px rgba(90,150,255,0.08);
}
.reg-penal {
  border-color: rgba(255, 190, 70, 0.18);
  box-shadow: 0 18px 44px rgba(0,0,0,0.28), 0 0 24px rgba(255,190,70,0.08);
}
.reg-medic,
.reg-course {
  border-color: rgba(120, 255, 220, 0.16);
  box-shadow: 0 18px 44px rgba(0,0,0,0.28), 0 0 24px rgba(120,255,220,0.06);
}

.reg-general:hover { box-shadow: 0 26px 58px rgba(0,0,0,0.34), 0 0 30px rgba(255,76,76,0.12); }
.reg-police:hover { box-shadow: 0 26px 58px rgba(0,0,0,0.34), 0 0 30px rgba(90,150,255,0.12); }
.reg-penal:hover { box-shadow: 0 26px 58px rgba(0,0,0,0.34), 0 0 30px rgba(255,190,70,0.12); }
.reg-medic:hover,
.reg-course:hover { box-shadow: 0 26px 58px rgba(0,0,0,0.34), 0 0 30px rgba(120,255,220,0.10); }

body.modal-open { overflow: hidden; }

.buy-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at top right, rgba(255,122,0,0.18), transparent 20%),
    rgba(0,0,0,0.68);
  backdrop-filter: blur(12px) saturate(135%);
  -webkit-backdrop-filter: blur(12px) saturate(135%);
  opacity: 0;
  pointer-events: none;
  transition: opacity .34s cubic-bezier(.22,1,.36,1);
}

.buy-modal.is-visible { opacity: 1; pointer-events: auto; }

.buy-modal-shell {
  position: relative;
  width: min(760px, 100%);
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,0.10);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03)),
    rgba(10,10,10,0.92);
  box-shadow:
    0 30px 90px rgba(0,0,0,0.42),
    0 0 44px rgba(255,122,0,0.10);
  padding: 34px 34px 30px;
  transform: translateY(18px) scale(.97);
  transition: transform .42s cubic-bezier(.22,1,.36,1), box-shadow .42s cubic-bezier(.22,1,.36,1);
}

.buy-modal.is-visible .buy-modal-shell { transform: translateY(0) scale(1); }

.buy-modal-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top right, rgba(255,122,0,0.18), transparent 26%),
    radial-gradient(circle at left center, rgba(255,255,255,0.05), transparent 24%);
}

.buy-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 999px;
  color: #fff;
  background: rgba(255,255,255,0.05);
  cursor: pointer;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.buy-modal-close:hover {
  transform: translateY(-1px);
  border-color: rgba(255,122,0,0.28);
  box-shadow: 0 0 24px rgba(255,122,0,0.14);
}

.buy-modal-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.74);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.buy-modal h3 {
  position: relative;
  margin: 0 0 14px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1;
  letter-spacing: -0.04em;
}
.buy-modal p {
  position: relative;
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
  font-size: 15px;
  max-width: 62ch;
}
.buy-modal-actions {
  position: relative;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.buy-modal-secondary {
  background: rgba(255,255,255,0.05);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.08);
}
.buy-modal-secondary:hover {
  border-color: rgba(255,122,0,0.22);
  box-shadow: 0 0 20px rgba(255,122,0,0.08);
}
@media (max-width: 720px) {
  .buy-modal-shell { padding: 28px 20px 22px; border-radius: 28px; }
  .buy-modal-actions { flex-direction: column; }
  .buy-modal-actions .btn { width: 100%; justify-content: center; }
}


/* Popup lightning effect */
body.popup-lightning::before,
body.popup-lightning::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 119;
  opacity: 0;
  mix-blend-mode: screen;
}

body.popup-lightning::before {
  background:
    linear-gradient(120deg,
      transparent 36%,
      rgba(255,255,255,0.00) 42%,
      rgba(255,255,255,0.96) 47.5%,
      rgba(255,190,70,0.82) 49.5%,
      rgba(255,255,255,0.96) 51.5%,
      rgba(255,255,255,0.00) 56%,
      transparent 62%);
  animation: popupLightningPrimary .34s cubic-bezier(.22,1,.36,1) forwards;
}

body.popup-lightning::after {
  background:
    linear-gradient(123deg,
      transparent 42%,
      rgba(255,255,255,0.00) 46%,
      rgba(255,255,255,0.76) 48.4%,
      rgba(255,122,0,0.60) 50%,
      rgba(255,255,255,0.76) 51.6%,
      rgba(255,255,255,0.00) 55%,
      transparent 60%);
  filter: blur(2px);
  animation: popupLightningSecondary .26s cubic-bezier(.22,1,.36,1) .12s forwards;
}

@keyframes popupLightningPrimary {
  0% { opacity: 0; transform: translateX(-100%) skewX(-8deg); }
  14% { opacity: 1; }
  42% { opacity: .92; }
  100% { opacity: 0; transform: translateX(100%) skewX(-8deg); }
}

@keyframes popupLightningSecondary {
  0% { opacity: 0; transform: translateX(-84%) skewX(-10deg); }
  18% { opacity: .95; }
  46% { opacity: .78; }
  100% { opacity: 0; transform: translateX(100%) skewX(-10deg); }
}

.buy-modal.is-visible .buy-modal-shell {
  animation: buyModalShellIn .48s cubic-bezier(.22,1,.36,1);
}

@keyframes buyModalShellIn {
  0% {
    transform: translateY(22px) scale(.95);
    box-shadow: 0 18px 48px rgba(0,0,0,0.32);
  }
  45% {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 38px 96px rgba(0,0,0,0.46), 0 0 54px rgba(255,122,0,0.14);
  }
  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 30px 90px rgba(0,0,0,0.42), 0 0 44px rgba(255,122,0,0.10);
  }
}


/* Master loader */
body.loader-active {
  overflow: hidden;
}
.site-loader {
  position: fixed;
  inset: 0;
  z-index: 160;
  display: grid;
  place-items: center;
  padding: 20px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255,122,0,0.16), transparent 24%),
    radial-gradient(circle at 78% 14%, rgba(255,255,255,0.05), transparent 18%),
    linear-gradient(180deg, rgba(4,4,4,0.985), rgba(8,8,8,0.99));
  backdrop-filter: blur(12px);
  transition: opacity .75s cubic-bezier(.22,1,.36,1), visibility .75s cubic-bezier(.22,1,.36,1);
}
.site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}
.site-loader-shell {
  position: relative;
  width: min(620px, calc(100% - 12px));
  padding: 38px 34px 30px;
  border-radius: 36px;
  border: 1px solid rgba(255,255,255,0.09);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.065), rgba(255,255,255,0.025)),
    rgba(8,8,8,0.82);
  box-shadow:
    0 30px 110px rgba(0,0,0,0.56),
    0 0 64px rgba(255,122,0,0.10);
  overflow: hidden;
  isolation: isolate;
}
.site-loader-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 24%, rgba(255,255,255,0.08) 42%, transparent 60%);
  transform: translateX(-120%);
  animation: loaderSweep 2.4s cubic-bezier(.22,1,.36,1) infinite;
  z-index: -1;
}
.site-loader-orbit {
  position: absolute;
  inset: -15% auto auto 50%;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  transform: translateX(-50%);
  background:
    radial-gradient(circle, rgba(255,122,0,0.18), rgba(255,122,0,0.03) 36%, transparent 64%);
  filter: blur(10px);
  animation: orbitPulse 3.2s ease-in-out infinite;
}
.site-loader-logo-wrap {
  position: relative;
  width: 116px;
  margin: 0 auto 18px;
  filter: drop-shadow(0 0 34px rgba(255,122,0,0.18));
}
.site-loader-logo {
  width: 100%;
  height: auto;
  display: block;
}
.site-loader-copy {
  position: relative;
  text-align: center;
}
.site-loader-copy small {
  display: block;
  color: var(--muted-2);
  letter-spacing: .34em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.site-loader-copy h1 {
  margin: 0;
  font-size: clamp(48px, 7vw, 72px);
  line-height: .94;
  letter-spacing: -.06em;
}
.site-loader-copy p {
  margin: 14px auto 0;
  max-width: 34ch;
  color: var(--muted);
  line-height: 1.85;
}
.site-loader-bar {
  position: relative;
  width: 100%;
  height: 10px;
  margin-top: 24px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
}
.site-loader-bar-fill {
  position: absolute;
  inset: 0;
  width: 40%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(255,122,0,0.30), rgba(255,190,70,0.95), rgba(255,122,0,0.30));
  filter: saturate(130%);
  animation: loaderBar 1.25s cubic-bezier(.22,1,.36,1) infinite;
}
.site-loader-enter {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 24px;
  padding: 18px 22px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.10);
  color: #fff;
  font-weight: 700;
  letter-spacing: -.01em;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.04)),
    linear-gradient(135deg, rgba(255,122,0,0.24), rgba(255,122,0,0.08)),
    rgba(14,14,14,0.72);
  box-shadow:
    0 18px 34px rgba(0,0,0,0.28),
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 0 0 rgba(255,122,0,0);
  cursor: pointer;
  overflow: hidden;
  transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s cubic-bezier(.22,1,.36,1), border-color .3s cubic-bezier(.22,1,.36,1);
}
.site-loader-enter::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 24%, rgba(255,255,255,0.22) 48%, transparent 68%);
  transform: translateX(-120%);
  transition: transform .9s cubic-bezier(.22,1,.36,1);
}
.site-loader-enter:hover {
  transform: translateY(-2px) scale(1.01);
  border-color: rgba(255,122,0,0.28);
  box-shadow:
    0 24px 48px rgba(0,0,0,0.34),
    inset 0 1px 0 rgba(255,255,255,0.14),
    0 0 28px rgba(255,122,0,0.14);
}
.site-loader-enter:hover::before {
  transform: translateX(120%);
}
.site-loader-enter span {
  position: relative;
  z-index: 1;
}

@keyframes loaderBar {
  from { transform: translateX(-120%); }
  to { transform: translateX(320%); }
}
@keyframes loaderSweep {
  from { transform: translateX(-120%); }
  to { transform: translateX(120%); }
}
@keyframes orbitPulse {
  0%,100% { transform: translateX(-50%) scale(1); opacity: .9; }
  50% { transform: translateX(-50%) scale(1.08); opacity: 1; }
}

/* Apple-like reveal */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  filter: blur(8px);
  transition:
    opacity .8s cubic-bezier(.22,1,.36,1),
    transform .8s cubic-bezier(.22,1,.36,1),
    filter .8s cubic-bezier(.22,1,.36,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* VIP hover premium */
.product-card.vip-bronze:hover,
.product-card.vip-silver:hover,
.product-card.vip-gold:hover,
.product-card.vip-platinum:hover {
  transform: translateY(-8px) scale(1.015);
}
.product-card.vip-bronze::after,
.product-card.vip-silver::after,
.product-card.vip-gold::after,
.product-card.vip-platinum::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity .35s ease;
}
.product-card.vip-bronze:hover::after {
  opacity: 1;
  box-shadow: inset 0 0 0 1px rgba(184,115,51,0.34), 0 0 40px rgba(184,115,51,0.16);
}
.product-card.vip-silver:hover::after {
  opacity: 1;
  box-shadow: inset 0 0 0 1px rgba(192,198,208,0.36), 0 0 42px rgba(192,198,208,0.18);
}
.product-card.vip-gold:hover::after {
  opacity: 1;
  box-shadow: inset 0 0 0 1px rgba(255,205,72,0.38), 0 0 46px rgba(255,205,72,0.20);
}
.product-card.vip-platinum:hover::after {
  opacity: 1;
  box-shadow: inset 0 0 0 1px rgba(153,226,255,0.38), 0 0 46px rgba(153,226,255,0.20);
}
.product-card .btn-primary {
  position: relative;
  overflow: hidden;
}
.product-card .btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 28%, rgba(255,255,255,0.22) 48%, transparent 66%);
  transform: translateX(-120%);
  transition: transform .7s cubic-bezier(.22,1,.36,1);
}
.product-card:hover .btn-primary::after {
  transform: translateX(120%);
}

/* Discord toast */
.discord-toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  z-index: 155;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.09);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03)),
    rgba(8,8,8,0.88);
  box-shadow: 0 22px 54px rgba(0,0,0,0.34), 0 0 30px rgba(255,122,0,0.08);
  color: rgba(255,255,255,0.88);
  transform: translate(-50%, 24px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .34s cubic-bezier(.22,1,.36,1), transform .34s cubic-bezier(.22,1,.36,1);
}
.discord-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}
.discord-toast-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffbf66, #ff7a00);
  box-shadow: 0 0 18px rgba(255,122,0,0.28);
}


.contact-form-card {
  padding: 24px;
}
.contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.contact-mail-btn {
  background: rgba(255,255,255,0.05);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.08);
}
.contact-mail-btn:hover {
  border-color: rgba(255,122,0,0.22);
  box-shadow: 0 0 20px rgba(255,122,0,0.08);
}
.contact-status {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.8;
}
.contact-status.is-success {
  color: #9ef0b0;
}
.contact-status.is-error {
  color: #ffb2b2;
}
.contact-status.is-info {
  color: #ffd59a;
}


.contact-clean-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.contact-clean-card h3 {
  margin-bottom: 12px;
  font-size: 26px;
}

.contact-email {
  font-size: 18px;
  font-weight: 600;
  color: #ff7a00;
  margin: 16px 0;
}

.contact-note {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.7;
}

.contact-discord-btn {
  margin-top: 20px;
}
