/* Zenoryxen.xyz - Bold Sports Theme */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;800;900&family=Raleway:wght@300;400;600&display=swap');

:root {
  --dark: #121212;
  --surface: #1e1e1e;
  --red: #e53935;
  --red-light: #ff6f60;
  --white: #fafafa;
  --gray: #9e9e9e;
  --border: rgba(229,57,53,0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Raleway', sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
}

/* HEADER */
.hdr {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background: rgba(18,18,18,0.97);
  backdrop-filter: blur(10px);
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  border-bottom: 2px solid var(--red);
}

.hdr-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hdr-logo svg { width: 32px; height: 32px; }

.hdr-nav { display: flex; gap: 1.5rem; list-style: none; }

.hdr-nav a {
  color: var(--gray);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.2s;
}

.hdr-nav a:hover, .hdr-nav a.sel { color: var(--red); }

.ham-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.ham-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--red);
  margin: 6px 0;
  transition: all 0.3s;
}

.ham-btn.on span:first-child { transform: translateY(8px) rotate(45deg); }
.ham-btn.on span:nth-child(2) { opacity: 0; }
.ham-btn.on span:last-child { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 768px) {
  .ham-btn { display: block; }
  .hdr-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 72%;
    max-width: 300px;
    height: 100vh;
    background: var(--surface);
    flex-direction: column;
    padding: 80px 2rem;
    gap: 1.3rem;
    transition: right 0.4s;
  }
  .hdr-nav.vis { right: 0; }
}

/* HERO - full bleed */
.hero-full {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 5% 50px;
  background:
    linear-gradient(135deg, rgba(229,57,53,0.08) 0%, transparent 40%),
    var(--dark);
}

.hero-full .inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-full h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-full h1 .red { color: var(--red); }

.hero-full .sub {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.btn-red {
  display: inline-block;
  padding: 14px 40px;
  background: var(--red);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.btn-red:hover { background: var(--red-light); transform: translateY(-2px); }

/* STRIPS */
.strip-row {
  display: flex;
  width: 100%;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.strip-cell {
  flex: 1;
  padding: 2.5rem 3%;
  text-align: center;
  border-right: 1px solid var(--border);
}

.strip-cell:last-child { border-right: none; }

.strip-cell .lbl {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--red);
  margin-bottom: 0.5rem;
}

.strip-cell h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.strip-cell p { color: var(--gray); font-size: 0.88rem; line-height: 1.5; }

@media (max-width: 700px) {
  .strip-row { flex-direction: column; }
  .strip-cell { border-right: none; border-bottom: 1px solid var(--border); }
  .strip-cell:last-child { border-bottom: none; }
}

/* GAME */
.game-block {
  padding: 4rem 4%;
  max-width: 1200px;
  margin: 0 auto;
}

.game-block h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--red);
}

.game-embed {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  background: #000;
  overflow: hidden;
}

.game-embed iframe { width: 100%; height: 100%; border: none; }

/* COLUMNS */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 1200px;
  margin: 3rem auto;
}

.col-item {
  padding: 3rem 4%;
  border: 1px solid var(--border);
}

.col-item h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.6rem;
}

.col-item p { color: var(--gray); font-size: 0.92rem; line-height: 1.6; }

@media (max-width: 600px) { .two-col { grid-template-columns: 1fr; } }

/* PAGES */
.pg {
  padding: 100px 5% 50px;
  max-width: 900px;
  margin: 0 auto;
}

.pg h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.2rem;
  letter-spacing: 2px;
}

.pg h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--red-light);
  margin: 2rem 0 0.6rem;
  letter-spacing: 1px;
}

.pg p { color: var(--gray); line-height: 1.8; margin-bottom: 0.8rem; }

.pg ul { list-style: none; margin-bottom: 1rem; }
.pg ul li { color: var(--gray); padding: 0.3rem 0 0.3rem 1.2rem; position: relative; }
.pg ul li::before { content: '\25AA'; color: var(--red); position: absolute; left: 0; }

/* PLAY PAGE */
.play-pg-top {
  padding: 80px 5% 20px;
  text-align: center;
}

.play-pg-top h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--red);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 0.6rem;
}

.play-pg-top p { color: var(--gray); max-width: 650px; margin: 0 auto; }

.play-embed {
  padding: 2rem 3%;
  max-width: 1100px;
  margin: 0 auto 3rem;
}

.play-embed .game-embed { max-width: 100%; }

/* FOOTER */
.ftr {
  background: var(--surface);
  border-top: 2px solid var(--red);
  padding: 2rem 5%;
  text-align: center;
}

.ftr-links { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 1rem; }
.ftr-links a { color: var(--gray); text-decoration: none; font-size: 0.82rem; font-family: 'Montserrat', sans-serif; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.ftr-links a:hover { color: var(--red); }

.rg-bar { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.rg-bar p { color: var(--gray); font-size: 0.78rem; margin-bottom: 0.4rem; }
.rg-bar a { color: var(--red-light); text-decoration: none; font-size: 0.78rem; margin: 0 0.5rem; }
.rg-bar a:hover { text-decoration: underline; }

.ftr-copy { color: var(--gray); font-size: 0.7rem; margin-top: 1rem; opacity: 0.5; }

/* AGE VERIFY */
.av-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.av-overlay.off { display: none; }

.av-card {
  background: var(--surface);
  border: 2px solid var(--red);
  padding: 2.5rem;
  text-align: center;
  max-width: 420px;
  width: 90%;
}

.av-card h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.av-card p { color: var(--gray); margin-bottom: 1.5rem; font-size: 0.92rem; }

.av-btns { display: flex; gap: 0.8rem; justify-content: center; }

.av-btns button {
  padding: 10px 28px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border: 2px solid var(--red);
  transition: all 0.3s;
}

.av-y { background: var(--red); color: #fff; }
.av-y:hover { background: var(--red-light); }
.av-n { background: transparent; color: var(--red); }
.av-n:hover { background: rgba(229,57,53,0.1); }
