/* xenyvoryxen.xyz - Crimson & Gold Bold Theme */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Open+Sans:wght@300;400;600;700&display=swap');

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

:root {
  --crimson: #8b0000;
  --deep-red: #2a0000;
  --bright-gold: #ffd700;
  --warm-white: #fff5e6;
  --muted-rose: #d4a0a0;
  --dark-bg: #1a0505;
  --card-red: rgba(139, 0, 0, 0.15);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  background: var(--dark-bg);
  color: var(--warm-white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Bebas Neue', cursive;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

a { color: var(--bright-gold); text-decoration: none; transition: 0.3s; }
a:hover { color: #ffe44d; }

/* TOP HEADER */
.top-header {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  background: rgba(26, 5, 5, 0.95); backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--crimson);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem; height: 60px;
}
.site-logo {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.7rem; color: var(--bright-gold);
  display: flex; align-items: center; gap: 0.5rem;
  letter-spacing: 0.1em;
}
.site-logo svg { width: 32px; height: 32px; }
.top-nav { display: flex; gap: 1.2rem; list-style: none; }
.top-nav a {
  color: var(--muted-rose); font-size: 0.95rem; font-weight: 600;
  padding: 0.3rem 0.8rem; border-radius: 4px; transition: 0.3s;
}
.top-nav a:hover, .top-nav a.on { background: var(--crimson); color: var(--bright-gold); }
.ham-btn {
  display: none; background: none; border: 2px solid var(--bright-gold);
  border-radius: 4px; padding: 4px 7px; cursor: pointer;
}
.ham-btn span { display: block; width: 20px; height: 2px; background: var(--bright-gold); margin: 4px 0; }

/* HERO FULL */
.hero-full {
  min-height: 100vh;
  background: linear-gradient(170deg, var(--deep-red), var(--dark-bg) 60%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 6rem 2rem 4rem;
  position: relative;
}
.hero-full::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 200px; background: linear-gradient(transparent, var(--dark-bg));
}
.hero-full h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--bright-gold);
  margin-bottom: 0.8rem; position: relative; z-index: 1;
}
.hero-full p {
  font-size: 1.1rem; color: var(--muted-rose);
  max-width: 700px; margin-bottom: 1rem; position: relative; z-index: 1;
}

/* BANNER STRIP */
.banner-strip {
  display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap;
  margin: 2rem 0; position: relative; z-index: 1;
}
.banner-item {
  background: var(--crimson); color: var(--bright-gold);
  padding: 1rem 2rem; border-radius: 4px;
  font-family: 'Bebas Neue', cursive; font-size: 1.2rem;
  letter-spacing: 0.08em;
  display: flex; align-items: center; gap: 0.5rem;
}

/* MAIN SECTION */
.main-sec {
  max-width: 1200px; margin: 0 auto; padding: 4rem 2rem;
}
.main-sec h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--bright-gold); margin-bottom: 1rem;
  text-align: center;
}
.main-sec p {
  color: var(--muted-rose); max-width: 900px; margin: 0 auto 1rem;
  font-size: 1rem; text-align: center;
}

/* GAME BOX */
.game-box {
  max-width: 1000px; margin: 2rem auto;
  border: 3px solid var(--crimson); border-radius: 6px;
  overflow: hidden; background: #0a0202;
  box-shadow: 0 0 40px rgba(139, 0, 0, 0.3);
}
.game-box iframe { width: 100%; height: 620px; border: none; display: block; }

/* THREE COLUMN */
.three-col {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  max-width: 1200px; margin: 3rem auto; padding: 0 2rem;
}
.col-block {
  background: var(--card-red); border: 1px solid rgba(139, 0, 0, 0.3);
  border-radius: 6px; padding: 2rem;
  border-top: 3px solid var(--crimson);
}
.col-block h3 { color: var(--bright-gold); font-size: 1.3rem; margin-bottom: 0.7rem; }
.col-block p { color: var(--muted-rose); font-size: 0.93rem; }

/* FOOTER */
.site-bottom {
  background: var(--deep-red); border-top: 2px solid var(--crimson);
  text-align: center; padding: 2.5rem 2rem;
}
.help-links { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; margin-bottom: 1rem; }
.help-links a { color: var(--muted-rose); font-size: 0.88rem; }
.help-links a:hover { color: var(--bright-gold); }
.site-bottom p { color: #6b3030; font-size: 0.82rem; }

/* AGE GATE */
.age-block {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(15, 2, 2, 0.97);
  display: flex; align-items: center; justify-content: center;
}
.age-block.hidden { display: none; }
.age-inner {
  background: var(--deep-red); border: 2px solid var(--bright-gold);
  border-radius: 8px; padding: 2.5rem; max-width: 440px; text-align: center;
}
.age-inner h2 { color: var(--bright-gold); font-size: 1.8rem; margin-bottom: 1rem; }
.age-inner p { color: var(--muted-rose); margin-bottom: 1.5rem; }
.age-btns { display: flex; gap: 1rem; justify-content: center; }
.age-btns button {
  padding: 0.7rem 2.2rem; border: none; border-radius: 4px;
  font-family: 'Bebas Neue', cursive; font-size: 1.1rem;
  letter-spacing: 0.08em; cursor: pointer; transition: 0.2s;
}
.age-btns button:hover { transform: scale(1.05); }
.btn-enter { background: var(--bright-gold); color: var(--deep-red); }
.btn-leave { background: transparent; border: 2px solid var(--bright-gold) !important; color: var(--bright-gold); }

/* PAGE */
.page-wrap {
  max-width: 1200px; margin: 0 auto; padding: 6rem 2rem 4rem;
}
.page-wrap h1 { font-size: clamp(2.2rem, 4vw, 3.5rem); color: var(--bright-gold); margin-bottom: 1.5rem; }
.page-wrap h2 { font-size: 1.5rem; color: var(--crimson); margin: 2rem 0 0.7rem; letter-spacing: 0.06em; }
.page-wrap p, .page-wrap li { color: var(--muted-rose); font-size: 0.98rem; margin-bottom: 0.7rem; }
.page-wrap ul { padding-left: 1.3rem; }

@media (max-width: 768px) {
  .ham-btn { display: block; }
  .top-nav {
    position: fixed; top: 60px; left: 0; right: 0;
    background: rgba(26, 5, 5, 0.98);
    flex-direction: column; padding: 1rem 2rem; gap: 0.7rem;
    transform: translateY(-120%); transition: 0.3s;
  }
  .top-nav.visible { transform: translateY(0); }
  .three-col { grid-template-columns: 1fr; }
  .game-box iframe { height: 400px; }
  .banner-strip { flex-direction: column; align-items: center; }
}
