/* =============================================
   Qrolibex — LIQUID MOTION INTERFACE
   Color Palette:
   Deep Ocean   #0A1F2D
   Aqua Surge   #00C2D1
   Soft Flame   #FF6B4A
   Mist Grey    #E6EEF3
   Dark Slate   #182635
============================================= */

/* ---- RESET & BASE ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --deep-ocean: #0A1F2D;
  --aqua: #00C2D1;
  --flame: #FF6B4A;
  --mist: #E6EEF3;
  --slate: #182635;
  --glass-bg: rgba(10, 31, 45, 0.6);
  --glass-border: rgba(0, 194, 209, 0.25);
  --font-head: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--deep-ocean);
  color: var(--mist);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- TYPOGRAPHY ---- */
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 16px;
  text-align: center;
}

.section-subtitle {
  font-size: 1.05rem;
  color: rgba(230, 238, 243, 0.7);
  max-width: 600px;
  margin: 0 auto 60px;
  text-align: center;
}

.section-header {
  margin-bottom: 10px;
}

.accent-aqua {
  color: var(--aqua);
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s;
}

.btn:hover::after {
  opacity: 1;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: linear-gradient(135deg, var(--aqua) 0%, #008fa0 100%);
  color: #fff;
  box-shadow: 0 4px 24px rgba(0, 194, 209, 0.4);
}

.btn-primary:hover {
  box-shadow: 0 6px 36px rgba(0, 194, 209, 0.6);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--mist);
  border: 2px solid rgba(230, 238, 243, 0.4);
}

.btn-outline:hover {
  border-color: var(--aqua);
  color: var(--aqua);
  transform: translateY(-2px);
}

.btn-outline-aqua {
  background: transparent;
  color: var(--aqua);
  border: 2px solid var(--aqua);
}

.btn-outline-aqua:hover {
  background: var(--aqua);
  color: var(--deep-ocean);
  transform: translateY(-2px);
}

/* ---- GLASS ---- */
.glass-panel {
  background: rgba(10, 31, 45, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 194, 209, 0.2);
  border-radius: 24px;
}

.glass-card {
  background: rgba(24, 38, 53, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 194, 209, 0.18);
  border-radius: 20px;
}

/* ---- AGE BANNER ---- */
.age-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: linear-gradient(90deg, var(--deep-ocean) 0%, var(--slate) 100%);
  border-bottom: 2px solid var(--flame);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.88rem;
  transition: transform 0.5s ease;
}

.age-banner.hidden {
  transform: translateY(-110%);
}

.age-banner-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.age-banner p {
  flex: 1;
  min-width: 200px;
  color: rgba(230, 238, 243, 0.85);
}

.age-banner p strong {
  color: var(--flame);
}

.age-banner-btn {
  background: var(--flame);
  color: #fff;
  border: none;
  padding: 8px 20px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
  flex-shrink: 0;
}

.age-banner-btn:hover {
  background: #e85535;
  transform: scale(1.04);
}

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 46px;
  left: 0;
  right: 0;
  z-index: 900;
  transition: top 0.5s ease, background 0.4s, box-shadow 0.4s;
  background: transparent;
}

.nav.scrolled {
  background: rgba(10, 31, 45, 0.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}

.nav.banner-hidden {
  top: 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  text-decoration: none;
}

.logo-text {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--mist);
  letter-spacing: 0.08em;
}

.logo-accent {
  color: var(--aqua);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(230, 238, 243, 0.8);
  transition: color 0.3s;
  position: relative;
  padding-bottom: 4px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--aqua);
  transition: width 0.3s;
  border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--aqua);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--mist);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 100px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,
      rgba(10, 31, 45, 0.85) 0%,
      rgba(10, 31, 45, 0.6) 50%,
      rgba(24, 38, 53, 0.88) 100%);
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  z-index: 2;
}

.hero-wave svg {
  width: 100%;
  height: 100%;
}

.wave-path {
  fill: var(--deep-ocean);
  opacity: 0;
  animation: waveFloat 6s ease-in-out infinite;
}

.wave-1 {
  opacity: 0.5;
  animation-delay: 0s;
}

.wave-2 {
  opacity: 0.8;
  animation-delay: -3s;
}

@keyframes waveFloat {

  0%,
  100% {
    d: path("M0,60 C240,100 480,20 720,60 C960,100 1200,20 1440,60 L1440,120 L0,120 Z");
  }

  50% {
    d: path("M0,40 C200,80 480,10 720,50 C960,90 1200,30 1440,40 L1440,120 L0,120 Z");
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 720px;
  text-align: center;
  padding: 52px 48px;
  animation: fadeInUp 0.9s ease both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 107, 74, 0.18);
  border: 1px solid rgba(255, 107, 74, 0.4);
  color: var(--flame);
  padding: 6px 18px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.0;
  color: var(--mist);
  margin-bottom: 20px;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.5);
}

.hero-sub-title {
  display: block;
  font-size: clamp(1rem, 2.5vw, 1.6rem);
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--aqua);
  margin-top: 8px;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(230, 238, 243, 0.75);
  margin-bottom: 20px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.hero-notice {
  display: inline-block;
  background: rgba(0, 194, 209, 0.12);
  border: 1px solid rgba(0, 194, 209, 0.3);
  color: var(--aqua);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 32px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Aqua glow animation on hero border */
@keyframes aquaGlow {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 194, 209, 0.0), 0 8px 40px rgba(0, 0, 0, 0.3);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(0, 194, 209, 0.08), 0 8px 40px rgba(0, 0, 0, 0.3);
  }
}

.hero-content {
  animation: fadeInUp 0.9s ease both, aquaGlow 4s ease-in-out 1s infinite;
}

/* ---- OFFSET SECTION ---- */
.offset-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.offset-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.offset-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(0.4) brightness(0.3);
}

.offset-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      var(--deep-ocean) 0%,
      rgba(10, 31, 45, 0.82) 40%,
      rgba(24, 38, 53, 0.9) 100%);
}

.offset-section .container {
  position: relative;
  z-index: 1;
}

.offset-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: start;
}

.offset-card {
  padding: 40px 28px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.offset-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 194, 209, 0.2);
  border-color: rgba(0, 194, 209, 0.4);
}

.card-icon {
  font-size: 2.4rem;
  margin-bottom: 20px;
  display: block;
}

.card-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--mist);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.card-desc {
  font-size: 0.9rem;
  color: rgba(230, 238, 243, 0.65);
  line-height: 1.6;
}

/* ---- GAME ZONES ---- */
.game-zones {
  padding: 100px 0;
}

.game-zones .container {
  margin-bottom: 48px;
}

.zones-row {
  display: flex;
  gap: 0;
  overflow: hidden;
  border-radius: 0;
  min-height: 540px;
}

.zone-panel {
  flex: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 540px;
  display: block;
}

.zone-panel:hover {
  flex: 2.2;
}

.zone-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.zone-panel:hover .zone-img {
  transform: scale(1.06);
}

.zone-dark-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(10, 31, 45, 0.95) 0%,
      rgba(10, 31, 45, 0.5) 50%,
      rgba(10, 31, 45, 0.2) 100%);
  transition: background 0.4s;
}

.zone-panel:hover .zone-dark-overlay {
  background: linear-gradient(to top,
      rgba(10, 31, 45, 0.98) 0%,
      rgba(10, 31, 45, 0.65) 60%,
      rgba(0, 194, 209, 0.08) 100%);
}

.zone-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 24px;
  z-index: 2;
}

.zone-tag {
  display: inline-block;
  background: rgba(0, 194, 209, 0.2);
  border: 1px solid rgba(0, 194, 209, 0.4);
  color: var(--aqua);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.zone-title {
  font-family: var(--font-head);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 800;
  color: var(--mist);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.zone-desc {
  font-size: 0.85rem;
  color: rgba(230, 238, 243, 0.65);
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.4s ease;
  line-height: 1.5;
}

.zone-panel:hover .zone-desc {
  opacity: 1;
  transform: translateY(0);
}

.zone-cta {
  display: inline-block;
  background: var(--aqua);
  color: var(--deep-ocean);
  padding: 8px 20px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease 0.05s;
}

.zone-panel:hover .zone-cta {
  opacity: 1;
  transform: translateY(0);
}

/* ---- HIGHLIGHTS ---- */
.highlights {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.highlights-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--slate) 0%, #0d2535 100%);
  z-index: 0;
}

.highlights .container {
  position: relative;
  z-index: 1;
}

.pill-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto 40px;
}

.pill-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(0, 194, 209, 0.07);
  border: 1px solid rgba(0, 194, 209, 0.2);
  border-radius: 50px;
  padding: 18px 28px;
  transition: var(--transition);
  animation-delay: var(--delay, 0s);
}

.pill-card:hover {
  background: rgba(0, 194, 209, 0.14);
  border-color: rgba(0, 194, 209, 0.5);
  transform: translateX(6px);
  box-shadow: 0 4px 20px rgba(0, 194, 209, 0.15);
}

.pill-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.pill-label {
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--mist);
  letter-spacing: 0.03em;
}

.vcp-notice {
  text-align: center;
  font-size: 0.88rem;
  color: rgba(230, 238, 243, 0.55);
  max-width: 600px;
  margin: 0 auto;
  padding: 16px 24px;
  border: 1px solid rgba(230, 238, 243, 0.1);
  border-radius: 8px;
}

/* ---- HOW IT WORKS ---- */
.how-it-works {
  padding: 100px 0;
}

.hiw-steps {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.hiw-step {
  flex: 1;
  text-align: center;
  padding: 40px 32px;
  background: rgba(24, 38, 53, 0.5);
  border: 1px solid rgba(0, 194, 209, 0.12);
  border-radius: 20px;
  transition: var(--transition);
}

.hiw-step:hover {
  background: rgba(24, 38, 53, 0.8);
  border-color: rgba(0, 194, 209, 0.35);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.hiw-num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 2px rgba(0, 194, 209, 0.4);
  line-height: 1;
  margin-bottom: 16px;
}

.hiw-title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--mist);
  margin-bottom: 10px;
}

.hiw-desc {
  font-size: 0.9rem;
  color: rgba(230, 238, 243, 0.65);
  line-height: 1.6;
}

.hiw-divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--aqua), transparent);
  flex-shrink: 0;
}

/* ---- STATEMENT ---- */
.statement {
  position: relative;
  padding: 120px 24px;
  text-align: center;
  overflow: hidden;
}

.statement-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.statement-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.statement-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 31, 45, 0.82);
}

.statement-radial {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(0, 194, 209, 0.15), transparent 70%);
  animation: radialPulse 5s ease-in-out infinite;
}

@keyframes radialPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.7;
  }
}

.statement-content {
  position: relative;
  z-index: 1;
}

.stmt-label {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--aqua);
  margin-bottom: 20px;
  opacity: 0.9;
}

.stmt-heading {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 24px;
}

.stmt-desc {
  font-size: 1.05rem;
  color: rgba(230, 238, 243, 0.72);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* ---- RESPONSIBLE ---- */
.responsible {
  padding: 100px 0;
}

.resp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.resp-label {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--aqua);
  margin-bottom: 12px;
}

.resp-desc {
  font-size: 0.98rem;
  color: rgba(230, 238, 243, 0.72);
  line-height: 1.75;
  margin-bottom: 28px;
}

.resp-list {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.resp-list li {
  padding-left: 28px;
  position: relative;
  font-size: 0.92rem;
  color: rgba(230, 238, 243, 0.75);
}

.resp-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--aqua);
  font-weight: 800;
}

.resp-glow-card {
  background: rgba(24, 38, 53, 0.6);
  border: 1px solid rgba(0, 194, 209, 0.2);
  border-radius: 24px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  box-shadow: 0 0 60px rgba(0, 194, 209, 0.08);
}

.resp-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px;
  background: rgba(0, 194, 209, 0.05);
  border: 1px solid rgba(0, 194, 209, 0.12);
  border-radius: 16px;
  text-align: center;
  transition: var(--transition);
}

.resp-stat:hover {
  background: rgba(0, 194, 209, 0.1);
  border-color: rgba(0, 194, 209, 0.3);
}

.resp-stat-icon {
  font-size: 2rem;
}

.resp-stat-label {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--mist);
  letter-spacing: 0.03em;
  text-align: center;
}

/* ---- FINAL CTA ---- */
.final-cta {
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(10, 31, 45, 0.97) 0%,
      rgba(10, 31, 45, 0.85) 45%,
      rgba(0, 194, 209, 0.25) 70%,
      rgba(0, 194, 209, 0.4) 100%);
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  gap: 60px;
}

.cta-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 20px;
}

.cta-desc {
  font-size: 1rem;
  color: rgba(230, 238, 243, 0.72);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 450px;
}

.cta-glow-frame {
  text-align: center;
  padding: 52px 40px;
  background: rgba(0, 194, 209, 0.08);
  border: 2px solid rgba(0, 194, 209, 0.35);
  border-radius: 24px;
  box-shadow: 0 0 80px rgba(0, 194, 209, 0.18), inset 0 0 60px rgba(0, 194, 209, 0.05);
  animation: ctaGlow 3s ease-in-out infinite;
}

@keyframes ctaGlow {

  0%,
  100% {
    box-shadow: 0 0 60px rgba(0, 194, 209, 0.15), inset 0 0 40px rgba(0, 194, 209, 0.04);
  }

  50% {
    box-shadow: 0 0 100px rgba(0, 194, 209, 0.25), inset 0 0 60px rgba(0, 194, 209, 0.08);
  }
}

.cta-brand {
  font-family: var(--font-head);
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--mist);
  margin-bottom: 12px;
}

.cta-tagline {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--aqua);
  margin-bottom: 20px;
}

.cta-badge {
  display: inline-block;
  background: rgba(255, 107, 74, 0.15);
  border: 1px solid rgba(255, 107, 74, 0.35);
  color: var(--flame);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* ---- FOOTER ---- */
.footer {
  background: #050f18;
  border-top: 1px solid rgba(0, 194, 209, 0.12);
}

.footer-top {
  padding: 80px 0 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-logo {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--mist);
  letter-spacing: 0.08em;
  display: inline-block;
  margin-bottom: 16px;
}

.footer-tagline {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--aqua);
  margin-bottom: 16px;
}

.footer-about {
  font-size: 0.88rem;
  color: rgba(230, 238, 243, 0.5);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col-title {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(230, 238, 243, 0.45);
  margin-bottom: 20px;
}

.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-col a {
  font-size: 0.88rem;
  color: rgba(230, 238, 243, 0.6);
  transition: color 0.3s;
}

.footer-links-col a:hover {
  color: var(--aqua);
}

.footer-bottom {
  border-top: 1px solid rgba(230, 238, 243, 0.07);
  padding: 28px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-disclaimer {
  font-size: 0.82rem;
  color: rgba(230, 238, 243, 0.45);
  max-width: 700px;
  line-height: 1.6;
}

.footer-disclaimer strong {
  color: var(--flame);
}

.footer-copy {
  font-size: 0.82rem;
  color: rgba(230, 238, 243, 0.3);
  white-space: nowrap;
}

/* ---- COOKIE TOAST ---- */
.cookie-toast {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: var(--slate);
  border-top: 2px solid rgba(0, 194, 209, 0.3);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-toast.show {
  transform: translateY(0);
}

.cookie-toast-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.cookie-toast-content p {
  font-size: 0.88rem;
  color: rgba(230, 238, 243, 0.75);
  flex: 1;
  min-width: 200px;
}

.cookie-toast-content a {
  color: var(--aqua);
  text-decoration: underline;
}

.btn-cookie-accept {
  background: var(--aqua);
  color: var(--deep-ocean);
  padding: 10px 24px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-cookie-accept:hover {
  background: #00a8b5;
}

/* ---- FADE-IN SCROLL ---- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease var(--delay, 0s), transform 0.7s ease var(--delay, 0s);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- STATIC PAGES ---- */
.page-wrap {
  min-height: 100vh;
  padding-top: 90px;
}

.page-hero {
  background: linear-gradient(135deg, var(--slate) 0%, var(--deep-ocean) 100%);
  padding: 80px 24px 60px;
  text-align: center;
  border-bottom: 1px solid rgba(0, 194, 209, 0.15);
}

.page-hero-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 12px;
}

.page-hero-meta {
  font-size: 0.88rem;
  color: rgba(230, 238, 243, 0.4);
}

.page-body {
  padding: 80px 24px;
}

.page-body .container {
  max-width: 860px;
}

.legal-section {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(230, 238, 243, 0.06);
}

.legal-section:last-child {
  border-bottom: none;
}

.legal-h2 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--aqua);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.legal-h2::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 20px;
  background: var(--aqua);
  border-radius: 2px;
}

.legal-p {
  font-size: 0.95rem;
  color: rgba(230, 238, 243, 0.72);
  line-height: 1.8;
  margin-bottom: 14px;
}

.legal-ul {
  list-style: none;
  margin: 12px 0 16px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-ul li {
  padding-left: 24px;
  position: relative;
  font-size: 0.92rem;
  color: rgba(230, 238, 243, 0.65);
  line-height: 1.6;
}

.legal-ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--aqua);
  font-size: 0.85rem;
}

/* ---- GAME PAGE ---- */
.game-page-wrap {
  min-height: 100vh;
  padding-top: 90px;
  display: flex;
  flex-direction: column;
}

.game-header {
  background: linear-gradient(135deg, var(--slate) 0%, var(--deep-ocean) 100%);
  padding: 40px 24px;
  border-bottom: 1px solid rgba(0, 194, 209, 0.15);
}

.game-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--mist);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.game-zone-tag {
  display: inline-block;
  background: rgba(0, 194, 209, 0.15);
  border: 1px solid rgba(0, 194, 209, 0.35);
  color: var(--aqua);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}

.game-desc {
  font-size: 0.95rem;
  color: rgba(230, 238, 243, 0.65);
  max-width: 600px;
  margin-top: 8px;
}

.game-disclaimer {
  background: rgba(255, 107, 74, 0.08);
  border: 1px solid rgba(255, 107, 74, 0.25);
  border-radius: 10px;
  padding: 12px 20px;
  margin-top: 20px;
  font-size: 0.82rem;
  color: var(--flame);
  max-width: 700px;
}

.iframe-container {
  flex: 1;
  position: relative;
  background: var(--deep-ocean);
  min-height: 600px;
}

.game-iframe-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(10, 31, 45, 0.95);
  cursor: pointer;
  z-index: 10;
  gap: 20px;
  transition: opacity 0.4s ease;
}

.game-iframe-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.overlay-play-btn {
  width: 80px;
  height: 80px;
  background: var(--aqua);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 0 40px rgba(0, 194, 209, 0.4);
}

.overlay-play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 60px rgba(0, 194, 209, 0.6);
}

.overlay-text {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--mist);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.overlay-sub {
  font-size: 0.82rem;
  color: rgba(230, 238, 243, 0.5);
}

.game-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(230, 238, 243, 0.6);
  font-size: 0.85rem;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.3s;
  margin-bottom: 20px;
}

.back-link:hover {
  color: var(--aqua);
}

/* ---- ABOUT PAGE EXTRA ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}

.about-visual {
  background: linear-gradient(135deg, rgba(0, 194, 209, 0.08) 0%, rgba(24, 38, 53, 0.6) 100%);
  border: 1px solid rgba(0, 194, 209, 0.18);
  border-radius: 24px;
  padding: 48px;
  text-align: center;
}

.about-icon {
  font-size: 4rem;
  margin-bottom: 16px;
}

.about-visual-title {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--mist);
  margin-bottom: 8px;
}

.about-visual-sub {
  font-size: 0.88rem;
  color: rgba(230, 238, 243, 0.5);
}

/* ---- CONTACT PAGE ---- */
.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 32px 0;
}

.contact-card {
  background: rgba(24, 38, 53, 0.5);
  border: 1px solid rgba(0, 194, 209, 0.15);
  border-radius: 16px;
  padding: 32px;
  transition: var(--transition);
}

.contact-card:hover {
  border-color: rgba(0, 194, 209, 0.35);
  transform: translateY(-4px);
}

.contact-card-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.contact-card-title {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--mist);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.contact-card-val {
  font-size: 0.9rem;
  color: var(--aqua);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1100px) {
  .zones-row {
    min-height: 400px;
  }

  .zone-panel {
    min-height: 400px;
  }

  .offset-grid {
    grid-template-columns: 1fr 1fr;
  }

  .offset-card {
    margin-top: 0 !important;
  }

  .pill-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .resp-grid {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    grid-template-columns: 1fr;
  }

  .cta-right {
    display: none;
  }

  .hiw-steps {
    flex-direction: column;
  }

  .hiw-divider {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, transparent, var(--aqua), transparent);
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .resp-glow-card {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 31, 45, 0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 194, 209, 0.15);
    padding: 16px 0;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-link {
    padding: 14px 24px;
    border-radius: 0;
    width: 100%;
    font-size: 0.92rem;
  }

  .nav-link::after {
    display: none;
  }

  .zones-row {
    flex-direction: column;
    min-height: unset;
  }

  .zone-panel {
    min-height: 280px;
    flex: none !important;
  }

  .zone-desc {
    opacity: 1;
    transform: none;
  }

  .zone-cta {
    opacity: 1;
    transform: none;
  }

  .offset-grid {
    grid-template-columns: 1fr;
  }

  .pill-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-content {
    padding: 36px 24px;
  }

  .resp-glow-card {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 12px;
  }

  .btn {
    width: 100%;
  }

  .hero-btns {
    flex-direction: column;
  }

  .age-banner {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .pill-grid {
    grid-template-columns: 1fr;
  }

  .hiw-step {
    padding: 28px 20px;
  }
}