/* ===== FONTS ===== */
@font-face {
  font-family: 'Claire Hand';
  src: url('/fonts/clairehandregular.eot');
  src: url('/fonts/clairehandregular.eot?#iefix') format('embedded-opentype'),
       url('/fonts/clairehandregular.woff') format('woff'),
       url('/fonts/clairehandregular.svg') format('svg');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Claire Hand';
  src: url('/fonts/clairehandlight.eot');
  src: url('/fonts/clairehandlight.eot?#iefix') format('embedded-opentype'),
       url('/fonts/clairehandlight.woff') format('woff'),
       url('/fonts/clairehandlight.svg') format('svg');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Claire Hand';
  src: url('/fonts/clairehandbold.eot');
  src: url('/fonts/clairehandbold.eot?#iefix') format('embedded-opentype'),
       url('/fonts/clairehandbold.woff') format('woff'),
       url('/fonts/clairehandbold.svg') format('svg');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Burbin Casual NC';
  src: url('/fonts/burbin%20casual%20nc.eot');
  src: url('/fonts/burbin%20casual%20nc.eot?#iefix') format('embedded-opentype'),
       url('/fonts/burbin%20casual%20nc.woff') format('woff'),
       url('/fonts/burbin%20casual%20nc.svg') format('svg');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Claire Hand', Arial, Helvetica Neue, Helvetica, sans-serif;
  color: #534741;
  line-height: 1.6;
  background: #fff;
  overflow-x: hidden;
  font-size: 18px;
}
a { color: #0071BC; text-decoration: none; transition: color .2s; }
a:hover { color: #FBB03B; font-weight: bold; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }
h1, h2, h3, h4 { font-family: 'Burbin Casual NC', 'Claire Hand', sans-serif; line-height: 1.3; }

.container { max-width: 960px; margin: 0 auto; padding: 0 24px; }
.content-narrow { max-width: 860px; margin: 0 auto; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(23,49,81,0.95);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  padding: 0;
  transition: background .3s;
}
.nav-container {
  display: flex; align-items: center; justify-content: center;
  height: 50px; gap: 0;
}
.logo {
  font-family: 'Burbin Casual NC', sans-serif;
  font-size: 28px; font-weight: 400;
  color: #fff; letter-spacing: 2px;
  text-decoration: none;
  padding: 0 20px;
}
.logo:hover { color: #FBB03B; font-weight: 400; }
.logo img { height: 40px; vertical-align: middle; }
.nav-links { display: flex; gap: 0; align-items: center; }
.nav-links li { list-style: none; }
.nav-links a {
  color: #fff; font-weight: 400; font-size: 22px;
  font-family: 'Burbin Casual NC', sans-serif;
  letter-spacing: 2px;
  padding: 10px 24px;
  display: block;
  text-decoration: none;
  transition: color .2s, letter-spacing .2s;
}
.nav-links a:hover { color: #FBB03B; letter-spacing: 4px; font-weight: 400; }
.nav-links a.active { color: #FBB03B; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span {
  display: block; width: 24px; height: 2px; margin: 5px 0;
  background: #fff; transition: .3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 80px 24px 60px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(to right, #173151, #094268);
  z-index: -2;
}
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background: url('/images/drkbg-tiles.png') center/cover no-repeat;
  opacity: 0.15;
  z-index: -1;
}
.hero-content { position: relative; max-width: 800px; }
.hero h1 {
  font-family: 'Burbin Casual NC', sans-serif;
  font-size: clamp(3rem, 10vw, 6rem);
  color: #fff;
  letter-spacing: 8px;
  margin-bottom: 8px;
}
.hero-subtitle {
  font-family: 'Burbin Casual NC', sans-serif;
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  color: #FBB03B;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.hero-tagline {
  font-family: 'Burbin Casual NC', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: #fff;
  margin-bottom: 24px;
}
.hero-desc {
  font-size: 1.2rem; color: #FFF3E5;
  max-width: 600px; margin: 0 auto 32px;
  font-weight: 300;
}
.hero-image {
  margin: 20px auto;
  max-width: 400px;
}
.hero-image img {
  width: 100%;
  filter: drop-shadow(4px 4px 12px rgba(0,0,0,0.3));
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.hero-badges { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.badge {
  background: rgba(255,255,255,.12);
  color: #FFF3E5;
  padding: 8px 20px;
  border-radius: 100px;
  font-weight: 400; font-size: .95rem;
  font-family: 'Claire Hand', sans-serif;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block; padding: 12px 28px;
  border-radius: 10px; font-weight: 400; font-size: 1.1rem;
  font-family: 'Burbin Casual NC', sans-serif;
  letter-spacing: 1px;
  transition: background .2s, transform .2s;
  cursor: pointer;
  border: 2px solid #000;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); background: #545454; color: #fff; font-weight: 400; }
.btn-red { background: #ED1C24; color: #fff; }
.btn-orange { background: #FBB03B; color: #fff; }
.btn-primary { background: #ED1C24; color: #fff; }
.btn-primary:hover { background: #545454; color: #fff; }
.btn-secondary { background: #FBB03B; color: #fff; }
.btn-secondary:hover { background: #545454; color: #fff; }
.btn-blue { background: #0B5FA0; color: #fff; border-color: #0B5FA0; }
.btn-blue:hover { background: #545454; color: #fff; }
.btn-outline {
  background: transparent; color: #0071BC;
  border: 2px solid #0071BC; padding: 10px 24px;
}
.btn-outline:hover { background: #0071BC; color: #fff; }
.btn-big { font-size: 1.4rem; padding: 14px 36px; }
.btn-big .btn-sub { display: block; font-size: 0.8rem; }

/* ===== SECTIONS ===== */
.section { padding: 70px 0; }
.section-white { background: #fff; }
.section-light { background: #F2F9FF; }
.section-dk-blue {
  background: linear-gradient(to right, #173151, #094268);
  color: #FFF3E5;
  box-shadow: 6px 6px 8px rgba(0,0,0,0.15);
}
.section-teal {
  background: linear-gradient(to bottom, #85DD9C, #48BFB9);
  color: #FFF3E5;
  box-shadow: 6px 6px 8px rgba(0,0,0,0.1);
}
.section-red {
  background: linear-gradient(to right, #ED1C24, #c0392b);
  color: #fff;
}
.section-title {
  font-family: 'Burbin Casual NC', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  text-align: center; margin-bottom: 16px;
  color: inherit;
}
.section-title-orange { color: #F15A24; }
.section-title-blue { color: #005E99; }
.section-title-white { color: #fff; }
.section-intro {
  text-align: center; font-size: 1.15rem; color: inherit;
  max-width: 700px; margin: 0 auto 40px;
  font-weight: 300;
}
.section-cta { text-align: center; margin-top: 40px; }
.section-cta .btn { margin: 0 8px; }
.subsection-title { font-size: 1.5rem; text-align: center; margin: 40px 0 12px; }
.subsection-desc { text-align: center; color: #534741; margin-bottom: 28px; font-weight: 300; }

/* Page Header (subpages) */
.page-header {
  background: linear-gradient(to right, #173151, #094268);
  color: #fff; text-align: center;
  padding: 90px 24px 50px;
}
.page-header h1 {
  font-family: 'Burbin Casual NC', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 8px;
}
.page-header p { font-size: 1.1rem; opacity: .8; font-weight: 300; }

/* ===== VIDEO SECTION ===== */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0; overflow: hidden;
  border-radius: 8px;
  box-shadow: 6px 6px 8px rgba(0,0,0,0.15);
  max-width: 640px;
  margin: 0 auto;
}
.video-wrapper iframe {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}
.video-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  align-items: start;
}
.video-label {
  font-family: 'Claire Hand', sans-serif;
  font-size: 1.3rem; color: #534741;
  margin-bottom: 12px; text-align: center;
}

/* ===== FEATURES GRID ===== */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 28px; }
.feature-card {
  background: #fff; border-radius: 10px;
  padding: 32px 24px; text-align: center;
  box-shadow: 6px 6px 8px rgba(0,0,0,0.08);
  transition: transform .2s;
}
.feature-card:hover { transform: translateY(-4px); }
.feature-icon { font-size: 2.4rem; margin-bottom: 12px; }
.feature-card h3 { font-size: 1.3rem; margin-bottom: 8px; color: #005E99; }
.feature-card p { font-size: 1rem; color: #534741; font-weight: 300; }

/* ===== TROPICAL INTRO ===== */
.tropical-intro {
  text-align: center;
  padding: 60px 0;
}
.tropical-title {
  font-family: 'Burbin Casual NC', sans-serif;
}
.tropical-title-small {
  font-size: clamp(1.4rem, 3vw, 2rem);
  display: block;
}
.tropical-title-large {
  font-size: clamp(2rem, 5vw, 3rem);
  display: block;
}
.tropical-desc {
  font-size: 1.2rem;
  max-width: 800px; margin: 20px auto 0;
  text-align: justify;
  letter-spacing: 1px;
  font-weight: 400;
  line-height: 1.7;
}

/* ===== REVIEW / QUOTE ===== */
.review-section { padding: 50px 0; }
.review-card {
  max-width: 760px; margin: 0 auto;
  background: #fff; border-radius: 12px;
  padding: 32px 40px;
  box-shadow: 6px 6px 8px rgba(0,0,0,0.1);
  position: relative;
}
.review-card blockquote {
  font-size: 1.1rem; color: #736357;
  font-weight: 300;
  line-height: 1.6;
  text-align: justify;
  font-style: italic;
}
.review-card blockquote strong { font-weight: 700; }
.review-source {
  margin-top: 12px;
  font-size: .95rem; color: #0071BC;
  text-align: right;
}
.stars { color: #FBB03B; font-size: 1.4rem; letter-spacing: 2px; }
.amazon-review {
  text-align: center; margin-top: 24px;
  font-weight: 300; font-size: 1rem;
}

/* ===== BOX CONTENTS ===== */
.box-contents { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 24px; margin-bottom: 28px; }
.box-item {
  text-align: center; background: #fff; border-radius: 10px;
  padding: 28px 16px;
  box-shadow: 6px 6px 8px rgba(0,0,0,0.06);
}
.box-number { font-family: 'Burbin Casual NC', sans-serif; font-size: 2.8rem; color: #0B5FA0; }
.box-label { font-size: 1.1rem; font-weight: 700; color: #534741; }
.box-detail { font-size: .85rem; color: #888; margin-top: 4px; font-weight: 300; }

/* ===== TILES SHOWCASE ===== */
.tiles-showcase { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 16px; max-width: 750px; margin: 0 auto; }
.tile-item { text-align: center; padding: 16px; background: #fff; border-radius: 10px; box-shadow: 4px 4px 8px rgba(0,0,0,0.06); }
.tile-swatch { width: 52px; height: 52px; border-radius: 8px; margin: 0 auto 10px; box-shadow: inset 0 2px 4px rgba(0,0,0,0.15); }
.tile-color-name { display: block; font-weight: 700; font-size: .95rem; color: #534741; }
.tile-shape-name { display: block; font-size: .85rem; color: #888; font-weight: 300; }

/* ===== SETUP STEPS ===== */
.setup-steps { max-width: 700px; margin: 0 auto 32px; }
.setup-step {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 18px 0; border-bottom: 1px solid rgba(0,0,0,0.08);
}
.setup-step:last-child { border-bottom: none; }
.step-number {
  flex-shrink: 0;
  width: 44px; height: 44px; border-radius: 50%;
  background: #0B5FA0; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Burbin Casual NC', sans-serif; font-size: 1.2rem;
}
.step-content h3 { font-size: 1.1rem; margin-bottom: 4px; color: #005E99; font-family: 'Burbin Casual NC', sans-serif; }
.step-content p { font-size: 1rem; color: #534741; font-weight: 300; }

/* ===== PLAYER COUNTS ===== */
.player-counts { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.player-count {
  text-align: center; background: #E5F6FF; border-radius: 10px;
  padding: 18px 28px;
}
.count-num { display: block; font-family: 'Burbin Casual NC', sans-serif; font-size: 2rem; color: #0B5FA0; }
.count-label { display: block; font-size: .9rem; color: #534741; font-weight: 300; }
.count-players { display: block; font-size: .8rem; color: #888; margin-top: 4px; }

/* ===== TIP BOX ===== */
.tip-box {
  background: #FFF8E1; border-left: 4px solid #FBB03B;
  padding: 18px 24px; border-radius: 0 10px 10px 0;
  font-size: 1rem; color: #534741;
  font-weight: 300;
}
.tip-box strong { font-weight: 700; }
.tip-inline {
  background: #E5F6FF; border-radius: 8px;
  padding: 10px 16px; margin-top: 12px;
  font-size: .95rem; color: #0B5FA0;
  font-weight: 300;
}

/* ===== RULES GRID ===== */
.rules-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-bottom: 36px; }
.rule-card { background: #fff; border-radius: 10px; overflow: hidden; box-shadow: 6px 6px 8px rgba(0,0,0,0.08); }
.rule-header { padding: 14px 24px; color: #fff; }
.color-tile-header { background: #ED1C24; }
.wind-tile-header { background: #0B5FA0; }
.exchange-header { background: #48BFB9; }
.pass-header { background: #95a5a6; }
.rule-header h3 { font-size: 1.1rem; margin: 0; font-family: 'Burbin Casual NC', sans-serif; }
.rule-body { padding: 18px 24px; }
.rule-body p { font-size: .95rem; color: #534741; margin-bottom: 10px; font-weight: 300; }
.rule-body p:last-child { margin-bottom: 0; }
.rule-cost { font-weight: 700; color: #534741 !important; }
.rule-highlight {
  background: #FBB03B;
  color: #fff; padding: 10px 16px; border-radius: 8px;
  text-align: center; font-weight: 400; margin: 12px 0;
  font-family: 'Burbin Casual NC', sans-serif;
  font-size: 1.1rem;
}

/* ===== WIND NOTES ===== */
.wind-notes {
  background: #E5F6FF; border-radius: 10px;
  padding: 24px 28px;
}
.wind-notes h3 { font-size: 1.2rem; color: #005E99; margin-bottom: 12px; font-family: 'Burbin Casual NC', sans-serif; }
.wind-notes ul { padding-left: 20px; }
.wind-notes li { list-style: disc; font-size: .95rem; color: #534741; margin-bottom: 8px; font-weight: 300; }

/* ===== STONES ===== */
.stones-cost {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap;
  background: #F2F9FF; border-radius: 10px; padding: 28px;
  margin-bottom: 40px;
}
.cost-option { display: flex; align-items: center; gap: 10px; }
.cost-icon {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Burbin Casual NC', sans-serif; font-size: 1.1rem; color: #fff;
}
.sunstone-icon { background: #FFD154; color: #534741; }
.halfstone-icon { background: #85C1E9; color: #fff; }
.move-icon { background: #48BFB9; }
.cost-or { font-weight: 700; color: #888; font-size: .9rem; }
.cost-arrow { font-size: 1.6rem; color: #aaa; }
.cost-option span { font-weight: 400; color: #534741; font-size: .95rem; }

/* ===== EARNING GRID ===== */
.earning-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; margin-bottom: 40px; }
.earning-card {
  text-align: center; background: #fff; border-radius: 10px;
  padding: 28px 20px; box-shadow: 6px 6px 8px rgba(0,0,0,0.06);
}
.earning-name { font-family: 'Burbin Casual NC', sans-serif; font-size: 1.6rem; color: #534741; margin-bottom: 8px; }
.earning-desc { font-size: .95rem; color: #888; margin-bottom: 14px; font-weight: 300; }
.earning-reward {
  display: inline-block; padding: 8px 20px; border-radius: 100px;
  font-weight: 700; font-size: .9rem;
}
.halfstone-reward { background: #E5F6FF; color: #0B5FA0; }
.sunstone-reward { background: #FFF8E1; color: #D68910; }
.featured-earning { border: 3px solid #FBB03B; }

/* ===== SPECIAL SQUARES ===== */
.special-squares { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin-bottom: 40px; }
.special-card {
  background: #fff; border-radius: 10px; padding: 24px;
  box-shadow: 6px 6px 8px rgba(0,0,0,0.06);
}
.special-card h3 { font-size: 1.2rem; color: #005E99; margin-bottom: 8px; font-family: 'Burbin Casual NC', sans-serif; }
.special-card p { font-size: .95rem; color: #534741; font-weight: 300; }

/* ===== WIND BUYBACK ===== */
.wind-buyback {
  background: #E5F6FF; border-radius: 10px; padding: 28px;
}
.wind-buyback h3 { font-size: 1.3rem; color: #005E99; margin-bottom: 12px; font-family: 'Burbin Casual NC', sans-serif; }
.wind-buyback p { font-size: .95rem; color: #534741; font-weight: 300; }
.buyback-costs { display: flex; gap: 24px; margin: 16px 0; flex-wrap: wrap; }
.buyback-option {
  background: #fff; border-radius: 10px; padding: 12px 20px;
  box-shadow: 4px 4px 8px rgba(0,0,0,0.06);
}
.small-note { font-size: .8rem; color: #888; font-style: italic; }

/* ===== ENDING GRID ===== */
.ending-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.ending-card {
  background: #fff; border-radius: 10px; padding: 28px;
  box-shadow: 6px 6px 8px rgba(0,0,0,0.06);
}
.ending-card h3 { font-size: 1.2rem; color: #005E99; margin-bottom: 12px; font-family: 'Burbin Casual NC', sans-serif; }
.ending-card p { font-size: .95rem; color: #534741; font-weight: 300; }

/* ===== VARIANTS GRID ===== */
.variants-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.variant-card {
  background: #fff; border-radius: 10px; padding: 24px;
  box-shadow: 6px 6px 8px rgba(0,0,0,0.06);
  transition: transform .2s;
}
.variant-card:hover { transform: translateY(-3px); }
.variant-card h3 { font-size: 1.15rem; color: #0B5FA0; margin-bottom: 8px; font-family: 'Burbin Casual NC', sans-serif; }
.variant-card p { font-size: .95rem; color: #534741; margin-bottom: 8px; font-weight: 300; }
.variant-card p:last-child { margin-bottom: 0; }
.variant-card ul { padding-left: 18px; margin-top: 8px; }
.variant-card li { list-style: disc; font-size: .9rem; color: #534741; margin-bottom: 4px; font-weight: 300; }

/* ===== EXAMPLE TURN ===== */
.example-steps { max-width: 700px; margin: 0 auto 24px; }
.example-step {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 18px 0; border-bottom: 1px solid rgba(0,0,0,0.06);
}
.example-step:last-child { border-bottom: none; }
.example-num {
  flex-shrink: 0;
  width: 40px; height: 40px; border-radius: 50%;
  background: #FBB03B; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Burbin Casual NC', sans-serif;
}
.example-content h3 { font-size: 1rem; color: #534741; margin-bottom: 4px; font-family: 'Burbin Casual NC', sans-serif; }
.example-content p { font-size: .9rem; color: #534741; font-weight: 300; }
.example-result { text-align: center; font-weight: 700; color: #48BFB9; font-size: 1.1rem; font-family: 'Burbin Casual NC', sans-serif; }

/* ===== RULES TOC ===== */
.rules-toc {
  background: #E5F6FF; border-radius: 10px;
  padding: 24px 28px; margin-bottom: 40px;
}
.rules-toc h2 { font-size: 1.3rem; color: #005E99; margin-bottom: 12px; font-family: 'Burbin Casual NC', sans-serif; }
.rules-toc ul { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 6px; }
.rules-toc li { list-style: none; }
.rules-toc a { font-size: .95rem; }

/* ===== RULES ARTICLE ===== */
.rule-section { margin-bottom: 40px; }
.rule-section h2 { font-size: 1.5rem; color: #005E99; margin-bottom: 14px; padding-bottom: 8px; border-bottom: 2px solid #E5F6FF; font-family: 'Burbin Casual NC', sans-serif; }
.rule-section h3 { font-size: 1.2rem; color: #534741; margin: 18px 0 8px; font-family: 'Burbin Casual NC', sans-serif; }
.rule-section p { font-size: .95rem; color: #534741; margin-bottom: 12px; font-weight: 300; }
.rule-section ul, .rule-section ol { padding-left: 24px; margin-bottom: 16px; }
.rule-section li { list-style: disc; font-size: .95rem; color: #534741; margin-bottom: 6px; font-weight: 300; }
.rule-section ol li { list-style: decimal; }

.rules-table {
  width: 100%; border-collapse: collapse;
  margin: 16px 0; border-radius: 8px; overflow: hidden;
}
.rules-table th {
  background: #0B5FA0; color: #fff;
  padding: 10px 16px; text-align: left; font-size: .9rem;
  font-family: 'Burbin Casual NC', sans-serif;
}
.rules-table td {
  padding: 10px 16px; border-bottom: 1px solid #E5F6FF;
  font-size: .9rem; color: #534741; font-weight: 300;
}
.rules-table tr:last-child td { border-bottom: none; }
.rules-table tr:nth-child(even) td { background: #F2F9FF; }

/* ===== CTA BAR ===== */
.section-cta-bar {
  background: linear-gradient(to right, #173151, #094268);
  padding: 36px 0; text-align: center;
}
.section-cta-bar .btn { margin: 0 8px; }

/* ===== PRODUCT SECTION ===== */
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)); gap: 36px; }
.product-card {
  background: #fff; border-radius: 10px; overflow: hidden;
  box-shadow: 6px 6px 8px rgba(0,0,0,0.1);
}
.product-image { background: #F2F9FF; padding: 20px; text-align: center; }
.product-image img { max-height: 260px; object-fit: contain; }
.product-info { padding: 24px; }
.product-name {
  font-family: 'Burbin Casual NC', sans-serif;
  font-size: 1.6rem; color: #005E99; margin-bottom: 8px;
}
.product-price {
  font-family: 'Burbin Casual NC', sans-serif;
  font-size: 1.3rem; color: #ED1C24; margin-bottom: 12px;
}
.product-features { padding-left: 20px; margin-bottom: 16px; }
.product-features li { list-style: disc; font-size: .9rem; color: #534741; margin-bottom: 4px; font-weight: 300; }
.product-buttons { display: flex; flex-direction: column; gap: 8px; }
.product-buttons .btn { text-align: center; font-size: .95rem; }
.flag-icon { width: 24px; height: 16px; vertical-align: middle; margin-right: 6px; }

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { margin-bottom: 28px; }
.faq-question {
  font-family: 'Burbin Casual NC', sans-serif;
  font-size: 1.15rem; color: #005E99;
  margin-bottom: 8px;
}
.faq-answer {
  font-size: 1rem; color: #534741; font-weight: 300;
  line-height: 1.6;
}
.faq-category {
  font-family: 'Burbin Casual NC', sans-serif;
  font-size: 1.8rem; color: #F15A24;
  margin: 40px 0 20px;
  padding-bottom: 8px;
  border-bottom: 2px solid #E5F6FF;
}

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; margin-bottom: 40px; }
.contact-card {
  text-align: center; border-radius: 10px; padding: 36px 28px;
}
.contact-card.happy { background: #E5F6FF; border: 2px solid #85C1E9; }
.contact-card.support { background: #FFF8E1; border: 2px solid #FBB03B; }
.contact-emoji { font-size: 3rem; margin-bottom: 12px; }
.contact-card h2 { font-size: 1.5rem; margin-bottom: 12px; color: #005E99; font-family: 'Burbin Casual NC', sans-serif; }
.contact-card p { font-size: 1rem; color: #534741; margin-bottom: 14px; font-weight: 300; }
.contact-card ul { margin-bottom: 0; }
.contact-card li { font-size: .95rem; color: #534741; margin-bottom: 6px; font-weight: 300; }

.contact-info { max-width: 600px; margin: 0 auto; }
.contact-info-item { margin-bottom: 24px; }
.contact-info-item h3 {
  font-family: 'Burbin Casual NC', sans-serif;
  font-size: 1.2rem; color: #005E99; margin-bottom: 4px;
}
.contact-info-item p { font-size: 1rem; color: #534741; font-weight: 300; }

/* ===== SOCIAL ===== */
.social-bar {
  background: #122D4F;
  padding: 40px 0;
  text-align: center;
  color: #D9EBF7;
}
.social-bar p {
  font-size: 1rem; margin-bottom: 16px;
  font-weight: 300;
}
.social-bar .social-cta {
  font-family: 'Burbin Casual NC', sans-serif;
  font-size: 1.2rem; color: #fff; margin-bottom: 4px;
}
.social-icons { display: flex; gap: 16px; justify-content: center; align-items: center; flex-wrap: wrap; }
.social-icons a { display: block; transition: transform .2s, opacity .2s; }
.social-icons a:hover { transform: scale(1.1); opacity: .8; }
.social-icons img { width: 48px; height: 48px; border-radius: 50%; }

/* ===== FOOTER ===== */
.footer {
  background: #0D1F30; color: rgba(255,255,255,.6);
  padding: 40px 0 28px;
}
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 28px; }
.footer-logo {
  font-family: 'Burbin Casual NC', sans-serif;
  font-size: 1.5rem; color: #fff;
  letter-spacing: 4px; display: block; margin-bottom: 8px;
}
.footer-brand p { font-size: .9rem; font-weight: 300; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: rgba(255,255,255,.5); font-size: .9rem; text-decoration: none; }
.footer-links a:hover { color: #FBB03B; font-weight: 400; }
.footer-credits p { font-size: .8rem; color: rgba(255,255,255,.35); font-weight: 300; }

/* ===== GAME IMAGES ===== */
.game-image {
  text-align: center;
  margin: 24px auto;
}
.game-image img {
  border-radius: 8px;
  box-shadow: 4px 4px 12px rgba(0,0,0,0.1);
}
.game-image-rotated img {
  transform: rotate(-4deg);
}
.inline-images {
  display: flex; gap: 20px; justify-content: center; align-items: center;
  flex-wrap: wrap; margin: 24px 0;
}
.inline-images img {
  max-height: 160px;
  filter: drop-shadow(3px 3px 6px rgba(0,0,0,0.15));
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none; flex-direction: column; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(23,49,81,.98); box-shadow: 0 8px 32px rgba(0,0,0,.2);
    padding: 12px 0;
  }
  .nav-links.active { display: flex; }
  .nav-links a { padding: 12px 24px; font-size: 20px; }
  .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .hero { min-height: 85vh; padding: 80px 20px 50px; }
  .section { padding: 50px 0; }
  .page-header { padding: 80px 20px 36px; }

  .stones-cost { flex-direction: column; gap: 12px; }
  .cost-arrow { transform: rotate(90deg); }

  .rules-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .ending-grid { grid-template-columns: 1fr; }
  .special-squares { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }

  .section-cta-bar .btn { display: block; margin: 8px auto; max-width: 280px; }
  .footer-content { text-align: center; }
  .footer-links { align-items: center; }
}
