@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Open+Sans:wght@300;400;600&display=swap');

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

:root {
  --navy: #0B1D51;
  --navy-dark: #06122F;
  --amber: #FFB800;
  --amber-light: #FFD54F;
  --slate: #3A4A7A;
  --light-bg: #F4F6FC;
  --white: #FFFFFF;
  --text-dark: #1A2140;
  --text-body: #4A5578;
  --text-light: #8892B0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  background: var(--light-bg);
  color: var(--text-body);
  line-height: 1.75;
  overflow-x: hidden;
}

/* PROFESSIONAL NAV */
.pro-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: var(--white);
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  box-shadow: 0 2px 20px rgba(11, 29, 81, 0.08);
}

.q-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.q-brand svg { width: 34px; height: 34px; }

.q-brand-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--navy);
}

.pro-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.pro-links a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--text-body);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}

.pro-links a:hover { color: var(--amber); }

.sandwich {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.sandwich div {
  width: 24px;
  height: 3px;
  background: var(--navy);
  margin: 4px 0;
  border-radius: 2px;
  transition: all 0.3s;
}

.sandwich.open div:first-child { transform: rotate(45deg) translate(5px, 5px); }
.sandwich.open div:nth-child(2) { opacity: 0; }
.sandwich.open div:last-child { transform: rotate(-45deg) translate(5px, -5px); }

.side-menu {
  display: none;
  position: fixed;
  top: 65px;
  right: 0;
  width: 240px;
  background: var(--white);
  box-shadow: -4px 0 20px rgba(0,0,0,0.1);
  list-style: none;
  padding: 1rem 0;
}

.side-menu.open { display: block; }

.side-menu li { padding: 0.7rem 1.5rem; }

.side-menu a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-body);
  text-decoration: none;
}

.side-menu a:hover { color: var(--amber); }

/* HERO BANNER */
.mag-hero {
  margin-top: 65px;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--slate) 100%);
  padding: 5rem 3rem;
  position: relative;
}

.mag-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  max-width: 700px;
  margin-bottom: 1.5rem;
}

.mag-hero h1 em {
  color: var(--amber);
  font-style: normal;
}

.mag-hero p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin-bottom: 2rem;
}

.amber-tags {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.atag {
  background: rgba(255, 184, 0, 0.15);
  border: 1px solid var(--amber);
  color: var(--amber);
  padding: 0.45rem 1.2rem;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* GAME SECTION */
.game-area {
  padding: 4rem 2rem;
  max-width: 950px;
  margin: 0 auto;
  text-align: center;
}

.game-area h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: var(--navy);
  font-size: 1.6rem;
  margin-bottom: 2rem;
}

.game-display {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(11, 29, 81, 0.15);
  border: 3px solid var(--amber);
}

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

/* COLUMNS */
.col-section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.col-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: var(--navy);
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 3rem;
}

.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.col-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(11, 29, 81, 0.06);
  border-top: 4px solid var(--amber);
  transition: transform 0.3s;
}

.col-card:hover { transform: translateY(-4px); }

.col-card .icon { font-size: 2rem; margin-bottom: 1rem; }

.col-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.col-card p { font-size: 0.93rem; }

/* AMBER BANNER */
.amber-banner {
  background: var(--amber);
  padding: 3rem 2rem;
  text-align: center;
}

.amber-banner h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: var(--navy-dark);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.amber-banner p {
  color: var(--navy);
  max-width: 800px;
  margin: 0 auto;
  font-weight: 600;
}

/* INFO BOX */
.info-box {
  max-width: 850px;
  margin: 3rem auto;
  padding: 2rem;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(11, 29, 81, 0.06);
  border-left: 5px solid var(--amber);
}

.info-box h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}

.info-box ul { list-style: none; }

.info-box li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
  color: var(--text-body);
}

.info-box li::before {
  content: '●';
  position: absolute;
  left: 0;
  color: var(--amber);
  font-size: 0.6rem;
  top: 0.8rem;
}

/* TEXT PAGES */
.article-page {
  margin-top: 65px;
  padding: 4rem 2rem;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.article-page h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  color: var(--navy);
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 2.5rem;
  padding-top: 2rem;
}

.article-page h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--navy);
  font-size: 1.15rem;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
}

.article-page p { margin-bottom: 1rem; }

.article-page ul { margin: 0.5rem 0 1.5rem 1.5rem; }
.article-page li { margin-bottom: 0.5rem; }

/* PLAY PAGE */
.play-page {
  margin-top: 65px;
  padding: 3rem 2rem;
  text-align: center;
}

.play-page h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  color: var(--navy);
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.play-page > p {
  max-width: 700px;
  margin: 0 auto 2rem;
}

.play-tip {
  max-width: 700px;
  margin: 2rem auto;
  background: var(--white);
  border-left: 4px solid var(--amber);
  padding: 1.2rem 1.5rem;
  border-radius: 0 8px 8px 0;
  text-align: left;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

/* FOOTER */
.corp-footer {
  background: var(--navy-dark);
  padding: 2.5rem 2rem;
  text-align: center;
}

.corp-footer .cf-brand {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: var(--amber);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.cf-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.cf-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.3s;
}

.cf-links a:hover { color: var(--amber); }

.rg-section {
  border-top: 1px solid rgba(255, 184, 0, 0.15);
  padding-top: 1rem;
  margin-top: 1rem;
}

.rg-section p {
  font-size: 0.75rem;
  color: var(--text-light);
  opacity: 0.6;
  margin-bottom: 0.4rem;
}

.rg-section a {
  color: var(--amber);
  text-decoration: none;
  font-size: 0.75rem;
  margin: 0 0.5rem;
}

.rg-section a:hover { text-decoration: underline; }

/* AGE MODAL */
.age-modal {
  position: fixed;
  inset: 0;
  background: rgba(6, 18, 47, 0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.age-modal.hidden { display: none; }

.modal-box {
  background: var(--white);
  border-radius: 16px;
  padding: 3rem;
  max-width: 440px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.modal-box h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: var(--navy);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.modal-box p { color: var(--text-body); margin-bottom: 2rem; }

.modal-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.mb-yes, .mb-no {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.7rem 2rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s;
}

.mb-yes {
  background: var(--amber);
  color: var(--navy-dark);
}

.mb-no {
  background: transparent;
  border: 2px solid var(--navy);
  color: var(--navy);
}

.mb-yes:hover, .mb-no:hover { transform: scale(1.05); }

.no-entry {
  display: none;
  color: #D32F2F;
  margin-top: 1rem;
  font-weight: 700;
}

@media (max-width: 768px) {
  .pro-links { display: none; }
  .sandwich { display: block; }

  .mag-hero { padding: 3rem 1.5rem; }
  .mag-hero h1 { font-size: 2rem; }

  .three-col { grid-template-columns: 1fr; }

  .article-page h1, .play-page h1 { font-size: 1.6rem; }

  .cf-links { flex-direction: column; gap: 0.5rem; }

  .pro-header { padding: 0 1.5rem; }
}
