@font-face {
  font-family: "Orbitron ChaChing";
  src:
    url("../fonts/Orbitron-ExtraBold.woff2") format("woff2"),
    url("../fonts/Orbitron-ExtraBold.woff") format("woff"),
    url("../fonts/Orbitron-ExtraBold.ttf") format("truetype"),
    url("../fonts/Orbitron-ExtraBold.svg#Orbitron") format("svg");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {

  /* CORE */
  --bg: #050505;
  --bg-soft: #0d0d0d;
  --white: #ffffff;

  /* GOLD */
  --gold-1: #fff4c2;
  --gold-2: #ffd86a;
  --gold-3: #ffb620;
  --gold-4: #c67a00;

  /* POKER */
  --poker-red: #c6002d;
  --poker-dark: #180307;

  /* ROULETTE */
  --roulette-gold: #ffcf5e;
  --roulette-cream: #fff8de;

  /* SLOTS */
  --slot-pink: #ff00c8;
  --slot-blue: #00d9ff;

  /* SCRATCH */
  --scratch-purple: #7b32ff;
  --scratch-cyan: #29dfff;

  /* CONTACT */
  --contact-gold: #ffcf69;

  /* FX */
  --shadow-soft: 0 15px 50px rgba(0,0,0,.35);
  --shadow-heavy: 0 25px 80px rgba(0,0,0,.55);

  --radius: 24px;

  --max-width: 1600px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-snap-type: none;
}

body {
  margin: 0;
  overflow-x: hidden;

  background: var(--bg);
  color: var(--white);

  font-family:
    Inter,
    Arial,
    Helvetica,
    sans-serif;

  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ---------------- */
/* Canvas Layer */
/* ---------------- */

#three-canvas {
  position: fixed;
  inset: 0;
  z-index: 12;
  pointer-events: none;
}

#three-logo-canvas {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
}


/* ---------------- */
/* Noise Overlay */
/* ---------------- */

.noise-layer {
  position: fixed;
  inset: 0;

  pointer-events: none;

  z-index: 2;

  opacity: .04;

  background-image:
    radial-gradient(circle at 20% 20%, white 1px, transparent 1px),
    radial-gradient(circle at 80% 40%, white 1px, transparent 1px),
    radial-gradient(circle at 40% 90%, white 1px, transparent 1px);

  background-size:
    180px 180px,
    220px 220px,
    240px 240px;
}

/* ---------------- */
/* Mouse Glow */
/* ---------------- */

.cursor-glow {
  position: fixed;

  width: 400px;
  height: 400px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(255,215,100,.22) 0%,
      rgba(255,80,180,.10) 32%,
      rgba(0,220,255,.08) 52%,
      transparent 72%
    );

  pointer-events: none;

  z-index: 850;

  opacity: .95;
  mix-blend-mode: screen;

  filter: blur(2px);

  transform:
    translate(-50%, -50%);

  will-change:
    left,
    top;
}

/* ---------------- */
/* Navigation */
/* ---------------- */

.site-nav {
  position: fixed;

  top: 0;
  left: 0;
  right: 0;

  z-index: 900;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding:
    20px
    clamp(20px, 5vw, 60px);

  backdrop-filter: blur(10px);

  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,.45),
      rgba(0,0,0,0)
    );
}

.nav-logo {
  opacity: 0;
  pointer-events: none;

  text-decoration: none;
  font-weight: 900;
  letter-spacing: .08em;
  color: var(--gold-2);
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: rgba(255,255,255,.75);

  text-decoration: none;

  transition:
    color .3s ease,
    transform .3s ease;
}

.nav-links a:hover {
  color: white;
  transform: translateY(-2px);
}

/* ---------------- */
/* Main */
/* ---------------- */

#page {
  position: relative;
  z-index: 10;
}

/* ---------------- */
/* Sections */
/* ---------------- */

.scene {
  position: relative;

  min-height: 100svh;

  overflow: hidden;
}

.scene-bg {
  position: absolute;
  inset: 0;

  z-index: 0;
}

.scene-inner {
  position: relative;
  z-index: 20;
  width: min(100%, var(--max-width));
  margin-inline: auto;
  min-height: 100svh;
  padding: clamp(70px, 7vh, 95px) clamp(25px, 5vw, 70px) clamp(35px, 5vh, 60px);
  display: flex;
}

/* ---------------- */
/* Hero */
/* ---------------- */

.hero-inner {
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
}

.eyebrow {
  margin: 0 0 20px;

  text-transform: uppercase;

  letter-spacing: .22em;

  font-size: .75rem;

  color: rgba(255,255,255,.65);
}


.brand-title-shell {
  min-height: clamp(5rem, 13vw, 13rem);
  display: flex;
  align-items: center;
  justify-content: center;
}


.brand-title {
  margin: 0;

  font-size:
    clamp(5rem, 13vw, 13rem);

  line-height: .85;

  letter-spacing: -.08em;

  font-weight: 900;

  cursor: pointer;

-webkit-text-stroke: 2px rgba(255,255,255,.18);

filter:
  drop-shadow(0 10px 10px rgba(0,0,0,.75))
  drop-shadow(0 0 45px rgba(255,190,60,.35));

  background:
    linear-gradient(
      135deg,
      var(--gold-1),
      var(--gold-2),
      var(--gold-3),
      var(--gold-4)
    );

  -webkit-background-clip: text;

  color: transparent;

  text-shadow:
    0 0 40px rgba(255,190,50,.25);
}

.brand-title {
  font-family: "Orbitron ChaChing", system-ui, sans-serif;
}

.hero-copy {
  width: min(800px, 90vw);

  font-size:
    clamp(1rem, 2vw, 1.35rem);

  line-height: 1.7;

  color:
    rgba(255,255,255,.8);

  margin-top: 30px;
}

/* ---------------- */
/* Buttons */
/* ---------------- */

.button-row {
  display: flex;
  gap: 18px;

  flex-wrap: wrap;

  align-items: center;
  justify-content: center;

  margin-top: 40px;
}

.btn {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  border: none;

  cursor: pointer;

  text-decoration: none;

  min-width: 180px;

  padding:
    16px
    26px;

  border-radius: 999px;

  font-weight: 800;

  letter-spacing: .08em;

  text-transform: uppercase;

  line-height: 1;
  white-space: nowrap;

  transition:
    transform .3s ease,
    box-shadow .3s ease;
}

.btn:hover {
  transform:
    translateY(-3px)
    scale(1.02);
}

.btn-gold {
  color: #120900;

  background:
    linear-gradient(
      135deg,
      var(--gold-1),
      var(--gold-3)
    );

  box-shadow:
    0 0 30px rgba(255,200,80,.35);
}

.btn-ghost {
  color: white;

  border:
    1px solid rgba(255,255,255,.2);

  background:
    rgba(255,255,255,.05);
}

.btn-red {
  background:
    linear-gradient(
      135deg,
      #ff4c70,
      #a3001f
    );

  color: white;
}

.btn-neon {
  color: white;

  background:
    linear-gradient(
      135deg,
      var(--slot-pink),
      var(--slot-blue)
    );
}

.btn-cyber {
  color: white;

  background:
    linear-gradient(
      135deg,
      var(--scratch-purple),
      var(--scratch-cyan)
    );
}


body.three-logo-hover {
  cursor: pointer;
}
