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

:root {
  --gold: #C9A34F;
  --gold-light: #E8D48B;
  --gold-dark: #8B6914;
  --gold-500: #C9A34F;
  --gold-600: #B8942F;
  --gold-300: #E8D48B;
  --gold-200: #F0E4B8;
  --gold-400: #D4AF37;
  --gold-700: #6B5310;
  --gold-800: #4A3A0B;
  --bg: #000000;
  --fg: #ffffff;
  --muted: #71717a;
  --muted-fg: #a1a1aa;
  --border: #27272a;
  --card: #18181b;
  --card-bg: rgba(24,24,27,0.5);
}

/* Font-symbol icons (replaces inline SVG icons) */
.fi {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-style: normal;
  font-weight: 400;
  font-family: "Segoe UI Symbol", "Noto Sans Symbols 2", "Apple Symbols", "Segoe UI Emoji", sans-serif;
  user-select: none;
  flex-shrink: 0;
}

/* Light theme */
[data-theme="light"] {
  --bg: #ffffff;
  --fg: #18181b;
  --muted: #d4d4d8;
  --muted-fg: #71717a;
  --border: #e4e4e7;
  --card: #f4f4f5;
  --card-bg: rgba(244,244,245,0.8);
}
[data-theme="light"] body {
  background: #fff;
  color: #18181b;
}
[data-theme="light"] .site-header { background: #fff; }
[data-theme="light"] .nicotine-warning { background: #fff; color: #18181b; border-color: #e4e4e7; }
[data-theme="light"] .site-footer { background: #fff; color: #18181b; }
[data-theme="light"] .footer-inner { border-color: #e4e4e7; }
[data-theme="light"] .footer-brand p,
[data-theme="light"] .footer-nav a,
[data-theme="light"] .footer-contact-info,
[data-theme="light"] .footer-contact-info a,
[data-theme="light"] .footer-legal p,
[data-theme="light"] .footer-legal nav a,
[data-theme="light"] .footer-subscribe p,
[data-theme="light"] .age-warning { color: #71717a; }
[data-theme="light"] .footer-nav h4,
[data-theme="light"] .footer-brand h3,
[data-theme="light"] .social-links .label,
[data-theme="light"] .footer-contact-info .label { color: #18181b; }
[data-theme="light"] .nav-links > li > a { color: #18181b; }
[data-theme="light"] .nav-links > li > a:hover { color: #c9a34f; }
[data-theme="light"] .nav-icons a,
[data-theme="light"] .nav-icons button { color: #18181b; }
[data-theme="light"] .nav-icons a:hover,
[data-theme="light"] .nav-icons button:hover { color: #18181b; background: #f4f4f5; }
[data-theme="light"] .mega-menu-inner { background: #fff; border-color: #e4e4e7; }
[data-theme="light"] .mega-categories { border-color: #e4e4e7; }
[data-theme="light"] .mega-cat { color: #18181b; }
[data-theme="light"] .mega-cat.active { background: #f4f4f5; }
[data-theme="light"] .mega-product-label { color: #18181b; }
[data-theme="light"] .mega-view-all-circle { border-color: #e4e4e7; color: #18181b; }
[data-theme="light"] .product-card-name { color: #18181b; }
[data-theme="light"] .product-card:hover .product-card-name { color: #c9a34f; }
[data-theme="light"] .product-card-subtitle { color: #71717a; }
[data-theme="light"] .spec-tag { border-color: #e4e4e7; color: #71717a; }
[data-theme="light"] .product-card:hover .spec-tag { border-color: #a1a1aa; color: #18181b; }
[data-theme="light"] .brand-desc { color: #71717a; }
[data-theme="light"] .gallery-heading { color: #18181b; }
[data-theme="light"] .subscribe-form input { background: #f4f4f5; border-color: #e4e4e7; color: #18181b; }


* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

body.mobile-nav-open {
  overflow: hidden;
}

.gradient-text {
  background: linear-gradient(to right, var(--gold-300), var(--gold-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-white {
  background: linear-gradient(to bottom, #fff, #fff, #71717a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Nicotine Warning Banner */
.nicotine-warning {
  width: 100%;
  background: var(--bg);
  color: var(--fg);
  padding: 12px 16px;
  text-align: center;
}
.nicotine-warning p {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 28px;
}
@media (min-width: 768px) { .nicotine-warning p { font-size: 20px; } }

/* Header / Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background: #000;
  height: 72px;
  transition: background-color 0.3s, box-shadow 0.3s;
}
.header-inner {
  max-width: 1536px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  height: 100%;
  gap: 40px;
}
@media (max-width: 767px) {
  .header-inner {
    gap: 8px;
  }
  .header-inner .nav-login { display: none; }
}
.header-inner > nav { margin-right: auto; }
@media (max-width: 767px) { .header-inner > nav { display: none; } }
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo img {
  height: auto;
  width: 240px;
  object-fit: contain;
}
@media (max-width: 640px) { .logo img { width: 160px; } }
.nav-links {
  display: none;
  list-style: none;
  gap: 26.5px;
  align-items: center;
}
@media (min-width: 768px) { .nav-links { display: flex; } }
.nav-links > li > a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  transition: color 0.15s;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.nav-links > li > a:hover { color: #fcd34d; }
.nav-links > li > a:hover .dropdown-arrow { transform: rotate(180deg); }
.nav-icons {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-icons a, .nav-icons button {
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  border-radius: 9999px;
  transition: color 0.15s, background 0.15s;
  display: flex;
  align-items: center;
}
.nav-icons a:hover, .nav-icons button:hover { color: #fff; background: #262626; }

/* Theme toggle */
.theme-toggle {
  position: relative;
}
.theme-toggle .icon-sun,
.theme-toggle .icon-moon { transition: opacity 0.2s, transform 0.2s; }
[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }
[data-theme="light"] .theme-toggle .icon-sun { display: none; }
[data-theme="light"] .theme-toggle .icon-moon { display: block; }

/* Mobile menu button — hidden by default (desktop), shown only on mobile */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.15s;
}
.mobile-menu-btn:hover { background: #262626; }
@media (max-width: 767px) { .mobile-menu-btn { display: flex; } }

/* Footer */
.site-footer {
  background: #000;
  color: #fff;
}
.footer-inner {
  max-width: 1504px;
  margin: 0 auto;
  padding: 48px 16px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}
.footer-brand h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}
.footer-brand h3 { background: linear-gradient(135deg, rgb(230,200,90) 0%, rgb(148,114,47) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; text-transform: uppercase; }
.footer-brand p { color: var(--muted-fg); font-size: 14px; line-height: 1.6; }
.footer-subscribe {
  margin-top: 16px;
}
.footer-subscribe p { color: var(--muted-fg); font-size: 12px; margin-bottom: 8px; }
.subscribe-form {
  display: flex;
  gap: 8px;
}
.subscribe-form input {
  flex: 1;
  min-width: 0;
  background: rgba(39,39,42,0.6);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 14px;
  color: var(--fg);
  outline: none;
  transition: border-color 0.2s;
}
.subscribe-form input:focus { border-color: rgba(201,163,79,0.5); }
.subscribe-form input::placeholder { color: var(--muted-fg); }
.subscribe-form button {
  padding: 8px 12px;
  background: var(--gold-500);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
}
.subscribe-form button:hover { background: var(--gold-600); }

.footer-nav h4 { font-weight: 600; margin-bottom: 16px; font-size: 16px; }
.footer-nav ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-nav a { color: var(--muted-fg); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-nav a:hover { color: var(--fg); }

/* Footer accordion (mobile) */
.footer-nav-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  color: var(--fg);
  cursor: pointer;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.footer-nav-toggle h4 { margin-bottom: 0; font-size: 16px; font-weight: 600; }
.footer-nav-toggle .fi {
  transition: transform 0.2s;
  color: var(--muted-fg);
}
.footer-nav-toggle[aria-expanded="true"] .fi { transform: rotate(180deg); }
.footer-nav-title { display: none; }
.footer-nav-content { display: none; padding: 12px 0; }
.footer-nav.open .footer-nav-content { display: block; }
@media (min-width: 1024px) {
  .footer-nav-toggle { display: none; }
  .footer-nav-title { display: block; }
  .footer-nav-content { display: block; }
}

.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 40px;
  padding-top: 24px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 1024px) {
  .footer-contact { flex-direction: row; justify-content: space-between; align-items: flex-start; }
}
.footer-contact-info { font-size: 14px; color: var(--muted-fg); }
.footer-contact-info a { color: var(--muted-fg); text-decoration: none; transition: color 0.2s; }
.footer-contact-info a:hover { color: var(--fg); }
.footer-contact-info .label { color: rgba(255,255,255,0.9); }

.social-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
.social-links .label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--fg); }
.social-links a { color: var(--muted-fg); transition: color 0.2s; }
.social-links a:hover { color: var(--fg); }
.social-links svg { width: 20px; height: 20px; fill: currentColor; }

.footer-legal {
  border-top: 1px solid var(--border);
  margin-top: 24px;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .footer-legal { flex-direction: row; align-items: center; justify-content: space-between; }
}
.footer-legal p { font-size: 14px; color: var(--muted-fg); }
.footer-legal nav { display: flex; flex-wrap: wrap; gap: 16px; }
.footer-legal nav a { color: var(--muted-fg); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-legal nav a:hover { color: var(--fg); }
.age-warning { font-size: 12px; color: var(--muted-fg); margin-top: 12px; line-height: 16px; }

/* ===== Age Verification Gate ===== */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.age-gate.hidden { display: none; }
.age-gate-card {
  width: 100%;
  max-width: 28rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}
.age-gate-header { margin-bottom: 24px; }
.age-gate-title {
  font-size: 30px;
  font-weight: 700;
  color: var(--fg);
  margin: 0 0 8px;
  letter-spacing: 0.02em;
}
.age-gate-divider {
  height: 4px;
  width: 64px;
  background: var(--gold-500);
  margin: 0 auto;
  border-radius: 9999px;
}
.age-gate-text {
  color: var(--muted-fg);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 32px;
}
.age-gate-highlight {
  color: var(--gold-400);
  font-weight: 600;
  margin-top: 8px;
  display: block;
}
.age-gate-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.age-gate-btn-yes {
  width: 100%;
  padding: 16px;
  background: var(--gold-500);
  color: #000;
  font-weight: 700;
  font-size: 18px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s;
}
.age-gate-btn-yes:hover { background: var(--gold-400); }
.age-gate-btn-no {
  width: 100%;
  padding: 16px;
  background: rgba(113, 113, 122, 0.15);
  color: var(--muted-fg);
  font-weight: 500;
  font-size: 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.age-gate-btn-no:hover { background: rgba(113, 113, 122, 0.3); color: var(--fg); }
.age-gate-legal {
  margin-top: 24px;
  font-size: 12px;
  color: var(--muted-fg);
}
body.age-gate-open { overflow: hidden; }

/* Section utilities */
.section-container { max-width: 1280px; margin: 0 auto; padding: 0 16px; }
.section-pad { padding: 64px 16px; }
@media (min-width: 768px) { .section-pad { padding: 96px 16px; } }

/* Button styles */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: #fff;
  border: none;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-gold:hover { background: linear-gradient(135deg, var(--gold-400), var(--gold-500)); transform: translateY(-1px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--border);
  border-radius: 9999px;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-outline:hover { border-color: var(--muted-fg); }

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}
@keyframes float2 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(-180deg); }
}
@keyframes float3 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -20px); }
}
.fade-in-up { animation: fadeInUp 0.8s ease-out forwards; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* Scroll-triggered animations */
.scroll-animate {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.scroll-animate.visible {
  opacity: 1;
  transform: none;
}
.scroll-animate-sm {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.scroll-animate-sm.visible {
  opacity: 1;
  transform: none;
}

/* Hero slide up */
.hero-slide-up {
  animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

/* Floating decorative elements */
.float-decor {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(60px);
  opacity: 0.15;
}
.float-decor-1 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(201,163,79,0.4), transparent);
  top: 20%; left: -5%;
  animation: float 6s ease-in-out infinite;
}
.float-decor-2 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(201,163,79,0.3), transparent);
  top: 60%; right: -3%;
  animation: float2 8s ease-in-out infinite;
}
.float-decor-3 {
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(201,163,79,0.35), transparent);
  bottom: 10%; left: 30%;
  animation: float3 7s ease-in-out infinite;
}

/* Card */
.dark-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
}
@media (min-width: 768px) { .dark-card { padding: 48px; } }

/* Dropdown arrow icon */
.dropdown-arrow {
  font-size: 14px;
  transition: transform 0.2s;
}

/* Mega Menu */
.site-header { position: sticky; }
.nav-mega { position: static; }
.nav-mega > a { display: flex; align-items: center; height: 72px; }
.mega-menu {
  position: absolute;
  left: 0;
  top: 72px;
  width: 100%;
  z-index: 50;
  background: #000;
  border-top: 1px solid #262626;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}
[data-theme="light"] .mega-menu { background: #fff; border-color: #e4e4e7; }
.mega-menu::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}
.nav-mega:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-mega:hover .nav-mega-trigger { color: #fcd34d; }
.nav-mega:hover .nav-mega-trigger .dropdown-arrow { transform: rotate(180deg); }
.mega-menu-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px;
  display: flex;
  gap: 32px;
}
.mega-categories {
  flex-shrink: 0;
  width: 176px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-right: 1px solid #262626;
  padding-right: 32px;
}
.mega-cat {
  display: block;
  text-align: left;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  transition: background 0.15s;
}
.mega-cat:hover { background: rgba(38,38,38,0.6); }
.mega-cat.active { background: #262626; font-weight: 600; }
.mega-products {
  flex: 1;
  display: flex;
  gap: 24px;
  overflow-x: auto;
  align-items: flex-start;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.mega-products::-webkit-scrollbar { display: none; }
.mega-product {
  flex-shrink: 0;
  width: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
}
.mega-product-img {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  margin-bottom: 10px;
  position: relative;
  background: #18181b;
  border-radius: 8px;
}
.mega-product-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s;
  filter: drop-shadow(0 4px 12px rgba(255,255,255,0.06));
}
.mega-product:hover .mega-product-img img { transform: scale(1.1); }
.mega-product-label {
  font-size: 11px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.275px;
  line-height: 15px;
  text-transform: uppercase;
}
.mega-view-all {
  flex-shrink: 0;
  width: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  align-self: center;
}
.mega-view-all-circle {
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  border: 1px solid #262626;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.2s;
}
.mega-view-all:hover .mega-view-all-circle {
  border-color: #c9a34f;
  background: #c9a34f;
}
.mega-view-all span {
  font-size: 10px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.25px;
  margin-top: 8px;
}

/* Dropdown menus (Discover, Support) */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; height: 72px; }
.nav-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #000;
  border: 1px solid #262626;
  border-radius: 12px;
  padding: 8px 0;
  min-width: 180px;
  margin-top: 0;
  list-style: none;
  z-index: 100;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.nav-dropdown:hover > a { color: #fcd34d; }
.nav-dropdown:hover .dropdown-arrow { transform: rotate(180deg); }
.dropdown-menu li a {
  display: block;
  padding: 8px 16px;
  color: #a1a1aa;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.15s;
}
.dropdown-menu li a:hover { color: #fff; background: rgba(255,255,255,0.05); }
[data-theme="light"] .nav-dropdown .dropdown-menu { background: #fff; border-color: #e4e4e7; }
[data-theme="light"] .dropdown-menu li a { color: #71717a; }
[data-theme="light"] .dropdown-menu li a:hover { color: #18181b; background: rgba(0,0,0,0.03); }

/* Mobile Navigation */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
}
.mobile-nav.open { display: block; }
.mobile-nav-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease;
}
.mobile-nav-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  max-width: 360px;
  height: 100%;
  background: #000;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  box-shadow: 4px 0 24px rgba(0,0,0,0.4);
}
.mobile-nav.open .mobile-nav-panel {
  transform: translateX(0);
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-bottom: 1px solid var(--border);
  height: 72px;
  flex-shrink: 0;
}
.mobile-nav-header .logo img { width: 160px; }
.mobile-nav-close {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.mobile-nav-close:hover { background: #262626; }
.mobile-nav-menu {
  list-style: none;
  flex: 1;
  overflow-y: auto;
  padding: 8px 16px;
}
.mobile-nav-item {
  border-bottom: 1px solid var(--border);
}
.mobile-nav-item > a,
.mobile-nav-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 0;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.mobile-nav-toggle:hover { color: var(--gold-500); }
.mobile-nav-item > a:hover { color: var(--gold-500); }
.mobile-nav-arrow {
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.mobile-nav-item.open .mobile-nav-arrow {
  transform: rotate(180deg);
}
.mobile-submenu {
  list-style: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.mobile-nav-item.open .mobile-submenu {
  max-height: 300px;
}
.mobile-submenu li a {
  display: block;
  padding: 10px 0 10px 16px;
  color: var(--muted-fg);
  text-decoration: none;
  font-size: 14px;
}
.mobile-submenu li a:hover { color: var(--gold-500); }
.mobile-nav-footer {
  padding: 16px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}
.btn-mobile-login,
.btn-mobile-register {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: opacity 0.15s;
}
.btn-mobile-login:hover,
.btn-mobile-register:hover { opacity: 0.9; }
.btn-mobile-login {
  background: #262626;
  color: #fff;
  border: 1px solid var(--border);
}
.btn-mobile-register {
  background: var(--gold-500);
  color: #000;
  border: 1px solid var(--gold-500);
}
[data-theme="light"] .mobile-nav-overlay { background: rgba(0,0,0,0.35); }
[data-theme="light"] .mobile-nav-panel { background: #fff; }
[data-theme="light"] .mobile-nav-header { border-color: #e4e4e7; }
[data-theme="light"] .mobile-nav-close { color: #18181b; }
[data-theme="light"] .mobile-nav-close:hover { background: #f4f4f5; }
[data-theme="light"] .mobile-nav-item { border-color: #e4e4e7; }
[data-theme="light"] .mobile-nav-item > a,
[data-theme="light"] .mobile-nav-toggle { color: #18181b; }
[data-theme="light"] .mobile-nav-toggle:hover,
[data-theme="light"] .mobile-nav-item > a:hover { color: var(--gold-600); }
[data-theme="light"] .mobile-submenu li a { color: #71717a; }
[data-theme="light"] .mobile-submenu li a:hover { color: var(--gold-600); }
[data-theme="light"] .mobile-nav-footer { border-color: #e4e4e7; }
[data-theme="light"] .btn-mobile-login {
  background: #f4f4f5;
  color: #18181b;
  border-color: #e4e4e7;
}
[data-theme="light"] .btn-mobile-register {
  background: var(--gold-500);
  color: #000;
  border-color: var(--gold-500);
}

/* Fallback for pages still using the old mobile-nav dropdown structure */
.mobile-nav > ul:not(.mobile-nav-menu) {
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  background: #000;
  border-bottom: 1px solid var(--border);
  padding: 16px;
  z-index: 49;
  list-style: none;
}
.mobile-nav > ul:not(.mobile-nav-menu) > li > a {
  display: block;
  padding: 12px 0;
  color: var(--fg);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}
.mobile-nav > ul:not(.mobile-nav-menu) > li.sub > a {
  padding-left: 20px;
  color: var(--muted-fg);
  font-size: 14px;
}
[data-theme="light"] .mobile-nav > ul:not(.mobile-nav-menu) {
  background: #fff;
  border-color: #e4e4e7;
}
[data-theme="light"] .mobile-nav > ul:not(.mobile-nav-menu) > li > a {
  color: #18181b;
  border-color: #e4e4e7;
}



/* Responsive helpers */
.md-hide { display: none; }
.md-show { display: inline; }
@media (max-width: 767px) {
  .md-hide { display: inline; }
  .md-show { display: none; }
}

/* ===== HOMEPAGE STYLES ===== */

/* Hero Slider */
.hero-section {
  background: #000;
}
.hero-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16/7;
  touch-action: pan-y pinch-zoom;
  max-height: 80vh;
  overflow: hidden;
}
.hero-slider input[type="radio"] { display: none; }
.hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-slide {
  display: block;
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
  text-decoration: none;
}
.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
/* Mobile background - hidden on desktop, shown on mobile */
.hero-slide-bg-mobile {
  display: none;
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
  z-index: 5;
  background: linear-gradient(to right, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
}
.hero-slide-left {
  max-width: 45%;
}
.hero-slide-name {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 8px;
}
.hero-slide-sub {
  font-size: 20px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}
.hero-slide-sub2 {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
}
@media (max-width: 768px) {
  .hero-slider {
    aspect-ratio: 9/16;
    max-height: none;
  }
  .hero-slide-bg { display: none; }
  .hero-slide-bg-mobile { display: block; }
  .hero-slide-name { font-size: 28px; }
  .hero-slide-sub { font-size: 14px; }
  .hero-slide-content { padding: 20px; }
}
.hero-badges {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}
.hero-badge {
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.badge-award { background: #fff; color: #000; }
.badge-red { background: #dc2626; color: #fff; }
.badge-gold { background: var(--gold-500); color: #000; }
@media (max-width: 768px) {
  .hero-badges { display: none; }
}
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.4);
  color: #fff;
  font-size: 18px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s;
}
.hero-arrow:hover { background: rgba(0,0,0,0.7); }
.hero-arrow-left { left: 16px; }
.hero-arrow-right { right: 16px; }
.hero-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.2s;
}
.hero-dot:hover,
.hero-dot.active { background: #fff; }
.hero-tagline {
  text-align: center;
  padding: 32px 16px 0;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}
@media (min-width: 768px) { .hero-tagline { font-size: 32px; } }

/* Products Section */
.products-section {
  margin: 64px 0;
}
.products-section-title {
  text-align: center;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 40px;
  padding: 0 16px;
}
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 0 16px;
}
@media (min-width: 768px) {
  .products-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
.product-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.product-card-image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 16px;
  background: linear-gradient(135deg, #8B6914 0%, #C9A34F 30%, #D4AF37 50%, #B8942F 70%, #6B5310 100%);
}
.product-card-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card-image img {
  transform: scale(1.05);
}
.product-card-info {
  padding-top: 16px;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card-label {
  font-size: 11px;
  color: var(--gold-500);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.product-card-name {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 0;
  letter-spacing: normal;
  color: #fff;
  transition: color 0.3s ease;
  line-height: 32px;
}
.product-card:hover .product-card-name { color: var(--gold-400); }
@media (min-width: 768px) { .product-card-name { font-size: 24px; } }
.product-card-subtitle {
  font-size: 18px;
  font-weight: 400;
  color: #a1a1aa;
  margin-top: 6px;
  margin-bottom: 0;
  line-height: 29px;
}
.product-card-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  list-style: none;
  padding: 0;
}
.spec-tag {
  padding: 4px 12px;
  background: transparent;
  border: 1px solid #262626;
  border-radius: 9999px;
  font-size: 14px;
  color: #a1a1aa;
  transition: border-color 0.3s ease, color 0.3s ease;
}
.product-card:hover .spec-tag {
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}

/* Brand Story Section */
.brand-story {
  text-align: center;
  padding: 100px 16px;
  position: relative;
  background: #000;
  overflow: hidden;
}
.brand-story-backdrop {
  position: absolute;
  inset: 0;
  background-image: url('../image/c1e4f970a8808eae469dbe08682472ee44d4fe3c8f207d7cb83114ac23952eab.png');
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
}
.brand-story-inner {
  max-width: 640px;
  position: relative;
  z-index: 2;
}
.brand-story-picture {
  margin-bottom: 32px;
}
.brand-story-picture picture {
  display: block;
}
.brand-logo-img {
  width: 200px;
  height: auto;
  margin: 0 auto;
  display: block;
  border-radius: 12px;
}
.brand-story-title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, rgb(230,200,90) 0%, rgb(148,114,47) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (min-width: 768px) { .brand-story-title { font-size: 40px; } }
.brand-tagline {
  color: var(--gold-400);
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 24px;
  line-height: 1.3;
}
@media (min-width: 768px) { .brand-tagline { font-size: 48px; } }
.brand-desc {
  color: var(--gold-300);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.8;
  font-size: 16px;
}
.btn-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(rgb(110,87,48), rgb(79,63,36) 55%, rgb(59,48,24));
  color: rgb(232,220,192);
  border: none;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-learn-more:hover { filter: brightness(1.1); }
.btn-arrow {
  display: inline-block;
  margin-left: 8px;
  transition: transform 0.3s ease;
}
.btn-learn-more:hover .btn-arrow { transform: translateX(4px); }

/* Lifestyle Section - removed, merged into gallery */

/* Gallery Section */
.gallery-section {
  margin: 64px 0;
  overflow: hidden;
  background: transparent;
}
.gallery-header {
  text-align: center;
  padding: 0 16px;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .gallery-header { margin-bottom: 32px; padding: 0 32px; }
}
.gallery-heading {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
}
.gallery-subheading {
  max-width: 600px;
  margin: 0 auto;
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: var(--muted-foreground, #a1a1aa);
  white-space: pre-wrap;
}
.video-section {
  width: 100%;
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
}
.video-section video {
  width: 100%;
  display: block;
}
.marquee-container {
  overflow: hidden;
  width: 100%;
  margin-top: 32px;
}
.marquee-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: marquee-left 30s linear infinite;
}
@keyframes marquee-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-item {
  flex: 0 0 clamp(200px, 18vw, 280px);
  aspect-ratio: 9/16;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: #000;
}
.marquee-container:hover .marquee-track {
  animation-play-state: paused;
}
.marquee-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}
.btn-visit-link {
  padding: 6px 16px;
  background: #c9a34f;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: background-color 0.15s ease;
}
.btn-visit-link:hover {
  background: #b08d3d;
}

/* ===== Vape Product List Page ===== */
.vape-page {
  min-height: 80vh;
  padding-top: 20px;
}
@media (min-width: 768px) {
  .vape-page { padding-top: 64px; }
}

/* Sticky Filter Bar */
.vape-filter-bar {
  position: sticky;
  top: 72px;
  z-index: 40;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  background: rgba(0, 0, 0, 0.72);
  border-bottom: 1px solid var(--border);
  padding: 12px 16px;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .vape-filter-bar { padding-block: 16px; margin-bottom: 48px; }
}
[data-theme="light"] .vape-filter-bar {
  background: rgba(255, 255, 255, 0.82);
}
.vape-filter-inner {
  max-width: 1504px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.vape-filter-btn {
  padding: 8px 20px;
  border-radius: 9999px;
  font-size: 16px;
  font-weight: 500;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted-fg);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.vape-filter-btn:hover {
  border-color: var(--muted-fg);
  color: var(--fg);
}
.vape-filter-btn.active {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}

/* Product Grid */
.vape-grid-wrap {
  max-width: 1504px;
  margin: 0 auto;
  padding: 0 16px 80px;
}
.vape-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (min-width: 768px) {
  .vape-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; }
}
@media (min-width: 1024px) {
  .vape-grid { grid-template-columns: repeat(4, 1fr); gap: 32px; }
}

/* Product Card */
.vape-card {
  display: block;
  text-decoration: none;
  color: inherit;
  min-width: 0;
  overflow: hidden;
}
.vape-card-img {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  overflow: hidden;
  background: var(--card);
}
@media (min-width: 1024px) {
  .vape-card-img { border-radius: 32px; }
}
.vape-card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.vape-card:hover .vape-card-img img {
  transform: scale(1.05);
}
.vape-card-info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  padding: 12px 4px 0;
}
.vape-card-text {
  min-width: 0;
  flex: 1;
}
.vape-card-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
  line-height: 1.4;
}
.vape-card-desc {
  font-size: 13px;
  color: var(--muted-fg);
  margin-top: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.vape-card-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 0.3s;
}
.vape-card:hover .vape-card-arrow {
  background: var(--gold-500);
  color: #000;
}
[data-theme="light"] .vape-card-name { color: #18181b; }
[data-theme="light"] .vape-card-desc { color: #71717a; }
[data-theme="light"] .vape-card-arrow { background: rgba(0,0,0,0.08); color: rgba(0,0,0,0.6); }
[data-theme="light"] .vape-card:hover .vape-card-arrow { background: var(--gold-500); color: #000; }

/* Vape card fly-in animation on filter switch */
@keyframes vapeFlyInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}
@keyframes vapeFlyInRight {
  from {
    opacity: 0;
    transform: translateX(60px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}
.vape-card.fly-in-left {
  animation: vapeFlyInLeft 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.vape-card.fly-in-right {
  animation: vapeFlyInRight 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* ===== SHARED PAGE STYLES ===== */

/* Generic Page Hero */
.page-hero {
  text-align: center;
  padding: 80px 16px 48px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) { .page-hero { padding: 120px 16px 64px; } }
.page-hero-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 16px;
}
.page-hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--fg);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.page-hero-title .gold { color: var(--gold-400); }
.page-hero-desc {
  font-size: 16px;
  color: var(--muted-fg);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
@media (min-width: 768px) { .page-hero-desc { font-size: 18px; } }

/* ===== ABOUT PAGE HERO (1:1 replica of original Tailwind design) ===== */
.about-hero {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  padding: 112px 0 64px;
}
@media (min-width: 768px) { .about-hero { padding: 144px 0 96px; } }
.about-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.about-hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(201,163,79,0.12), transparent 50%);
}
.about-hero-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, #80808012 1px, transparent 1px), linear-gradient(to bottom, #80808012 1px, transparent 1px);
  background-size: 24px 24px;
}
.about-hero-blob1 {
  position: absolute;
  top: 25%;
  left: 25%;
  width: 256px;
  height: 256px;
  background: rgba(184,148,47,0.2);
  border-radius: 50%;
  filter: blur(100px);
}
@media (min-width: 768px) { .about-hero-blob1 { width: 384px; height: 384px; } }
.about-hero-blob2 {
  position: absolute;
  bottom: 0;
  right: 25%;
  width: 288px;
  height: 288px;
  background: rgba(74,58,11,0.1);
  border-radius: 50%;
  filter: blur(120px);
}
@media (min-width: 768px) { .about-hero-blob2 { width: 500px; height: 500px; } }
.about-hero-watermark {
  pointer-events: none;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-hero-watermark img {
  width: 110%;
  height: auto;
  max-width: none;
  opacity: 0.07;
  mix-blend-mode: screen;
  user-select: none;
  -webkit-mask-image: radial-gradient(circle at center, black 35%, transparent 70%);
  mask-image: radial-gradient(circle at center, black 35%, transparent 70%);
}
@media (min-width: 768px) { .about-hero-watermark img { width: 640px; } }
.about-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 16px;
  max-width: 1024px;
  margin: 0 auto;
}
.about-hero-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 9999px;
  border: 1px solid var(--border);
  background: rgba(24,24,27,0.6);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-fg);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  margin-bottom: 24px;
}
.about-hero-title {
  font-size: clamp(2.25rem, 8vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  margin-bottom: 24px;
  line-height: 1.1;
}
@media (min-width: 768px) { .about-hero-title { font-size: 4.5rem; } }
@media (min-width: 1024px) { .about-hero-title { font-size: 6rem; } }
.about-hero-line1 {
  display: block;
  background: linear-gradient(to bottom, #ffffff, #ffffff, #6b7280);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.about-hero-line2 {
  display: block;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(to right, #E8D48B, #B8942F);
}
.about-hero-desc {
  font-size: 18px;
  color: var(--muted-fg);
  max-width: 672px;
  margin: 0 auto;
  font-weight: 300;
  letter-spacing: 0.025em;
}
@media (min-width: 768px) { .about-hero-desc { font-size: 24px; } }
@media (min-width: 1024px) { .about-hero-desc { font-size: 30px; } }
[data-theme="light"] .about-hero {
  background: var(--bg);
}
[data-theme="light"] .about-hero-watermark img {
  mix-blend-mode: multiply;
  opacity: 0.05;
}
[data-theme="light"] .about-hero-line1 {
  background: linear-gradient(to bottom, #18181b, #18181b, #6b7280);
  -webkit-background-clip: text;
  background-clip: text;
}
[data-theme="light"] .about-hero-badge {
  background: rgba(244,244,245,0.6);
}

/* ===== ABOUT PAGE INTRO (quote card section) ===== */
.about-intro {
  padding: 64px 16px;
  position: relative;
  background: var(--bg);
  z-index: 10;
}
@media (min-width: 768px) { .about-intro { padding: 112px 16px; } }
.about-intro-inner {
  max-width: 896px;
  margin: 0 auto;
}
.about-intro-lead {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.625;
  color: rgba(255,255,255,0.8);
  text-align: center;
  margin-bottom: 48px;
}
@media (min-width: 768px) { .about-intro-lead { font-size: 30px; margin-bottom: 64px; } }
.about-intro-quote {
  position: relative;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: rgba(24,24,27,0.4);
  padding: 32px;
}
@media (min-width: 768px) { .about-intro-quote { padding: 48px; } }
.about-intro-quotemark {
  position: absolute;
  top: -20px;
  left: 32px;
  font-size: 72px;
  font-family: Georgia, 'Times New Roman', serif;
  color: rgba(201,163,79,0.3);
  user-select: none;
  line-height: 1;
}
@media (min-width: 768px) { .about-intro-quotemark { font-size: 96px; } }
.about-intro-quote-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.375;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(to right, #F0E4B8, #C9A34F);
  margin-bottom: 24px;
}
@media (min-width: 768px) { .about-intro-quote-title { font-size: 36px; } }
.about-intro-quote-text {
  font-size: 16px;
  color: var(--muted-fg);
  line-height: 1.625;
}
@media (min-width: 768px) { .about-intro-quote-text { font-size: 18px; } }
[data-theme="light"] .about-intro-lead {
  color: rgba(24,24,27,0.8);
}
[data-theme="light"] .about-intro-quote {
  background: rgba(244,244,245,0.4);
}

/* Support Hero - gradient text + pill badge */
.support-hero {
  padding: 80px 16px 48px;
}
@media (min-width: 768px) { .support-hero { padding: 120px 16px 64px; } }

.support-hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  margin-bottom: 24px;
  border-radius: 9999px;
  background: rgba(24,24,27,0.6);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.support-hero-badge span {
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-500);
}

.support-hero-title {
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  background: linear-gradient(to right, #ffffff, #ffffff, #9ca3af);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
[data-theme="light"] .support-hero-title {
  background: linear-gradient(to right, #18181b, #18181b, #71717a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.support-hero-desc {
  font-size: 16px;
  color: var(--muted-fg);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
@media (min-width: 768px) { .support-hero-desc { font-size: 20px; } }

/* News Hero overrides - closer to original layout */
.news-hero {
  padding: 56px 16px;
}
@media (min-width: 768px) {
  .news-hero { padding: 64px 32px; }
}

/* Generic Page Content */
.page-content {
  max-width: 992px;
  margin: 0 auto;
  padding: 0 16px 80px;
}
.page-section {
  padding: 64px 16px;
}
@media (min-width: 768px) { .page-section { padding: 80px 16px; } }
.page-section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

/* Shared Form Styles */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 6px;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 12px 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--fg);
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--gold-500);
}
.form-input::placeholder, .form-textarea::placeholder {
  color: var(--muted-fg);
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.form-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
}
.form-btn:hover { background: #222; transform: translateY(-1px); }
.form-link {
  color: var(--gold-400);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.form-link:hover { color: var(--gold-300); text-decoration: underline; }

/* Shared Card */
.content-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.3s, transform 0.3s;
}
.content-card:hover { border-color: var(--gold-500); transform: translateY(-2px); }

/* ===== ABOUT PAGE ===== */
/* ===== ABOUT PAGE BRAND FILM (video section) ===== */
.about-film {
  padding: 64px 16px;
  background: var(--bg);
}
@media (min-width: 768px) { .about-film { padding: 96px 16px; } }
.about-film-inner {
  max-width: 1024px;
  margin: 0 auto;
}
.about-film-header {
  text-align: center;
  margin-bottom: 32px;
}
@media (min-width: 768px) { .about-film-header { margin-bottom: 40px; } }
.about-film-eyebrow {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted-fg);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.about-film-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.25;
  color: var(--fg);
}
@media (min-width: 768px) { .about-film-title { font-size: 48px; } }
.about-film-desc {
  font-size: 16px;
  color: var(--muted-fg);
  max-width: 672px;
  margin: 0 auto;
  line-height: 1.625;
}
@media (min-width: 768px) { .about-film-desc { font-size: 18px; } }
.about-film-player {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: #000;
  box-shadow: 0 24px 80px rgba(0,0,0,0.35);
}
.about-film-frame {
  position: relative;
  aspect-ratio: 16/9;
}
.about-film-video {
  height: 100%;
  width: 100%;
  object-fit: cover;
  display: block;
}
.about-film-gradient {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent 40%, transparent);
}
.about-film-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
}
@media (min-width: 768px) { .about-film-controls { padding: 20px; } }
.about-film-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(0,0,0,0.45);
  color: #fff;
  cursor: pointer;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition: background 0.2s;
}
.about-film-btn:hover { background: rgba(0,0,0,0.6); }
/* ===== ABOUT PAGE PHILOSOPHY ===== */
.about-philo {
  padding: 80px 16px;
  background: var(--bg);
}
@media (min-width: 768px) { .about-philo { padding: 112px 16px; } }
.about-philo-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.about-philo-header {
  max-width: 768px;
  margin-bottom: 56px;
}
@media (min-width: 768px) { .about-philo-header { margin-bottom: 80px; } }
.about-philo-eyebrow {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted-fg);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.about-philo-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.25;
  color: var(--fg);
}
@media (min-width: 768px) { .about-philo-title { font-size: 48px; } }
.about-philo-amp { color: var(--gold-400); }
.about-philo-desc {
  font-size: 16px;
  color: var(--muted-fg);
  line-height: 1.625;
}
@media (min-width: 768px) { .about-philo-desc { font-size: 18px; } }
.about-philo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) { .about-philo-grid { grid-template-columns: repeat(3, 1fr); } }
.about-philo-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: rgba(24,24,27,0.5);
  padding: 32px;
  transition: background 0.3s;
}
.about-philo-card:hover { background: #18181b; }
.about-philo-card--orange { border-color: rgba(249,115,22,0.2); }
.about-philo-card--gold { border-color: rgba(201,163,79,0.2); }
.about-philo-card--green { border-color: rgba(16,185,129,0.2); }
.about-philo-card-glow {
  position: absolute;
  top: 0;
  right: 0;
  margin-right: -32px;
  margin-top: -32px;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  opacity: 0;
  filter: blur(40px);
  transition: opacity 0.5s;
}
.about-philo-card:hover .about-philo-card-glow { opacity: 0.2; }
.about-philo-card--orange .about-philo-card-glow { background: rgba(249,115,22,0.1); }
.about-philo-card--gold .about-philo-card-glow { background: rgba(201,163,79,0.1); }
.about-philo-card--green .about-philo-card-glow { background: rgba(16,185,129,0.1); }
.about-philo-card-body {
  position: relative;
  z-index: 10;
  display: flex;
  height: 100%;
  flex-direction: column;
}
.about-philo-icon {
  margin-bottom: 24px;
  width: fit-content;
  border-radius: 16px;
  padding: 12px;
}
.about-philo-icon--orange { background: rgba(249,115,22,0.1); color: #fb923c; }
.about-philo-icon--gold { background: rgba(201,163,79,0.1); color: var(--gold-400); }
.about-philo-icon--green { background: rgba(16,185,129,0.1); color: #34d399; }
.about-philo-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
}
@media (min-width: 768px) { .about-philo-card h3 { font-size: 24px; } }
.about-philo-card p {
  color: var(--muted-fg);
  line-height: 1.625;
}
/* ===== ABOUT PAGE WHY SECTION ===== */
.about-why {
  position: relative;
  overflow: hidden;
  padding: 96px 16px;
}
@media (min-width: 768px) { .about-why { padding: 144px 16px; } }
.about-why-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.about-why-blob {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: rgba(107,83,16,0.1);
  border-radius: 50%;
  filter: blur(140px);
}
.about-why-content {
  position: relative;
  z-index: 10;
  max-width: 896px;
  margin: 0 auto;
  text-align: center;
}
.about-why-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
  color: var(--fg);
}
@media (min-width: 768px) { .about-why-content h2 { font-size: 60px; } }
.about-why-gold { color: var(--gold-400); }
.about-why-lead {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.625;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
}
@media (min-width: 768px) { .about-why-lead { font-size: 24px; } }
.about-why-highlight {
  font-size: 18px;
  font-weight: 500;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(to right, #F0E4B8, #C9A34F);
}
@media (min-width: 768px) { .about-why-highlight { font-size: 20px; } }
[data-theme="light"] .about-why-lead { color: rgba(24,24,27,0.8); }

/* ===== SUPPORT PAGE ===== */
.support-content {
  max-width: 1504px;
  margin: 0 auto;
  padding: 0 16px 80px;
}
@media (min-width: 768px) {
  .support-content { padding: 0 32px 80px; }
}

/* Grid: 12-col at lg */
.support-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 1024px) {
  .support-grid {
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto 1fr;
    gap: 32px 48px;
  }
}

.support-left {
  order: 1;
}
@media (min-width: 1024px) {
  .support-left { grid-column: span 5; }
}

.support-right {
  order: 2;
}
@media (min-width: 1024px) {
  .support-right { grid-column: span 7; grid-row: span 2; }
}

.support-left-bottom {
  order: 3;
}
@media (min-width: 1024px) {
  .support-left-bottom { grid-column: span 5; }
}

/* Section Title (outside card) */
.support-section-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.support-section-title--sm {
  font-size: 20px;
}
.support-title-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(201,163,79,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a34f;
  flex-shrink: 0;
}
.support-title-bar {
  display: inline-block;
  width: 4px;
  height: 24px;
  background: #c9a34f;
  border-radius: 9999px;
  flex-shrink: 0;
}
.support-section-sub {
  font-size: 14px;
  color: var(--muted-fg);
  margin-bottom: 24px;
}

/* Contact Info Card (outer wrapper) */
.support-info-card-outer {
  border-radius: 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  overflow: hidden;
}
[data-theme="light"] .support-info-card-outer {
  background: rgba(0,0,0,0.02);
}

.support-info-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s, transform 0.2s;
}
.support-info-row + .support-info-row {
  border-top: 1px solid var(--border);
}
.support-info-row--link {
  cursor: pointer;
}
.support-info-row--link:hover {
  background: rgba(255,255,255,0.04);
}
[data-theme="light"] .support-info-row--link:hover {
  background: rgba(0,0,0,0.03);
}

.support-info-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.support-info-icon--email {
  background: rgba(59,130,246,0.1);
  color: #60a5fa;
}
.support-info-icon--phone {
  background: rgba(34,197,94,0.1);
  color: #4ade80;
}
.support-info-icon--map {
  background: rgba(201,163,79,0.1);
  color: #c9a34f;
}

.support-info-text {
  flex: 1;
  min-width: 0;
}
.support-info-label {
  font-size: 14px;
  color: var(--muted-fg);
  margin-bottom: 4px;
  font-weight: 500;
}
.support-info-value {
  font-size: 15px;
  color: var(--fg);
  font-weight: 500;
  word-break: break-word;
}
.support-info-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.support-info-links a {
  font-size: 15px;
  color: var(--fg);
  text-decoration: none;
  font-weight: 500;
  word-break: break-all;
  transition: color 0.2s;
}
.support-info-links a:hover { color: #c9a34f; }

.support-link-arrow {
  flex-shrink: 0;
  color: var(--muted-fg);
  margin-top: 2px;
  transition: color 0.2s, transform 0.2s;
}
.support-info-row--link:hover .support-link-arrow {
  color: #c9a34f;
  transform: translateX(2px);
}

/* Support Form */
.support-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.support-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) {
  .support-form-row { grid-template-columns: 1fr 1fr; }
}

/* FAQ items in support */
.support-faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,0.02);
  transition: background 0.2s, border-color 0.2s;
}
[data-theme="light"] .faq-item {
  background: rgba(0,0,0,0.02);
}
.faq-item:hover {
  border-color: rgba(255,255,255,0.15);
}

.faq-toggle {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  font: inherit;
}
.faq-toggle-icon {
  flex-shrink: 0;
  color: var(--muted-fg);
  margin-top: 1px;
}
.faq-toggle-text {
  flex: 1;
  min-width: 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--fg);
  padding-right: 4px;
}
.faq-toggle-arrow {
  flex-shrink: 0;
  color: var(--muted-fg);
  transition: transform 0.2s;
}
.faq-item.open .faq-toggle-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  font-size: 14px;
  color: var(--muted-fg);
  line-height: 1.7;
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 0 20px 16px;
}
.faq-answer a.form-link {
  color: #c9a34f;
}

/* ===== SUPPORT PAGE V2 (Hero + Cards + FAQ) ===== */
.support-hero2 {
  position: relative;
  min-height: 42vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201,163,79,0.12), transparent 65%),
    radial-gradient(circle at 20% 80%, rgba(201,163,79,0.06), transparent 40%),
    #111;
}
@media (min-width: 768px) { .support-hero2 { min-height: 48vh; } }
.support-hero2-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.support-hero2-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}
.support-hero2-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 80px 16px;
}
@media (min-width: 768px) { .support-hero2-content { padding: 100px 16px; } }
.support-hero2-title {
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}
.support-hero2-gold {
  color: var(--gold-500);
}
.support-hero2-desc {
  margin-top: 16px;
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) { .support-hero2-desc { font-size: 18px; margin-top: 20px; } }

/* Service Cards Grid */
.support-cards {
  position: relative;
  z-index: 10;
  max-width: 1504px;
  margin: -40px auto 0;
  padding: 0 16px 64px;
}
@media (min-width: 768px) { .support-cards { margin-top: -56px; padding-bottom: 80px; } }
.support-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 1024px) { .support-cards-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } }

.support-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 24px 12px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
@media (min-width: 768px) { .support-card { padding: 40px 20px; } }
.support-card:hover {
  border-color: rgba(201,163,79,0.45);
  transform: translateY(-2px);
}
[data-theme="light"] .support-card {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
[data-theme="light"] .support-card:hover {
  background: rgba(201,163,79,0.04);
}
.support-card-icon {
  width: 44px;
  height: 44px;
  color: var(--gold-500);
  margin-bottom: 12px;
}
@media (min-width: 768px) { .support-card-icon { width: 48px; height: 48px; margin-bottom: 16px; } }
.support-card-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1.3;
}
@media (min-width: 768px) { .support-card-title { font-size: 16px; } }
@media (min-width: 1024px) { .support-card-title { font-size: 18px; } }
.support-card-desc {
  margin-top: 6px;
  font-size: 11px;
  color: var(--gold-500);
  opacity: 0.9;
  line-height: 1.4;
}
@media (min-width: 768px) { .support-card-desc { font-size: 12px; margin-top: 8px; } }
@media (min-width: 1024px) { .support-card-desc { font-size: 14px; } }

/* FAQ Section V2 */
.support-faq2 {
  max-width: 1504px;
  margin: 0 auto;
  padding: 0 16px 80px;
}
@media (min-width: 768px) { .support-faq2 { padding: 0 16px 112px; } }
.support-faq2-header {
  text-align: center;
  margin-bottom: 32px;
}
@media (min-width: 768px) { .support-faq2-header { margin-bottom: 40px; } }
.support-faq2-title {
  font-size: 30px;
  font-weight: 700;
  color: var(--fg);
}
@media (min-width: 768px) { .support-faq2-title { font-size: 36px; } }
.support-faq2-subtitle {
  margin-top: 12px;
  font-size: 15px;
  color: var(--muted-fg);
}

/* FAQ Tabs */
.support-faq2-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
}
@media (min-width: 768px) { .support-faq2-tabs { gap: 12px; } }
.support-faq2-tab {
  padding: 8px 16px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  color: var(--muted-fg);
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.support-faq2-tab:hover {
  border-color: var(--muted-fg);
  color: var(--fg);
}
.support-faq2-tab.active {
  background: rgba(201,163,79,0.15);
  border-color: rgba(201,163,79,0.4);
  color: var(--gold-500);
}
[data-theme="light"] .support-faq2-tab {
  background: #f4f4f5;
}
[data-theme="light"] .support-faq2-tab.active {
  background: rgba(201,163,79,0.12);
}

/* FAQ Items V2 */
.support-faq2-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 768px;
  margin: 0 auto;
}
.support-faq2-item {
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  overflow: hidden;
  transition: border-color 0.2s, background 0.2s;
}
[data-theme="light"] .support-faq2-item {
  background: rgba(0,0,0,0.02);
}
.support-faq2-item:hover {
  border-color: rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
}
[data-theme="light"] .support-faq2-item:hover {
  border-color: #d4d4d8;
  background: rgba(0,0,0,0.03);
}
.support-faq2-toggle {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  font: inherit;
}
@media (min-width: 768px) { .support-faq2-toggle { padding: 20px 24px; } }
.support-faq2-q {
  flex: 1;
  min-width: 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--fg);
  opacity: 0.9;
  padding-right: 8px;
}
.support-faq2-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--muted-fg);
  transition: transform 0.2s;
}
.support-faq2-item.open .support-faq2-chevron {
  transform: rotate(180deg);
}
.support-faq2-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 20px;
}
@media (min-width: 768px) { .support-faq2-answer { padding: 0 24px; } }
.support-faq2-item.open .support-faq2-answer {
  max-height: 300px;
  padding: 0 20px 16px;
}
@media (min-width: 768px) { .support-faq2-item.open .support-faq2-answer { padding: 0 24px 20px; } }
.support-faq2-answer p {
  font-size: 14px;
  color: var(--muted-fg);
  line-height: 1.7;
}

/* ===== REPORT COUNTERFEIT PAGE ===== */
.report-container {
  max-width: 1504px;
  margin: 0 auto;
  padding: 64px 16px 80px;
}
@media (min-width: 768px) { .report-container { padding: 96px 32px 112px; } }

.report-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}
@media (min-width: 768px) { .report-header { margin-bottom: 56px; } }
.report-title {
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 16px;
}
.report-gold {
  color: var(--gold-500);
}
.report-desc {
  font-size: 16px;
  color: var(--muted-fg);
  line-height: 1.7;
}
@media (min-width: 768px) { .report-desc { font-size: 18px; } }

/* Form Card */
.report-card {
  max-width: 768px;
  margin: 0 auto;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 20px;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
}
@media (min-width: 768px) { .report-card { padding: 40px; } }
[data-theme="light"] .report-card {
  background: #fff;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.1);
}

.report-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.report-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) { .report-form-row { grid-template-columns: 1fr 1fr; } }

.report-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.report-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg);
}
.report-required {
  margin-left: 2px;
  color: var(--gold-500);
}
.report-optional {
  color: var(--muted-fg);
  font-weight: 400;
  font-size: 13px;
}
.report-input {
  width: 100%;
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  color: var(--fg);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
[data-theme="light"] .report-input {
  background: rgba(0,0,0,0.03);
}
.report-input::placeholder { color: var(--muted-fg); }
.report-input:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(201,163,79,0.22);
}
.report-textarea {
  width: 100%;
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  color: var(--fg);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  resize: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
[data-theme="light"] .report-textarea {
  background: rgba(0,0,0,0.03);
}
.report-textarea::placeholder { color: var(--muted-fg); }
.report-textarea:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(201,163,79,0.22);
}

/* Upload Area */
.report-upload {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.report-upload-btn {
  width: 80px;
  height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: 8px;
  border: 1px dashed var(--border);
  background: rgba(255,255,255,0.03);
  color: var(--muted-fg);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  font-family: inherit;
}
[data-theme="light"] .report-upload-btn {
  background: rgba(0,0,0,0.02);
}
.report-upload-btn:hover {
  border-color: rgba(201,163,79,0.5);
  color: var(--gold-500);
}
.report-upload-btn span {
  font-size: 10px;
}
.report-upload-names {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.report-file-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(201,163,79,0.1);
  border: 1px solid rgba(201,163,79,0.25);
  color: var(--gold-500);
  font-size: 11px;
  max-width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.report-hint {
  font-size: 12px;
  color: var(--muted-fg);
  line-height: 1.5;
}

/* Submit Button */
.report-submit {
  width: 100%;
  height: 44px;
  border: none;
  border-radius: 12px;
  background: var(--gold-500);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s, transform 0.15s;
}
.report-submit:hover {
  background: var(--gold-600);
}
.report-submit:active {
  transform: scale(0.99);
}

/* Form inputs */
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label { font-size: 14px; font-weight: 500; color: var(--muted-fg); }
.form-input {
  padding: 14px 20px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  color: var(--fg);
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-input::placeholder { color: var(--muted-fg); }
.form-input:focus {
  border-color: rgba(201,163,79,0.5);
  box-shadow: 0 0 0 3px rgba(201,163,79,0.15);
}
.form-textarea {
  padding: 14px 20px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  color: var(--fg);
  font-size: 15px;
  font-family: inherit;
  resize: vertical;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-textarea::placeholder { color: var(--muted-fg); }
.form-textarea:focus {
  border-color: rgba(201,163,79,0.5);
  box-shadow: 0 0 0 3px rgba(201,163,79,0.15);
}
.form-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 16px;
  border: none;
  background: linear-gradient(135deg, #c9a34f, #e0b860);
  color: #000;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.form-btn:hover { transform: scale(1.02); box-shadow: 0 4px 20px rgba(201,163,79,0.3); }
.form-btn:active { transform: scale(0.98); }
.form-btn--full { width: 100%; padding: 18px 24px; }

/* Send Message card background */
.support-right .support-card-group {
  border-radius: 36px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 24px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 640px) {
  .support-right .support-card-group { padding: 32px; }
}
@media (min-width: 1024px) {
  .support-right .support-card-group { padding: 40px; }
}
.support-right .support-card-group::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 256px;
  height: 256px;
  background: rgba(201,163,79,0.04);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

/* Section animations: different directions */
.scroll-animate[data-anim="left"] {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.scroll-animate[data-anim="right"] {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.scroll-animate[data-anim="up"] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.scroll-animate[data-anim="left"].visible,
.scroll-animate[data-anim="right"].visible,
.scroll-animate[data-anim="up"].visible {
  opacity: 1;
  transform: translate(0);
}
/* ===== NEWS PAGE ===== */
.news-featured {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 48px;
}
.news-featured-img {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--card);
}
.news-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-featured-content { display: flex; flex-direction: column; justify-content: center; }
.news-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(201,163,79,0.15);
  color: var(--gold-500);
  margin-bottom: 8px;
  width: fit-content;
}
.news-featured-content h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
  line-height: 1.3;
}
@media (min-width: 768px) { .news-featured-content h2 { font-size: 28px; } }
.news-featured-content p {
  font-size: 15px;
  color: var(--muted-fg);
  line-height: 1.7;
  margin-bottom: 12px;
}
.news-date { font-size: 13px; color: var(--muted); }
.news-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) { .news-list { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .news-list { grid-template-columns: repeat(3, 1fr); } }
.news-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.3s, transform 0.3s;
}
.news-card:hover { border-color: var(--gold-500); transform: translateY(-3px); }
.news-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--card);
}
.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.news-card:hover .news-card-img img { transform: scale(1.05); }
.news-card-body { padding: 20px; }
.news-card-body h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card-body p {
  font-size: 13px;
  color: var(--muted-fg);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===== SWIRL PAGE ===== */
.swirl-hero {
  background: #e5ce9e;
  position: relative;
  overflow: hidden;
}
.swirl-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 768px) {
  .swirl-hero-inner { grid-template-columns: 1fr 1fr; padding: 80px 16px; }
}
.swirl-hero-text h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: #3d2e0f;
  line-height: 1.1;
  margin-bottom: 16px;
}
.swirl-hero-text p {
  font-size: 18px;
  color: #5a4520;
  line-height: 1.6;
  margin-bottom: 8px;
}
.swirl-hero-text .swirl-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.swirl-hero-text .swirl-spec {
  padding: 6px 16px;
  background: rgba(90,69,32,0.12);
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 600;
  color: #5a4520;
}
.swirl-hero-img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.swirl-hero-img img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
}
.swirl-features {
  padding: 80px 16px;
  max-width: 1280px;
  margin: 0 auto;
}
.swirl-features h2 {
  text-align: center;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 48px;
}
.swirl-feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) { .swirl-feature-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .swirl-feature-grid { grid-template-columns: repeat(3, 1fr); } }
.swirl-feature-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  transition: border-color 0.3s;
}
.swirl-feature-card:hover { border-color: var(--gold-500); }
.swirl-feature-num {
  font-size: 40px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}
.swirl-feature-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}
.swirl-feature-card p {
  font-size: 14px;
  color: var(--muted-fg);
  line-height: 1.6;
}

/* ===== VERIFY PAGE ===== */
.verify-container {
  max-width: 1504px;
  margin: 0 auto;
  padding: 0 0 80px;
}
/* Desktop: two-column grid */
@media (min-width: 1024px) {
  .verify-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    padding: 48px 0 100px;
  }
}
.verify-col-left { display: block; }
.verify-col-right { position: relative; }
@media (min-width: 1024px) {
  .verify-col-right { position: sticky; top: 112px; }
}
/* Mobile tabs - only visible below lg */
.verify-mobile-tabs {
  display: flex;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 6px;
  margin-bottom: 32px;
}
@media (min-width: 1024px) {
  .verify-mobile-tabs { display: none; }
}
.verify-mobile-tab {
  flex: 1;
  padding: 14px 12px;
  text-align: center;
  border-radius: 12px;
  border: none;
  background: transparent;
  color: var(--muted-fg);
  cursor: pointer;
  transition: all 0.3s;
  font-family: inherit;
}
.verify-mobile-tab.active {
  background: var(--gold-500);
  color: #000;
  box-shadow: 0 2px 16px rgba(212,175,55,0.3);
}
.verify-mobile-tab .fi { display: flex; margin: 0 auto 4px; }
.verify-mobile-tab span { display: block; font-size: 14px; font-weight: 600; }
.verify-mobile-tab small { display: block; font-size: 12px; font-weight: 400; opacity: 0.7; margin-top: 2px; }
/* Mobile panel visibility */
.verify-mobile-panel { display: none; }
.verify-mobile-panel.active { display: block; }
@media (min-width: 1024px) {
  .verify-mobile-panel { display: block !important; }
}
/* Section header (icon + title) */
.verify-section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.verify-icon-badge {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(212,175,55,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold-500);
}
.verify-section-header h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
  margin: 0;
}
.verify-section-header p {
  font-size: 12px;
  color: var(--muted-fg);
  margin: 0;
}
/* Iframe */
.verify-iframe-wrap {
  width: 100%;
  margin-bottom: 24px;
}
.verify-iframe-wrap iframe {
  width: 100%;
  border: 0;
  border-radius: 16px;
  min-height: 500px;
}
@media (min-width: 1024px) {
  .verify-iframe-wrap iframe { height: 726px; min-height: 726px; }
}
/* Security code card */
.verify-code-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
}
.verify-code-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(212,175,55,0.4), transparent);
}
.verify-code-input {
  width: 100%;
  padding: 16px 20px;
  font-size: 16px;
  font-family: 'Courier New', monospace;
  letter-spacing: 0.05em;
  color: var(--fg);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  outline: none;
  transition: all 0.2s;
  box-sizing: border-box;
  margin-bottom: 16px;
}
.verify-code-input::placeholder { color: rgba(128,128,128,0.4); }
.verify-code-input:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.15);
}
.verify-code-btn {
  width: 100%;
  padding: 16px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  background: var(--gold-500);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s;
}
.verify-code-btn:hover {
  background: var(--gold-600);
  box-shadow: 0 4px 20px rgba(212,175,55,0.35);
  transform: translateY(-2px);
}
.verify-code-btn:active { transform: translateY(0); box-shadow: none; }
/* Guide section */
.verify-guide-section { margin-top: 8px; }
.verify-guide-section h4 {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted-fg);
  margin-bottom: 16px;
}
.verify-guide-section img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--border);
  display: block;
}

/* ===== WIN/GIVEAWAY PAGE ===== */
.win-hero {
  padding: 48px 0 64px;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .win-hero { padding: 64px 0 80px; }
}
.win-hero-inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 1024px) {
  .win-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 0;
  }
}
.win-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  color: #e6c85a;
  background-color: rgba(201, 163, 79, 0.1);
  border: 1px solid rgba(201, 163, 79, 0.3);
  padding: 6px 16px;
  border-radius: 9999px;
  margin-bottom: 20px;
}
.win-hero-title {
  font-family: 'Knewave', cursive;
  font-size: 72px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.025em;
  margin-bottom: 20px;
}
.win-title-white { color: #fff; }
.win-title-gold {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500), var(--gold-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.win-hero-desc {
  font-size: 16px;
  color: var(--muted-fg);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 32px;
}
.win-hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.win-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  border: 1px solid var(--border);
  border-radius: 9999px;
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  text-decoration: none;
  transition: all 0.2s;
}
.win-btn-outline:hover { border-color: var(--gold-500); color: var(--gold-500); }
.win-hero-img {
  display: none;
}
@media (min-width: 1024px) {
  .win-hero-img {
    display: block;
    position: relative;
  }
  .win-hero-img img {
    width: auto;
    height: 448px;
    max-width: 560px;
    display: block;
  }
}
/* Mobile: show image below text */
@media (max-width: 1023px) {
  .win-hero-img {
    display: block;
    max-width: 400px;
    margin: 32px auto 0;
  }
  .win-hero-img img { width: auto; height: 448px; display: block; }
}
.win-steps {
  max-width: 1024px;
  margin: 0 auto;
  padding: 64px 16px;
}
.win-steps h2 {
  font-family: 'Knewave', cursive;
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 400;
  letter-spacing: 0.025em;
  color: var(--fg);
  margin-bottom: 12px;
}
.win-steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) {
  .win-steps-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
}
/* Circles + connecting line row — line flex-grows between circle 1 and circle 2 */
.win-circles-row {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 608px;
  margin: 0 auto 32px;
  padding: 0 16px;
}
.win-circles-line {
  flex: 1;
  height: 1px;
  background: rgba(201, 163, 79, 0.4);
}
@media (max-width: 767px) {
  .win-circles-row { display: none; }
}
.win-step-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(201, 163, 79, 0.4);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: #e6c85a;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(201, 163, 79, 0.15);
}
.win-step {
  text-align: center;
}
.win-step-img-frame {
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 16px;
  background: linear-gradient(to bottom right, rgba(59, 48, 24, 0.3), rgba(253, 246, 234, 0.08), rgba(110, 87, 48, 0.2));
  padding: 4px;
  box-shadow: 0 0 0 1px rgba(201, 163, 79, 0.15);
}
.win-step-img {
  position: relative;
  aspect-ratio: 1;
  border-radius: 14px;
  overflow: hidden;
  background: #f5f0e8;
}
.win-step-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.win-step h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  margin-top: 24px;
  margin-bottom: 8px;
}
.win-step p {
  font-size: 14px;
  color: var(--muted-fg);
  line-height: 1.625;
  max-width: 320px;
  margin: 0 auto;
}
.win-prizes {
  padding: 64px 16px;
}
.win-prizes-inner { max-width: 1024px; margin: 0 auto; }
.win-prizes h2 {
  font-family: 'Knewave', cursive;
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 400;
  letter-spacing: 0.025em;
  color: var(--fg);
  margin-bottom: 48px;
}
.win-prizes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 768px) { .win-prizes-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; } }
.win-prize {
  text-align: center;
}
.win-prize img {
  width: 192px;
  height: 192px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  margin: 0 auto 20px;
}
.win-prize-rank {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #e74c3c;
  margin-bottom: 4px;
}
.win-prize-name {
  display: block;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--fg);
}
.win-form-section {
  max-width: 672px;
  margin: 0 auto;
  padding: 96px 16px;
}
.win-form-section h2 {
  font-family: 'Knewave', cursive;
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 400;
  letter-spacing: 0.025em;
  color: var(--fg);
  margin-bottom: 12px;
}
.win-form-section > p {
  text-align: center;
  color: var(--muted-fg);
  font-size: 14px;
  margin-bottom: 24px;
}
.win-signin-bar {
  text-align: center;
  font-size: 14px;
  color: var(--muted-fg);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 32px;
}

/* ===== AUTH PAGES (Login / Register) ===== */
.auth-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 16px;
}
.auth-container {
  width: 100%;
  max-width: 448px;
}
.auth-title {
  font-size: 30px;
  font-weight: 700;
  color: var(--fg);
  margin: 0;
}
.auth-subtitle {
  margin-top: 8px;
  font-size: 14px;
  color: var(--muted-fg);
}
.auth-form {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.auth-field {
  display: flex;
  flex-direction: column;
}
.auth-label {
  font-size: 14px;
  color: var(--muted-fg);
}
.auth-input {
  margin-top: 8px;
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 10px 12px;
  font-size: 14px;
  color: var(--fg);
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.auth-input::placeholder { color: var(--muted); }
.auth-input:focus { border-color: var(--gold-500); }
.auth-btn {
  width: 100%;
  border-radius: 8px;
  border: none;
  background: var(--gold-500);
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  color: #000;
  cursor: pointer;
  transition: opacity 0.2s;
}
.auth-btn:hover { opacity: 0.9; }
.auth-btn:disabled { opacity: 0.4; }
.auth-links {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: var(--muted-fg);
}
.auth-link {
  color: var(--gold-400);
  text-decoration: none;
}
.auth-link:hover { text-decoration: underline; }
.auth-footer {
  margin-top: 16px;
  font-size: 14px;
  color: var(--muted-fg);
}
.auth-form .auth-footer { margin-top: 0; }

/* ===== MERCH PAGE ===== */
.merch-hero {
  position: relative;
  aspect-ratio: 21/9;
  overflow: hidden;
  max-height: 50vh;
}
.merch-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.merch-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.5);
}
.merch-hero-overlay h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #fff;
}
.merch-hero-overlay p {
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  margin-top: 8px;
}
.merch-products {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 16px 64px;
}
.merch-products h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 32px;
}
.merch-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 640px) { .merch-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .merch-grid { grid-template-columns: repeat(4, 1fr); } }
.merch-card {
  text-decoration: none;
  color: inherit;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: border-color 0.3s, transform 0.3s;
}
.merch-card:hover { border-color: var(--gold-500); transform: translateY(-3px); }
.merch-card-img {
  aspect-ratio: 1;
  background: var(--card);
  overflow: hidden;
}
.merch-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.merch-card:hover .merch-card-img img { transform: scale(1.05); }
.merch-card-info { padding: 12px; }
.merch-card-info h3 { font-size: 14px; font-weight: 600; color: var(--fg); }
.merch-card-info p { font-size: 12px; color: var(--muted-fg); margin-top: 4px; }
.merch-cta {
  text-align: center;
  padding: 48px 16px 64px;
}

/* ===== BLOG PAGE ===== */
.blog-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.blog-tab {
  padding: 8px 20px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 500;
  border: none;
  background: transparent;
  color: var(--muted-fg);
  cursor: pointer;
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}
.blog-tab:hover { color: var(--gold-300); }
.blog-tab.active {
  background: var(--gold-500);
  color: #0c0a09;
}
.blog-tab.active:hover { color: #0c0a09; }
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }
.blog-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.3s, transform 0.3s;
}
.blog-card:hover { border-color: var(--gold-500); transform: translateY(-2px); }
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 12px;
  color: var(--muted);
}
.blog-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
  line-height: 1.4;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card p {
  font-size: 13px;
  color: var(--muted-fg);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===== PRIVACY POLICY PAGE ===== */
.privacy-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 16px 80px;
}
.privacy-content h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 8px;
}
.privacy-content .privacy-updated {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 40px;
}
.privacy-content h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  margin: 32px 0 12px;
}
.privacy-content p, .privacy-content li {
  font-size: 15px;
  color: var(--muted-fg);
  line-height: 1.8;
  margin-bottom: 12px;
}
.privacy-content ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

/* ===== ARTICLE PAGES (News + Blog) ===== */
.article-header {
  max-width: 864px;
  margin: 0 auto;
  padding: 64px 16px 24px;
  border-bottom: 1px solid var(--border);
}
.article-header .news-tag { margin-bottom: 16px; }
.article-header h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--fg);
  line-height: 1.2;
  margin-bottom: 16px;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
  padding-bottom: 24px;
}
.article-meta .meta-icon {
  color: var(--gold);
  opacity: 0.8;
  flex-shrink: 0;
}
.article-meta .meta-sep {
  color: var(--muted);
  opacity: 0.3;
}
.article-cover {
  max-width: 864px;
  margin: 0 auto;
  padding: 32px 16px 0;
}
.article-cover img {
  width: 100%;
  aspect-ratio: 862 / 430;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
.article-excerpt {
  max-width: 864px;
  margin: 0 auto;
  padding: 32px 16px 0;
}
.article-excerpt p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--fg);
  line-height: 1.7;
  border-left: 2px solid var(--gold);
  padding-left: 20px;
  font-weight: 300;
}
.article-body {
  max-width: 864px;
  margin: 0 auto;
  padding: 32px 16px 80px;
}
.article-body p {
  font-size: 16px;
  color: var(--muted-fg);
  line-height: 1.9;
  margin-bottom: 20px;
}
.article-body h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  margin: 40px 0 16px;
}
.article-body h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  margin: 32px 0 12px;
}
.article-body img {
  width: 100%;
  border-radius: 12px;
  margin: 24px 0;
}
.article-body ul, .article-body ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
.article-body li {
  font-size: 16px;
  color: var(--muted-fg);
  line-height: 1.8;
  margin-bottom: 8px;
}
/* Article Tags (862px width, top border separator) */
.article-tags {
  max-width: 864px;
  margin: 0 auto;
  padding: 48px 16px 80px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag-badge {
  display: inline-block;
  padding: 4px 12px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg);
  border: 1px solid var(--border);
  border-radius: 6px;
}

/* More from the Newsroom (full-width section) */
.newsroom-section {
  border-top: 1px solid var(--border);
  background: #000;
}
.newsroom-inner {
  max-width: 864px;
  margin: 0 auto;
  padding: 56px 16px;
}
.newsroom-title {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--fg);
  margin-bottom: 32px;
}
.newsroom-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--border);
}
.newsroom-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: padding-left 0.3s;
}
.newsroom-item:hover { padding-left: 4px; }
.newsroom-item-body { flex: 1; min-width: 0; }
.newsroom-item-date {
  font-size: 12px;
  color: var(--fg);
  margin: 0 0 6px;
}
.newsroom-item-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
  line-height: 1.4;
  transition: color 0.3s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.newsroom-item:hover .newsroom-item-title { color: var(--gold); }
.newsroom-chevron {
  color: var(--fg);
  flex-shrink: 0;
  transition: color 0.3s;
}
.newsroom-item:hover .newsroom-chevron { color: var(--gold); }
@media (min-width: 640px) {
  .newsroom-item { gap: 24px; padding: 24px 0; }
  .newsroom-item-title { font-size: 18px; }
}

/* ===== NEWS PAGE REFRESH ===== */
.news-hero {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}
@media (min-width: 768px) { .news-hero { min-height: 380px; } }
.news-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% 42%, rgba(201,163,79,0.16), transparent 68%),
    radial-gradient(circle at 15% 85%, rgba(201,163,79,0.08), transparent 42%),
    radial-gradient(circle at 88% 18%, rgba(230,200,90,0.07), transparent 38%);
}
.news-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(128,128,128,0.07) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(128,128,128,0.07) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.4;
}
[data-theme="light"] .news-hero-grid { opacity: 0.15; }

/* Blur glow ball at top center */
.news-hero-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  height: 176px;
  width: min(92%, 560px);
  transform: translateX(-50%);
  border-radius: 9999px;
  background: rgba(201,163,79,0.12);
  filter: blur(88px);
  pointer-events: none;
}
@media (min-width: 768px) {
  .news-hero-glow { height: 224px; filter: blur(110px); }
}

/* Dark vignette overlay */
.news-hero-dark-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 45%, rgba(0,0,0,0.28) 100%);
  pointer-events: none;
}
[data-theme="light"] .news-hero-dark-vignette { display: none; }

/* Bottom fade mask */
.news-hero-fade {
  position: absolute;
  inset-x: 0;
  bottom: 0;
  z-index: 1;
  height: 128px;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.6) 50%, #000 100%);
  pointer-events: none;
}
@media (min-width: 768px) { .news-hero-fade { height: 160px; } }
[data-theme="light"] .news-hero-fade {
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.6) 50%, #fff 100%);
}

.news-hero .page-hero-label,
.news-hero .page-hero-title,
.news-hero .page-hero-desc,
.news-hero .news-tabs {
  position: relative;
  z-index: 1;
}
.news-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}
.news-tab {
  padding: 8px 20px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted-fg);
  cursor: pointer;
  transition: all 0.2s;
}
.news-tab:hover { color: var(--gold-400); border-color: var(--muted-fg); }
.news-tab.active {
  background: var(--gold-500);
  color: #000;
  border-color: var(--gold-500);
}

.news-featured { margin-bottom: 56px; }
.news-featured-card {
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--card-bg);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.news-featured-card:hover {
  border-color: rgba(201,163,79,0.3);
  transform: translateY(-3px);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}
@media (min-width: 768px) {
  .news-featured-card {
    grid-template-columns: 1.2fr 1fr;
    min-height: 420px;
  }
}
.news-featured-card-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--card);
}
@media (min-width: 768px) {
  .news-featured-card-img {
    aspect-ratio: auto;
    width: 495px;
    height: 100%;
    min-height: 420px;
  }
}
.news-featured-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.news-featured-card:hover .news-featured-card-img img { transform: scale(1.03); }
.news-featured-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 12px;
  border-radius: 8px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}
.news-featured-card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
}
@media (min-width: 768px) {
  .news-featured-card-content { padding: 28px 32px; }
}
.news-featured-category {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-500);
}
.news-featured-card-content h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1.3;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}
.news-featured-card:hover .news-featured-card-content h2 {
  color: var(--gold-500);
}
@media (min-width: 768px) {
  .news-featured-card-content h2 { font-size: 30px; }
}
.news-featured-card-content p {
  font-size: 15px;
  color: var(--muted-fg);
  line-height: 1.7;
  margin-bottom: 20px;
}
.news-featured-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}
.news-featured-footer .news-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
}
.news-read-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gold-400);
  transition: gap 0.2s;
}
.news-read-link:hover { gap: 10px; }

.news-section-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.news-release-list {
  list-style: none;
  border-top: 1px solid var(--border);
}
.news-release-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
}
.news-release-item:hover { background: rgba(255,255,255,0.03); }
[data-theme="light"] .news-release-item:hover { background: rgba(0,0,0,0.02); }
@media (min-width: 768px) {
  .news-release-item {
    gap: 28px;
    padding: 28px 24px;
    margin: 0 -24px;
    border-radius: 16px;
  }
}
.news-release-date {
  display: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .news-release-date {
    display: block;
    width: 120px;
  }
}
.news-release-date-mobile {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 4px;
}
@media (min-width: 768px) {
  .news-release-date-mobile { display: none; }
}
.news-release-main {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  min-width: 0;
}
@media (min-width: 768px) {
  .news-release-main { gap: 24px; }
}
.news-release-thumb {
  flex-shrink: 0;
  width: 80px;
  height: 56px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
}
@media (min-width: 768px) {
  .news-release-thumb { width: 120px; height: 84px; }
}
.news-release-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.news-release-item:hover .news-release-thumb img { transform: scale(1.05); }
.news-release-body {
  flex: 1;
  min-width: 0;
}
.news-release-category {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 6px;
}
.news-release-body h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  line-height: 1.4;
  margin-bottom: 4px;
  transition: color 0.2s;
}
.news-release-item:hover .news-release-body h3 { color: var(--gold-400); }
.news-release-body p {
  display: none;
  font-size: 14px;
  color: var(--muted-fg);
  line-height: 1.6;
}
@media (min-width: 768px) {
  .news-release-body p { display: block; }
}
.news-release-arrow {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--muted);
  transition: color 0.2s, transform 0.2s;
}
.news-release-item:hover .news-release-arrow {
  color: var(--gold-500);
  transform: translateX(4px);
}

/* ===== BLOG PAGE REFRESH ===== */
.blog-hero {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) { .blog-hero { min-height: 380px; } }
.blog-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% 42%, rgba(201,163,79,0.16), transparent 68%),
    radial-gradient(circle at 15% 85%, rgba(201,163,79,0.08), transparent 42%),
    radial-gradient(circle at 88% 18%, rgba(230,200,90,0.07), transparent 38%);
}
.blog-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(128,128,128,0.07) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(128,128,128,0.07) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.4;
}
[data-theme="light"] .blog-hero-grid { opacity: 0.15; }
.blog-hero-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  height: 176px;
  width: min(92%, 560px);
  border-radius: 50%;
  background: rgba(201,163,79,0.12);
  filter: blur(88px);
}
@media (min-width: 768px) { .blog-hero-glow { height: 224px; filter: blur(110px); } }
.blog-hero-fade {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 1;
  height: 128px;
  background: linear-gradient(to bottom, transparent, var(--bg) 90%);
  pointer-events: none;
}
@media (min-width: 768px) { .blog-hero-fade { height: 160px; } }
.blog-hero .page-hero-label,
.blog-hero .page-hero-title,
.blog-hero .page-hero-desc,
.blog-hero .blog-tabs {
  position: relative;
  z-index: 2;
}
.blog-hero .page-hero-label {
  letter-spacing: 0.38em;
  color: rgba(212,175,55,0.9);
}
.blog-hero .page-hero-title { color: var(--gold-300); }
.blog-hero .blog-tabs { margin-top: 32px; margin-bottom: 0; }

.blog-page-content {
  max-width: 1504px;
  margin: 0 auto;
  padding: 0 16px 80px;
}
@media (min-width: 768px) {
  .blog-page-content { padding: 0 32px 80px; }
}

.blog-post-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--card-bg);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.blog-post-card:hover {
  border-color: rgba(201,163,79,0.3);
  transform: translateY(-3px);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}
.blog-post-card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--card);
}
.blog-post-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.blog-post-card:hover .blog-post-card-img img { transform: scale(1.05); }
.blog-post-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 12px;
  border-radius: 8px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}
.blog-post-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px;
}
.blog-post-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 12px;
  color: var(--muted);
}
.blog-post-card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.blog-post-card-meta .fi {
  font-size: 12px;
}
.blog-post-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1.35;
  margin-bottom: 12px;
  transition: color 0.2s;
}
.blog-post-card:hover h3 { color: var(--gold-400); }
.blog-post-card p {
  font-size: 14px;
  color: var(--muted-fg);
  line-height: 1.6;
  margin-bottom: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-post-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.blog-post-card-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.blog-post-card-author img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--card);
}
.blog-post-card-author span {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
}
.blog-post-card-arrow {
  width: 24px;
  height: 24px;
  color: var(--gold-500);
  transition: transform 0.2s;
}
.blog-post-card:hover .blog-post-card-arrow { transform: translateX(4px); }

