/* ============================================================
   Yukon Gold Casino — Satellite Site
   style.css  ·  prefix: yg-
   Mobile-first · breakpoints 480 / 768 / 1024 / 1280
   ============================================================ */

:root {
  /* Brand colors */
  --yg-bg:            #02043b;   /* deep navy page background */
  --yg-bg-2:          #061544;   /* royal navy */
  --yg-bg-3:          #0a1f5e;   /* lighter navy */
  --yg-header-bg:     #000000;   /* black header */
  --yg-gold:          #ffc855;   /* primary gold accent */
  --yg-gold-2:        #e6ae5a;   /* deeper gold */
  --yg-gold-link:     #d37806;   /* link / underline */
  --yg-green:         #2a814c;   /* CTA green */
  --yg-green-light:   #3fa55f;
  --yg-green-dark:    #1a6d38;
  --yg-green-edge:    #0c5a26;
  --yg-red:           #8c1113;   /* bonus panel red */
  --yg-red-light:     #a01618;
  --yg-red-dark:      #6e0f11;
  --yg-card:          #112366;   /* feature card blue */
  --yg-card-2:        #082499;
  --yg-frame:         #c79a3f;   /* gold frame */
  --yg-frame-dark:    #8a6a23;
  --yg-text:          #ffffff;
  --yg-text-muted:    rgba(255, 255, 255, 0.82);
  --yg-text-dim:      rgba(255, 255, 255, 0.6);

  /* Type */
  --yg-font-head: "Oswald", "Arial Narrow", Arial, sans-serif;
  --yg-font-body: "Open Sans", Arial, Helvetica, sans-serif;

  /* Shape */
  --yg-radius:        12px;
  --yg-radius-pill:   30px;
  --yg-header-h:      88px;
  --yg-maxw:          1240px;

  /* Motion */
  --yg-ease: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--yg-font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--yg-text);
  background:
    radial-gradient(1200px 600px at 50% -8%, #1a2c7a 0%, transparent 60%),
    linear-gradient(180deg, #02032c 0%, var(--yg-bg) 38%, var(--yg-bg-2) 100%);
  background-attachment: fixed;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: var(--yg-gold-link); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 {
  font-family: var(--yg-font-head);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 0.5em;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.yg-wrap { width: 100%; max-width: var(--yg-maxw); margin: 0 auto; padding: 0 16px; }

/* ============================================================
   HEADER
   ============================================================ */
.yg-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--yg-header-bg);
  border-bottom: 1px solid rgba(255, 200, 85, 0.18);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
}
.yg-header__inner {
  max-width: var(--yg-maxw);
  margin: 0 auto;
  min-height: var(--yg-header-h);
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.yg-logo { display: flex; align-items: center; flex: 0 0 auto; }
.yg-logo img {
  height: 60px; width: auto;
  border-radius: 8px;
}

/* burger toggle (CSS-only) */
.yg-nav-toggle { position: absolute; opacity: 0; pointer-events: none; }
.yg-burger {
  margin-left: auto;
  width: 46px; height: 46px;
  display: inline-flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 5px;
  cursor: pointer; border-radius: 8px;
  border: 1px solid rgba(255, 200, 85, 0.3);
}
.yg-burger span {
  width: 24px; height: 3px; border-radius: 2px;
  background: var(--yg-gold); transition: var(--yg-ease);
}
.yg-nav-toggle:checked ~ .yg-burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.yg-nav-toggle:checked ~ .yg-burger span:nth-child(2) { opacity: 0; }
.yg-nav-toggle:checked ~ .yg-burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.yg-nav {
  flex-basis: 100%;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--yg-ease);
}
.yg-nav__list {
  overflow: hidden;
  display: flex; flex-direction: column;
  list-style: none; margin: 0; padding: 0;
}
.yg-nav-toggle:checked ~ .yg-nav { grid-template-rows: 1fr; }
.yg-nav a {
  display: block;
  padding: 13px 6px;
  color: var(--yg-text);
  font-family: var(--yg-font-head);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-size: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color var(--yg-ease);
}
.yg-nav a:hover { color: var(--yg-gold); text-decoration: none; }
.yg-nav a.is-active { color: var(--yg-gold); }
.yg-nav a.is-active::after {
  content: ""; display: block;
  width: 28px; height: 2px; margin-top: 3px;
  background: var(--yg-gold-link);
}

.yg-header__cta { display: flex; gap: 8px; flex-basis: 100%; }
.yg-header__cta .yg-btn { flex: 1; }

/* ============================================================
   BUTTONS
   ============================================================ */
.yg-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 44px; padding: 10px 22px;
  font-family: var(--yg-font-head);
  font-weight: 600; font-size: 15px;
  text-transform: uppercase; letter-spacing: 0.8px;
  border-radius: var(--yg-radius-pill);
  cursor: pointer; border: none;
  transition: transform var(--yg-ease), box-shadow var(--yg-ease), filter var(--yg-ease);
  text-align: center;
}
.yg-btn:hover { text-decoration: none; }

.yg-btn--register {
  color: #fff;
  background: linear-gradient(180deg, var(--yg-green-light) 0%, var(--yg-green) 45%, var(--yg-green-dark) 100%);
  border: 2px solid var(--yg-green-edge);
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.5);
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.4), inset 0 -3px 6px rgba(0, 0, 0, 0.3), 0 5px 12px rgba(0, 0, 0, 0.4);
}
.yg-btn--register:hover { transform: translateY(-2px); filter: brightness(1.07); }

.yg-btn--ghost {
  color: var(--yg-gold);
  background: transparent;
  border: 2px solid var(--yg-gold-2);
}
.yg-btn--ghost:hover { background: rgba(255, 200, 85, 0.12); transform: translateY(-2px); }

/* Big glossy SIGN UP pill */
.yg-btn--signup {
  width: 100%;
  min-height: 56px;
  font-size: clamp(20px, 5vw, 28px);
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  background: linear-gradient(180deg, var(--yg-green-light) 0%, var(--yg-green) 48%, var(--yg-green-dark) 100%);
  border: 3px solid var(--yg-green-edge);
  border-radius: var(--yg-radius-pill);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.55);
  box-shadow: inset 0 3px 0 rgba(255, 255, 255, 0.45), inset 0 -5px 10px rgba(0, 0, 0, 0.35), 0 8px 18px rgba(0, 0, 0, 0.45);
}
.yg-btn--signup:hover { transform: translateY(-2px) scale(1.01); filter: brightness(1.08); }
.yg-btn--signup .yg-arrow { font-size: 0.8em; opacity: 0.95; }

/* ============================================================
   OFFICIAL BAND
   ============================================================ */
.yg-band {
  text-align: center;
  background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.2) 100%);
  padding: 12px 16px;
}
.yg-band p {
  margin: 0;
  font-family: var(--yg-font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--yg-gold);
  font-size: clamp(13px, 3.5vw, 17px);
}

/* ============================================================
   HERO
   ============================================================ */
.yg-hero { padding: 26px 0 8px; }
.yg-hero__headline { text-align: center; max-width: 900px; margin: 0 auto 26px; }
.yg-hero__headline h1 {
  font-size: clamp(26px, 6vw, 44px);
  color: var(--yg-gold);
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.4);
  margin-bottom: 12px;
}
.yg-hero__headline p {
  color: var(--yg-text-muted);
  font-size: clamp(15px, 3.6vw, 18px);
  margin: 0 auto;
  max-width: 760px;
  text-transform: none;
  font-family: var(--yg-font-body);
}

.yg-hero__grid { display: grid; gap: 18px; }

/* Bonus panel with gold bulb frame */
.yg-bonus {
  position: relative;
  background: linear-gradient(180deg, var(--yg-red-light) 0%, var(--yg-red) 55%, var(--yg-red-dark) 100%);
  border-radius: 16px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 0 0 7px var(--yg-frame), 0 0 0 9px var(--yg-frame-dark), 0 16px 40px rgba(0, 0, 0, 0.55);
}
.yg-bonus::before {
  content: "";
  position: absolute; inset: -9px;
  border-radius: 18px;
  padding: 7px;
  background-image: radial-gradient(circle, #fff7da 0 1.6px, #f0cf72 1.6px 3.2px, transparent 3.6px);
  background-size: 17px 17px;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask-composite: exclude;
  pointer-events: none;
}
.yg-bonus__label {
  display: inline-block;
  border: 2px solid #fff;
  border-radius: 8px;
  padding: 8px 18px;
  font-family: var(--yg-font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: clamp(15px, 4vw, 20px);
  color: #fff;
  margin-bottom: 14px;
}
.yg-bonus__num {
  font-family: var(--yg-font-head);
  font-weight: 700;
  font-size: clamp(72px, 22vw, 130px);
  line-height: 0.9;
  color: var(--yg-gold);
  text-shadow: 0 4px 0 rgba(110, 15, 17, 0.6), 0 6px 14px rgba(0, 0, 0, 0.5);
  margin: 4px 0;
}
.yg-bonus__sub {
  font-family: var(--yg-font-head);
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  font-size: clamp(22px, 6vw, 36px);
  line-height: 1.05;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
  margin-bottom: 6px;
}
.yg-bonus__sub em {
  display: block;
  color: var(--yg-gold);
  font-style: normal;
}
.yg-bonus__cta { margin-top: 18px; }

/* Hero media slot */
.yg-hero__cta-row { margin-top: 18px; }
.yg-hero__media { min-height: 280px; display: flex; align-items: center; justify-content: center; }
.yg-hero__media:empty { border: 2px dashed rgba(255, 200, 85, 0.35); border-radius: 16px; }
.yg-hero__img {
  width: 100%;
  height: 100%;
  max-height: 480px;
  object-fit: contain;
  border-radius: 16px;
}

/* ============================================================
   MEDIA PLACEHOLDERS
   ============================================================ */
.yg-media {
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  min-height: 240px;
  border-radius: var(--yg-radius);
  border: 2px dashed rgba(255, 200, 85, 0.55);
  background:
    repeating-linear-gradient(45deg, rgba(255, 200, 85, 0.04) 0 12px, transparent 12px 24px),
    linear-gradient(135deg, var(--yg-bg-3) 0%, var(--yg-bg-2) 100%);
  color: var(--yg-gold);
  padding: 20px;
  overflow: hidden;
}
.yg-media__id {
  font-family: var(--yg-font-head);
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 14px;
  word-break: break-word;
}
.yg-media__id small {
  display: block;
  font-family: var(--yg-font-body);
  color: var(--yg-text-dim);
  letter-spacing: 0;
  font-weight: 400;
  margin-top: 6px;
  text-transform: none;
}
.yg-media--hero { min-height: 280px; border-radius: 16px; box-shadow: 0 0 0 4px rgba(255, 200, 85, 0.25); }
.yg-media--wide { min-height: 200px; }

/* ============================================================
   FEATURE CARDS
   ============================================================ */
.yg-features { padding: 28px 0 8px; }
.yg-features__grid { display: grid; gap: 16px; }
.yg-feature {
  background: linear-gradient(160deg, var(--yg-card) 0%, var(--yg-card-2) 120%);
  border: 1px solid rgba(255, 200, 85, 0.35);
  border-radius: var(--yg-radius);
  padding: 22px 20px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.4);
  transition: transform var(--yg-ease), box-shadow var(--yg-ease);
}
.yg-feature:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(0, 0, 0, 0.55); }
.yg-feature h3 {
  color: var(--yg-gold);
  font-size: clamp(20px, 5vw, 26px);
  margin-bottom: 8px;
}
.yg-feature p { margin: 0; color: var(--yg-text-muted); font-size: 15px; }

/* ============================================================
   MAIN CONTENT
   ============================================================ */
.yg-main { padding: 34px 0; }
.yg-intro {
  font-size: clamp(16px, 3.6vw, 18px);
  color: var(--yg-text-muted);
  max-width: 1000px;
  margin: 0 auto 36px;
}
.yg-intro p { margin: 0 0 16px; }

.yg-section { margin-bottom: 42px; }
.yg-section h2 {
  color: var(--yg-gold);
  font-size: clamp(22px, 5vw, 32px);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(255, 200, 85, 0.25);
}
.yg-section p { margin: 0 0 16px; color: var(--yg-text-muted); }
.yg-section__media { margin: 22px 0; }
.yg-section__media--standalone { padding: 8px 0 0; }
.yg-media-block {
  border-radius: var(--yg-radius);
  overflow: hidden;
  box-shadow: 0 0 0 3px rgba(255, 200, 85, 0.25), 0 14px 30px rgba(0, 0, 0, 0.45);
}
.yg-media-block img { width: 100%; height: auto; display: block; }
.yg-media-block--portrait { max-width: 360px; margin: 0 auto; }

/* Payment logos */
.yg-pay {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.yg-pay__tile {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 10px;
  padding: 14px 16px;
  min-height: 72px;
  transition: transform var(--yg-ease);
}
.yg-pay__tile:hover { transform: translateY(-3px); }
.yg-pay__tile img { max-height: 52px; width: auto; object-fit: contain; }

/* Screenshots */
.yg-shot {
  width: 100%;
  height: auto;
  border-radius: var(--yg-radius);
  border: 1px solid rgba(255, 200, 85, 0.35);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
}

/* Games grid */
.yg-games {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.yg-game {
  margin: 0;
  border-radius: var(--yg-radius);
  overflow: hidden;
  border: 1px solid rgba(255, 200, 85, 0.35);
  background: linear-gradient(160deg, var(--yg-bg-3) 0%, var(--yg-bg-2) 120%);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.4);
  transition: transform var(--yg-ease), box-shadow var(--yg-ease);
}
.yg-game:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(0, 0, 0, 0.55); }
.yg-game img { width: 100%; height: auto; aspect-ratio: 16 / 10; object-fit: cover; display: block; }
.yg-game figcaption {
  padding: 9px 10px;
  text-align: center;
  font-family: var(--yg-font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 13px;
  color: var(--yg-gold);
}

/* Lists */
.yg-list { list-style: none; margin: 18px 0; padding: 0; display: grid; gap: 10px; }
.yg-list li {
  position: relative;
  padding: 10px 14px 10px 40px;
  background: rgba(255, 255, 255, 0.04);
  border-left: 3px solid var(--yg-gold);
  border-radius: 6px;
  color: var(--yg-text);
}
.yg-list li::before {
  content: "★";
  position: absolute; left: 14px; top: 10px;
  color: var(--yg-gold);
  font-size: 14px;
}

/* Tables */
.yg-table-wrap { overflow-x: auto; margin: 20px 0; border-radius: var(--yg-radius); border: 1px solid rgba(255, 200, 85, 0.25); }
.yg-table { width: 100%; border-collapse: collapse; min-width: 420px; }
.yg-table th, .yg-table td { padding: 12px 16px; text-align: left; font-size: 15px; }
.yg-table thead th {
  background: linear-gradient(180deg, var(--yg-gold) 0%, var(--yg-gold-2) 100%);
  color: #3a1a00;
  font-family: var(--yg-font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.yg-table tbody tr { background: rgba(255, 255, 255, 0.03); }
.yg-table tbody tr:nth-child(even) { background: rgba(255, 255, 255, 0.07); }
.yg-table tbody td { border-top: 1px solid rgba(255, 255, 255, 0.07); color: var(--yg-text-muted); }
.yg-table tbody td:first-child { color: var(--yg-text); font-weight: 600; }

/* ============================================================
   FAQ
   ============================================================ */
.yg-faq { padding: 8px 0 40px; }
.yg-faq h2 {
  text-align: center;
  color: var(--yg-gold);
  font-size: clamp(24px, 6vw, 34px);
  margin-bottom: 24px;
}
.yg-faq__item {
  background: linear-gradient(160deg, var(--yg-card) 0%, var(--yg-bg-2) 130%);
  border: 1px solid rgba(255, 200, 85, 0.25);
  border-radius: var(--yg-radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.yg-faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 48px 16px 18px;
  position: relative;
  font-family: var(--yg-font-head);
  font-weight: 500;
  font-size: clamp(16px, 4vw, 19px);
  color: var(--yg-text);
}
.yg-faq__item summary::-webkit-details-marker { display: none; }
.yg-faq__item summary::after {
  content: "+";
  position: absolute; right: 18px; top: 50%; transform: translateY(-50%);
  font-size: 26px; color: var(--yg-gold);
  transition: transform var(--yg-ease);
}
.yg-faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.yg-faq__item summary:hover { color: var(--yg-gold); }
.yg-faq__answer { padding: 0 18px 18px; color: var(--yg-text-muted); }

/* ============================================================
   FOOTER
   ============================================================ */
.yg-footer {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, #000 100%);
  border-top: 2px solid rgba(255, 200, 85, 0.25);
  padding: 34px 0 24px;
  margin-top: 20px;
}
.yg-footer__top {
  display: flex; flex-direction: column; gap: 22px; align-items: center;
  text-align: center;
}
.yg-footer__logo img { height: 64px; border-radius: 8px; }
.yg-footer__links { display: flex; flex-wrap: wrap; gap: 8px 22px; justify-content: center; list-style: none; margin: 0; padding: 0; }
.yg-footer__links a {
  color: var(--yg-text-muted);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: var(--yg-font-head);
  font-weight: 500;
}
.yg-footer__links a:hover { color: var(--yg-gold); text-decoration: none; }
.yg-footer__note {
  max-width: 760px;
  margin: 22px auto 0;
  text-align: center;
  font-size: 12.5px;
  color: var(--yg-text-dim);
  line-height: 1.6;
}
.yg-footer__age {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  border: 2px solid var(--yg-gold);
  color: var(--yg-gold);
  font-family: var(--yg-font-head); font-weight: 700;
  margin-bottom: 10px;
}
.yg-footer__copy {
  text-align: center;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  color: var(--yg-text-dim);
}

/* ============================================================
   BREAKPOINTS
   ============================================================ */
@media (min-width: 480px) {
  .yg-header__cta { flex-basis: auto; margin-left: auto; }
  .yg-header__cta .yg-btn { flex: 0 0 auto; }
}

@media (min-width: 768px) {
  body { font-size: 17px; }
  .yg-features__grid { grid-template-columns: repeat(3, 1fr); }
  .yg-games { grid-template-columns: repeat(3, 1fr); }
  .yg-pay { grid-template-columns: repeat(3, 1fr); }
  .yg-hero__media, .yg-media--hero { min-height: 380px; }
  .yg-footer__top { flex-direction: row; justify-content: space-between; text-align: left; }
  .yg-footer__links { justify-content: flex-end; }
}

@media (min-width: 1024px) {
  .yg-burger { display: none; }
  .yg-nav {
    flex-basis: auto;
    grid-template-rows: 1fr;
    margin: 0 auto;
  }
  .yg-nav__list { flex-direction: row; gap: 6px; overflow: visible; }
  .yg-nav a { border-bottom: none; padding: 8px 14px; }
  .yg-nav a.is-active::after { margin: 3px auto 0; }
  .yg-header__cta { margin-left: 0; flex-basis: auto; }

  .yg-hero__grid { grid-template-columns: 5fr 7fr; align-items: stretch; gap: 22px; }
  .yg-bonus { display: flex; flex-direction: column; justify-content: center; }
  .yg-hero__media, .yg-media--hero { min-height: 440px; height: 100%; }
}

@media (min-width: 1280px) {
  .yg-wrap, .yg-header__inner { padding-left: 24px; padding-right: 24px; }
  .yg-hero__media, .yg-media--hero { min-height: 480px; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto; }
}
