:root {
  --gold: #d4891a;
  --gold-l: #f0a830;
  --gold-d: #a8650e;
  --bg-body: #000;
  --bg-elevated: #090909;
  --bg-soft: #111;
  --text-body: #fff;
  --text-muted: #aaa;
  --header-bg: rgba(0, 0, 0, 0.86);
  --footer-bg: #000;
  --footer-text: #aaa;
  --footer-border: rgba(255, 255, 255, 0.06);
  --card-bg: #070707;
  --color-border: rgba(255, 255, 255, 0.09);
  --input-bg: rgba(255, 255, 255, 0.045);
  --success: #30b77a;
  --danger: #ff5a5f;
  --fd: "Bebas Neue", Impact, sans-serif;
  --fb: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: "Playfair Display", Georgia, serif;
  --shadow-card: 0 18px 50px rgba(0, 0, 0, 0.5);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --header-height: 76px;
  --container: min(1400px, 92vw);
  --trans-smooth: 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  --trans-bounce: 0.45s cubic-bezier(0.34, 1.3, 0.64, 1);
}

html.theme-light,
body.light-mode {
  --bg-body: #fff;
  --bg-elevated: #f7f7f7;
  --bg-soft: #efefef;
  --text-body: #111;
  --text-muted: #5e5e5e;
  --header-bg: rgba(255, 255, 255, 0.9);
  --footer-bg: #fff;
  --footer-text: #555;
  --footer-border: rgba(0, 0, 0, 0.08);
  --card-bg: #fff;
  --color-border: rgba(0, 0, 0, 0.1);
  --input-bg: rgba(0, 0, 0, 0.035);
  --shadow-card: 0 16px 45px rgba(0, 0, 0, 0.1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
body { margin: 0; min-height: 100vh; display: flex; flex-direction: column; overflow-x: hidden; background: var(--bg-body); color: var(--text-body); font-family: var(--fb); line-height: 1.6; transition: background-color var(--trans-smooth), color var(--trans-smooth); }
body.no-scroll { overflow: hidden; }
main { width: 100%; flex: 1 0 auto; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { border: 0; color: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin-top: 0; }
::selection { background: var(--gold); color: #000; }

.container { width: var(--container); margin-inline: auto; }
.page-shell { padding-top: calc(var(--header-height) + 38px); }
.section { padding: clamp(64px, 8vw, 116px) 0; }
.section-tight { padding: clamp(45px, 6vw, 80px) 0; }
.eyebrow { display: inline-block; margin-bottom: 8px; color: var(--gold); font-size: 12px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; }
.display-title { margin: 0; font-family: var(--fd); font-size: clamp(46px, 7vw, 96px); line-height: .9; letter-spacing: .02em; text-transform: uppercase; }
.section-title { margin: 0 0 22px; font-family: var(--fd); font-size: clamp(38px, 5vw, 70px); line-height: .95; text-transform: uppercase; letter-spacing: .02em; }
.lead { color: var(--text-muted); font-size: clamp(16px, 1.45vw, 20px); max-width: 760px; }
.gold { color: var(--gold); }

.skip-link { position: fixed; top: 10px; left: 10px; z-index: 9999; transform: translateY(-160%); background: var(--gold); color: #000; padding: 10px 14px; border-radius: 8px; font-weight: 800; transition: transform .2s; }
.skip-link:focus { transform: translateY(0); }

.js [data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity var(--trans-smooth), transform var(--trans-smooth); }
.js [data-reveal="fade-in"] { transform: none; }
.js [data-reveal].in-view { opacity: 1; transform: none; }

/* Header — one implementation for every page */
.hdr { position: fixed; inset: 0 0 auto; z-index: 2000; min-height: var(--header-height); padding: 12px clamp(18px, 3.6vw, 50px); display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: clamp(18px, 3vw, 44px); background: var(--header-bg); border-bottom: 1px solid var(--color-border); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); transition: min-height var(--trans-smooth), padding var(--trans-smooth), box-shadow var(--trans-smooth), background-color var(--trans-smooth); }
.hdr.scrolled { min-height: 62px; padding-block: 8px; box-shadow: 0 8px 28px rgba(0,0,0,.22); }
.hdr-logo { display: inline-flex; align-items: center; }
.hdr-logo img { width: auto; height: 44px; transition: height var(--trans-smooth), transform var(--trans-bounce), filter var(--trans-smooth); }
.hdr.scrolled .hdr-logo img { height: 36px; }
.hdr-logo:hover img { transform: scale(1.04); }
html.theme-light .hdr-logo img, html.theme-light .mobile-sidebar-header img, html.theme-light .flz img,
body.light-mode .hdr-logo img, body.light-mode .mobile-sidebar-header img, body.light-mode .flz img { filter: invert(1); }

.hdr-nav { display: flex; justify-content: center; align-items: center; gap: clamp(13px, 2vw, 30px); min-width: 0; }
.nav-link { position: relative; padding: 7px 0; font-size: clamp(10px, .82vw, 13px); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; transition: color .25s; }
.nav-link::after { content: ""; position: absolute; left: 0; right: auto; bottom: 0; height: 2px; width: 0; background: var(--gold); transition: width var(--trans-smooth); }
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.hdr-actions { display: flex; align-items: center; gap: 10px; }
.icon-btn, .theme-toggle { width: 40px; height: 40px; border-radius: 999px; display: inline-grid; place-items: center; position: relative; background: rgba(255,255,255,.06); border: 1px solid var(--color-border); transition: background var(--trans-smooth), color var(--trans-smooth), transform var(--trans-bounce), border-color var(--trans-smooth); }
.icon-btn:hover, .theme-toggle:hover { transform: translateY(-2px) scale(1.05); color: var(--gold); border-color: rgba(212,137,26,.45); }
.play-now-btn { background: var(--gold); color: #000; border-color: transparent; box-shadow: 0 5px 18px rgba(212,137,26,.24); }
.play-now-btn:hover { background: var(--gold-l); color: #000; }
.theme-icon { position: absolute; font-size: 17px; transition: opacity var(--trans-smooth), transform var(--trans-bounce); }
html:not(.theme-light) .theme-moon { opacity: 0; transform: rotate(-90deg) scale(.4); }
html:not(.theme-light) .theme-sun { opacity: 1; }
html.theme-light .theme-sun { opacity: 0; transform: rotate(90deg) scale(.4); }
html.theme-light .theme-moon { opacity: 1; }

.hdr-lang { width: 68px; height: 34px; padding: 3px; position: relative; display: flex; border: 1px solid var(--color-border); border-radius: 999px; background: rgba(120,120,120,.13); overflow: hidden; }
.hdr-lang-slider { position: absolute; z-index: 0; inset: 3px auto 3px 3px; width: calc(50% - 3px); border-radius: 999px; background: var(--gold); transition: transform var(--trans-bounce); }
.hdr-lang.en-active .hdr-lang-slider { transform: translateX(100%); }
.hdr-lang button { z-index: 1; flex: 1; border: 0; background: transparent; padding: 0; color: var(--text-muted); font-size: 10px; font-weight: 900; }
.hdr-lang button.active { color: #000; }

.cart-btn { width: 42px; }
.cart-count { position: absolute; top: -5px; right: -5px; min-width: 19px; height: 19px; padding-inline: 4px; border-radius: 999px; display: grid; place-items: center; background: var(--gold); color: #000; border: 2px solid var(--bg-body); font-size: 10px; font-weight: 900; }
.icon-glyph { font-size: 16px; }

.menu-toggle { display: none; width: 42px; height: 40px; padding: 9px; border-radius: 10px; background: transparent; border: 1px solid var(--color-border); }
.menu-toggle span { display: block; height: 2px; width: 100%; margin: 4px 0; background: currentColor; border-radius: 999px; }

.mobile-sidebar-overlay { position: fixed; inset: 0; z-index: 2998; background: rgba(0,0,0,.72); backdrop-filter: blur(7px); -webkit-backdrop-filter: blur(7px); opacity: 0; transition: opacity var(--trans-smooth); }
.mobile-sidebar-overlay.open { opacity: 1; }
.mobile-sidebar { position: fixed; inset: 0 auto 0 0; z-index: 2999; width: min(86vw, 360px); padding: 28px; display: flex; flex-direction: column; gap: 25px; transform: translateX(-102%); background: var(--header-bg); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-right: 1px solid var(--color-border); transition: transform var(--trans-bounce), background var(--trans-smooth); }
.mobile-sidebar.open { transform: translateX(0); }
.mobile-sidebar-header { display: flex; align-items: center; justify-content: space-between; }
.mobile-sidebar-header img { height: 40px; width: auto; }
.close-sidebar { width: 40px; height: 40px; border-radius: 50%; background: transparent; color: var(--text-muted); font-size: 30px; line-height: 1; }
.mobile-sidebar-nav { display: flex; flex-direction: column; overflow-y: auto; }
.mobile-sidebar-nav .nav-link { padding: 14px 0; border-bottom: 1px solid var(--color-border); font-family: var(--fd); font-size: 25px; letter-spacing: .06em; }
.mobile-sidebar-nav .nav-link::after { display: none; }
.mobile-sidebar-tools { margin-top: auto; display: flex; align-items: center; gap: 14px; }

/* Buttons and shared surfaces */
.btn-primary, .btn-secondary, .btn-link, .btn-submit { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 48px; padding: 12px 22px; border-radius: 999px; font-weight: 800; letter-spacing: .04em; transition: transform var(--trans-bounce), box-shadow var(--trans-smooth), background var(--trans-smooth), color var(--trans-smooth), border-color var(--trans-smooth); }
.btn-primary, .btn-submit { background: var(--gold); color: #000; border: 1px solid var(--gold); }
.btn-primary:hover, .btn-submit:hover { background: var(--gold-l); transform: translateY(-2px); box-shadow: 0 9px 24px rgba(212,137,26,.25); }
.btn-secondary { background: transparent; border: 1px solid var(--color-border); color: var(--text-body); }
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-link { min-height: auto; padding: 0; border-radius: 0; color: var(--gold); }
.btn-link:hover { transform: translateX(4px); }

.card { background: var(--card-bg); border: 1px solid var(--color-border); border-radius: var(--radius-md); box-shadow: var(--shadow-card); }

/* Footer — one implementation for every page */
.ftr { margin-top: auto; width: 100%; background: var(--footer-bg); color: var(--footer-text); transition: background var(--trans-smooth), color var(--trans-smooth); }
.ftr-diag { height: clamp(36px, 5vw, 62px); background: var(--bg-body); clip-path: polygon(0 0,100% 0,100% 0,0 100%); }
.ftr-prog { width: 0; max-width: 1400px; height: 3px; margin: 0 auto clamp(30px,5vh,50px); background: var(--gold); border-radius: 999px; }
.ftr-in { width: var(--container); margin: 0 auto; padding-bottom: clamp(34px,5vw,58px); display: grid; grid-template-columns: 1.35fr 1fr 1fr; gap: clamp(28px,5vw,64px); }
.flz img { height: 78px; width: auto; margin-bottom: 20px; transition: filter var(--trans-smooth), transform var(--trans-bounce); }
.flz img:hover { transform: scale(1.035); }
.flz p { max-width: 350px; color: var(--footer-text); }
.fsoc { display: flex; gap: 11px; margin-top: 20px; }
.fsoc a { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 999px; border: 1px solid rgba(212,137,26,.45); color: var(--gold); font-size: 18px; transition: transform var(--trans-bounce), background var(--trans-smooth), color var(--trans-smooth); }
.fsoc a:hover { transform: translateY(-3px); background: var(--gold); color: #000; }
.fnc h4 { margin: 0 0 18px; color: var(--text-body); font-family: var(--fd); font-size: 22px; letter-spacing: .08em; text-transform: uppercase; }
.fnc li + li { margin-top: 11px; }
.fnc a { color: var(--footer-text); font-size: 14px; transition: color .25s, transform .25s; display: inline-block; }
.fnc a:hover { color: var(--gold); transform: translateX(5px); }
.ftr-bot { width: var(--container); margin: 0 auto; padding: 22px 0 28px; display: flex; justify-content: space-between; gap: 16px; border-top: 1px solid var(--footer-border); color: var(--footer-text); font-size: 12px; }

/* Feedback/status */
.status-message { display: none; margin-top: 14px; padding: 12px 14px; border-radius: 10px; font-size: 13px; line-height: 1.5; }
.status-message.show { display: block; }
.status-message.success { color: #b8f5d6; background: rgba(48,183,122,.12); border: 1px solid rgba(48,183,122,.35); }
.status-message.error { color: #ffb9bc; background: rgba(255,90,95,.1); border: 1px solid rgba(255,90,95,.32); }
body.light-mode .status-message.success { color: #16663f; }
body.light-mode .status-message.error { color: #9b2528; }

@media (max-width: 1120px) {
  .hdr-nav { display: none; }
  .hdr { grid-template-columns: auto 1fr auto; }
  .hdr-actions { justify-self: end; }
  .menu-toggle { display: block; }
}

@media (max-width: 700px) {
  :root { --header-height: 68px; }
  .hdr { padding-inline: 15px; gap: 10px; }
  .hdr-logo img { height: 36px; }
  .hdr .play-now-btn { display: none; }
  .hdr-actions { gap: 7px; }
  .icon-btn, .theme-toggle { width: 36px; height: 36px; }
  .hdr-lang { width: 62px; height: 32px; }
  .container { width: min(92vw, 1400px); }
  .section { padding: 58px 0; }
  .ftr-in { grid-template-columns: 1fr; text-align: center; }
  .flz p { margin-inline: auto; }
  .fsoc { justify-content: center; }
  .ftr-bot { flex-direction: column; align-items: center; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* Shared media frame used anywhere a responsive video/embed is needed. */
.media-frame {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  background: #000;
}
.media-frame iframe,
.media-frame video {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}
