@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  --bg-dark: #070c1b;
  --bg-surface: #0e172e;
  --bg-card: #131f3d;
  --bg-card-hover: #19274c;
  --bg-alt: #0a1226;
  
  --primary-gold: #e8c766;
  --primary-gold-hover: #d1b152;
  --gold-accent: #c9a24b;
  --emerald-green: #00a86b;
  --emerald-hover: #008f5b;
  
  --text-main: #f0f4f8;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  
  --border-light: rgba(232, 199, 102, 0.25);
  --border-glass: rgba(255, 255, 255, 0.08);
  
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.25);
  --shadow-glow: 0 0 25px rgba(232, 199, 102, 0.15);
  --shadow-emerald: 0 0 25px rgba(0, 168, 107, 0.2);
  
  --header-height: 72px;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.6;
  width: 100%;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden !important;
  touch-action: none;
}

/* Accessibility Focus States (a11y) */
:focus-visible {
  outline: 3px solid var(--primary-gold) !important;
  outline-offset: 3px !important;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--primary-gold);
  color: #070c1b;
  padding: 12px 20px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  z-index: 100000;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography & Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-main);
}

h1 b, h2 b, span.gold {
  color: var(--primary-gold);
  background: linear-gradient(135deg, #f7dc8a 0%, #c9a24b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-head {
  text-align: center;
  margin-bottom: 48px;
}

.section-head h2 {
  font-size: 2.4rem;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.section-head p.sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
}

.section {
  padding: 96px 0;
  position: relative;
  content-visibility: auto;
  contain-intrinsic-size: 1px 800px;
}

.section--alt {
  background-color: var(--bg-alt);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  min-height: 44px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: all var(--transition-normal);
  white-space: nowrap;
  cursor: pointer;
  user-select: none;
}

.btn--primary {
  background: linear-gradient(135deg, #e8c766 0%, #c9a24b 100%);
  color: #070c1b;
  box-shadow: 0 4px 15px rgba(232, 199, 102, 0.3);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 199, 102, 0.45);
  background: linear-gradient(135deg, #f0d47a 0%, #d8ae53 100%);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-main);
  border: 1px solid var(--border-glass);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--border-light);
}

/* Pills */
.rap-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.825rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.rap-pill--gold {
  background: rgba(232, 199, 102, 0.12);
  color: var(--primary-gold);
  border: 1px solid rgba(232, 199, 102, 0.3);
}

.rap-pill--age {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Header & Nav */
.rap-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(7, 12, 27, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-glass);
  z-index: 1000;
}

.rap-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.rap-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-main);
}

.rap-brand__logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid var(--border-light);
}

/* Desktop Nav */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-desktop a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 8px 0;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.nav-desktop a:hover {
  color: var(--primary-gold);
}

/* Burger Button (Triggered <= 991px) */
.rap-burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 44px;
  height: 44px;
  padding: 10px;
  cursor: pointer;
  z-index: 1010;
}

.rap-burger span {
  display: block;
  width: 100%;
  height: 2.5px;
  background-color: var(--text-main);
  border-radius: 4px;
  transition: all var(--transition-normal);
}

.rap-burger.is-active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
  background-color: var(--primary-gold);
}

.rap-burger.is-active span:nth-child(2) {
  opacity: 0;
}

.rap-burger.is-active span:nth-child(3) {
  transform: translateY(-9.5px) rotate(-45deg);
  background-color: var(--primary-gold);
}

/* Mobile Navigation Drawer - FULLY VISIBLE & NO SCROLL */
.nav-mobile {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  height: calc(100dvh - var(--header-height));
  background: rgba(7, 12, 27, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(10px, 1.8vh, 20px) clamp(16px, 4vw, 24px);
  gap: clamp(4px, 1vh, 10px);
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease, visibility 0.35s ease;
  overflow: hidden !important; /* STRICTLY NO SCROLLBAR */
  z-index: 999;
}

.nav-mobile.is-active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.nav-mobile a {
  font-family: var(--font-heading);
  font-size: clamp(0.9rem, 2vh, 1.1rem);
  font-weight: 600;
  color: var(--text-main);
  padding: clamp(6px, 1vh, 10px) 16px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
}

.nav-mobile a:hover {
  background: rgba(232, 199, 102, 0.12);
  color: var(--primary-gold);
  border-color: var(--border-light);
}

.nav-mobile .btn {
  margin-top: 2px;
  padding: clamp(8px, 1.4vh, 12px) 24px;
  font-size: clamp(0.85rem, 1.8vh, 1rem);
  width: 100%;
}

/* Hero Section */
.rap-hero {
  padding-top: calc(var(--header-height) + 56px);
  padding-bottom: 56px;
  background: radial-gradient(circle at 75% 25%, rgba(232, 199, 102, 0.09) 0%, transparent 60%);
  content-visibility: visible;
}

.rap-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.rap-hero__pills {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.rap-hero__left h1 {
  font-size: 3.4rem;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.rap-hero__tag {
  font-size: 1.3rem;
  color: var(--primary-gold);
  font-family: var(--font-heading);
  font-weight: 600;
  margin-bottom: 16px;
}

.rap-hero__disc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.65;
  background: rgba(255, 255, 255, 0.03);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--primary-gold);
}

.rap-hero__card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-glow);
  border: 1px solid var(--border-light);
  aspect-ratio: 1 / 1;
}

.rap-hero__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rap-hero__strip-wrap {
  width: 100%;
  overflow: hidden;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  padding: 14px 0;
  margin-top: 40px;
}

.rap-hero__strip {
  display: flex;
  white-space: nowrap;
  gap: 40px;
  animation: scrollTicker 30s linear infinite;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  color: var(--primary-gold);
}

.rap-hero__strip span {
  color: var(--text-dim);
}

@keyframes scrollTicker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Story Section */
.rap-story__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.rap-story__body p {
  color: var(--text-muted);
  font-size: 1.025rem;
  margin-bottom: 18px;
  line-height: 1.75;
}

.rap-story__card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.rap-quote {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text-main);
  margin-bottom: 24px;
  line-height: 1.5;
  border-left: 3px solid var(--primary-gold);
  padding-left: 16px;
}

.rap-quote cite {
  display: block;
  font-size: 0.875rem;
  font-style: normal;
  color: var(--primary-gold);
  margin-top: 10px;
  font-weight: 600;
}

.rap-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.rap-tag {
  background: rgba(255, 255, 255, 0.05);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  color: var(--text-muted);
  border: 1px solid var(--border-glass);
}

/* Mascot Section */
.rap-mascot__grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: center;
}

.rap-mascot__fig {
  width: 320px;
  height: 320px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--primary-gold);
  box-shadow: var(--shadow-glow);
}

.rap-mascot__fig img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rap-mascot__body h2 {
  font-size: 2.5rem;
  margin-bottom: 8px;
}

.rap-mascot__role {
  color: var(--primary-gold);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.rap-mascot__body p {
  color: var(--text-muted);
  font-size: 1.025rem;
  margin-bottom: 16px;
}

/* Team Grid */
.rap-team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 24px;
}

.rap-member {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid var(--border-glass);
  transition: all var(--transition-normal);
}

.rap-member:hover {
  transform: translateY(-6px);
  border-color: var(--border-light);
  background: var(--bg-card-hover);
}

.rap-member img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px auto;
  border: 2px solid var(--primary-gold);
}

.rap-member h3 {
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.rap-member__role {
  font-size: 0.85rem;
  color: var(--primary-gold);
  font-weight: 600;
  margin-bottom: 12px;
}

.rap-member p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Values Grid */
.rap-values__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.rap-value {
  background: var(--bg-card);
  padding: 32px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-glass);
  transition: all var(--transition-normal);
}

.rap-value:hover {
  transform: translateY(-5px);
  border-color: var(--border-light);
  box-shadow: var(--shadow-glow);
}

.rap-value__ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(232, 199, 102, 0.1);
  color: var(--primary-gold);
  margin-bottom: 20px;
}

.rap-value__ic svg {
  width: 26px;
  height: 26px;
}

.rap-value h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.rap-value p {
  color: var(--text-muted);
  font-size: 0.925rem;
  line-height: 1.6;
}

/* Playable Social Casino Game Section */
.rap-play {
  text-align: center;
}

.rap-play__bal {
  font-size: 1.3rem;
  font-family: var(--font-heading);
  margin-bottom: 24px;
  color: var(--text-muted);
}

.rap-play__bal b {
  color: var(--primary-gold);
  font-size: 1.6rem;
}

/* Embedded Game Iframe Container */
.rap-frame {
  position: relative;
  width: 100%;
  max-width: 960px;
  height: 600px;
  margin: 0 auto 24px auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--border-light);
  box-shadow: var(--shadow-glow);
  background: var(--bg-card);
}

.rap-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.rap-play__disc {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-top: 20px;
}

/* Lounge Section */
.rap-lounge__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.rap-lounge__body h2 {
  font-size: 2.5rem;
  margin-bottom: 8px;
}

.rap-lounge__role {
  color: var(--primary-gold);
  font-weight: 600;
  margin-bottom: 24px;
}

.rap-lounge__body p {
  color: var(--text-muted);
  font-size: 1.025rem;
  margin-bottom: 16px;
}

.rap-lounge__card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-glow);
  aspect-ratio: 1 / 1;
}

.rap-lounge__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* How Free Play Works Steps */
.rap-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.rap-step {
  background: var(--bg-card);
  padding: 36px 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-glass);
}

.rap-step__n {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(232, 199, 102, 0.2);
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}

.rap-step h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.rap-step p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsible Gaming */
.rap-resp__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.rap-resp__card {
  background: var(--bg-card);
  padding: 36px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-glass);
}

.rap-resp__card--wide {
  grid-column: span 2;
  border-color: var(--border-light);
  background: linear-gradient(135deg, var(--bg-card) 0%, #172448 100%);
}

.rap-resp__card h3 {
  font-size: 1.35rem;
  margin-bottom: 16px;
  color: var(--primary-gold);
}

.rap-resp__card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 16px;
  line-height: 1.7;
}

.rap-resp__card a {
  color: #4ade80;
  font-weight: 600;
  text-decoration: underline;
}

/* FAQ Accordion */
.rap-faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rap-faq__item {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-glass);
  overflow: hidden;
}

.rap-faq__item[open] {
  border-color: var(--border-light);
}

.rap-faq__item summary {
  padding: 20px 24px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  min-height: 44px;
}

.rap-faq__item summary::-webkit-details-marker {
  display: none;
}

.rap-faq__ar {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--primary-gold);
  border-bottom: 2px solid var(--primary-gold);
  transform: rotate(45deg);
  transition: transform var(--transition-fast);
}

.rap-faq__item[open] .rap-faq__ar {
  transform: rotate(-135deg);
}

.rap-faq__a {
  padding: 0 24px 20px 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 16px;
}

/* Footer */
.rap-footer {
  background: #040711;
  border-top: 1px solid var(--border-glass);
  padding-top: 64px;
  margin-top: auto;
}

.rap-footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.rap-footer__brand p {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-top: 16px;
  max-width: 480px;
  line-height: 1.6;
}

.rap-footer__co {
  font-size: 0.825rem !important;
  color: var(--text-dim) !important;
  margin-top: 12px;
}

.rap-footer h4 {
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: var(--primary-gold);
}

.rap-footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rap-footer__links a {
  color: var(--text-muted);
  font-size: 0.875rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.rap-footer__links a:hover {
  color: var(--text-main);
}

.rap-footer__bar {
  border-top: 1px solid var(--border-glass);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-dim);
  flex-wrap: wrap;
  gap: 16px;
}

.rap-rg {
  background: rgba(239, 68, 68, 0.06);
  border-top: 1px solid rgba(239, 68, 68, 0.2);
  padding: 20px 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}

.rap-rg__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.rap-rg__lines {
  display: flex;
  gap: 20px;
  margin: 4px 0;
}

.rap-rg__lines a {
  color: #f87171;
  font-weight: 600;
  text-decoration: underline;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

/* 18+ Age Gate Modal */
.rap-modal {
  position: fixed;
  inset: 0;
  background: rgba(4, 7, 17, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 20000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.rap-modal.is-active {
  opacity: 1;
  visibility: visible;
}

.rap-modal__box {
  background: var(--bg-card);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-glow);
}

.rap-modal__box svg {
  width: 52px;
  height: 52px;
  color: var(--primary-gold);
  margin-bottom: 16px;
}

.rap-modal__box h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.rap-modal__box p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.rap-modal__btns {
  display: flex;
  gap: 12px;
}

.rap-modal__btns .btn {
  flex: 1;
}

.rap-modal__deny {
  color: #f87171;
  font-size: 0.9rem;
  margin-top: 16px;
  font-weight: 600;
}

/* COOKIE BANNER */
.rap-cookie {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 650px;
  margin: 0 auto;
  background: #111a36;
  border: 2px solid var(--primary-gold);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 999999 !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  pointer-events: auto !important;
}

.rap-cookie p {
  font-size: 0.875rem;
  color: var(--text-main);
  line-height: 1.5;
}

.rap-cookie a {
  color: var(--primary-gold);
  text-decoration: underline;
}

.rap-cookie__btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.rap-cookie__btns button {
  cursor: pointer !important;
  pointer-events: auto !important;
}

/* Page Content (Legal Pages) */
.page-content {
  padding-top: calc(var(--header-height) + 48px);
  padding-bottom: 80px;
}

.page-content__box {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 48px;
  line-height: 1.8;
}

.page-content__box h1 {
  font-size: 2.6rem;
  margin-bottom: 16px;
}

.page-content__box h2 {
  font-size: 1.5rem;
  margin-top: 32px;
  margin-bottom: 14px;
  color: var(--primary-gold);
}

.page-content__box p, .page-content__box ul {
  color: var(--text-muted);
  font-size: 0.975rem;
  margin-bottom: 20px;
}

.page-content__box ul {
  padding-left: 24px;
}

.page-content__box li {
  margin-bottom: 8px;
}

/* Media Queries (Burger Menu at <= 991px) */
@media (max-width: 991px) {
  .nav-desktop {
    display: none;
  }
  
  .rap-burger {
    display: flex;
  }
  
  .rap-hero__grid, .rap-story__grid, .rap-mascot__grid, .rap-lounge__grid, .rap-resp__grid {
    grid-template-columns: 1fr;
  }
  
  .rap-resp__card--wide {
    grid-column: span 1;
  }
  
  .rap-footer__top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .rap-mascot__fig {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .rap-frame {
    height: 480px;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 16px;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .rap-hero__left h1 {
    font-size: 2.2rem;
  }
  
  .rap-cookie {
    flex-direction: column;
    align-items: stretch;
    bottom: 10px;
    left: 10px;
    right: 10px;
    padding: 16px;
  }
  
  .rap-cookie__btns {
    width: 100%;
  }

  .rap-cookie__btns .btn {
    flex: 1;
  }
}

@media (max-width: 480px) {
  .rap-frame {
    height: 380px;
  }
}

@media (max-width: 380px) {
  .rap-hero__left h1 {
    font-size: 1.85rem;
  }
}
