@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Oxanium:wght@600;700;800&display=swap');

:root {
  --hb-ink: #041c22;
  --hb-deep: #06303a;
  --hb-teal: #0a5c68;
  --hb-cyan: #2ec4b6;
  --hb-mint: #7ee0d2;
  --hb-gold: #e8b86d;
  --hb-sand: #f3e6d0;
  --hb-cream: #f7faf9;
  --hb-muted: #9bb4b8;
  --hb-line: rgba(46, 196, 182, 0.22);
  --hb-glass: rgba(6, 48, 58, 0.72);
  --hb-radius: 1.25rem;
  --hb-shadow: 0 24px 60px rgba(4, 28, 34, 0.35);
  --font-display: 'Oxanium', sans-serif;
  --font-body: 'Manrope', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--hb-cream);
  background:
    radial-gradient(circle at 12% 8%, rgba(46, 196, 182, 0.14), transparent 34%),
    radial-gradient(circle at 88% 0%, rgba(232, 184, 109, 0.1), transparent 28%),
    linear-gradient(180deg, #05252d 0%, var(--hb-ink) 48%, #03161b 100%);
  min-height: 100vh;
  line-height: 1.65;
  overflow-x: hidden;
}

a {
  color: var(--hb-cyan);
  text-decoration: none;
  transition: color 0.25s ease, opacity 0.25s ease;
}

a:hover,
a:focus-visible {
  color: var(--hb-mint);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.site-header {
  background: rgba(4, 28, 34, 0.88);
  border-bottom: 1px solid var(--hb-line);
  backdrop-filter: blur(14px);
}

.navbar {
  padding: 0.85rem 0;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--hb-cream);
}

.brand-lockup:hover,
.brand-lockup:focus-visible {
  color: var(--hb-cream);
  opacity: 0.92;
}

.brand-lockup img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-copy .brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.brand-copy .brand-tag {
  font-size: 0.72rem;
  color: var(--hb-muted);
  font-weight: 500;
  margin-top: 0.15rem;
}

.navbar-toggler {
  border: 1px solid var(--hb-line);
  border-radius: 0.75rem;
  padding: 0.55rem 0.7rem;
  background: rgba(46, 196, 182, 0.08);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(46, 196, 182, 0.25);
}

.navbar-toggler-icon-custom {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 22px;
}

.navbar-toggler-icon-custom span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--hb-cyan);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon-custom span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon-custom span:nth-child(2) {
  opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon-custom span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-panel .nav-link {
  color: var(--hb-cream);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.55rem 0.9rem !important;
  border-radius: 999px;
  position: relative;
}

.nav-panel .nav-link:hover,
.nav-panel .nav-link:focus-visible,
.nav-panel .nav-link.active {
  color: var(--hb-ink);
  background: linear-gradient(135deg, var(--hb-cyan), var(--hb-mint));
}

.hero {
  position: relative;
  min-height: clamp(560px, 88vh, 820px);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(110deg, rgba(4, 28, 34, 0.92) 0%, rgba(4, 28, 34, 0.72) 42%, rgba(4, 28, 34, 0.45) 68%, rgba(4, 28, 34, 0.7) 100%),
    linear-gradient(0deg, rgba(4, 28, 34, 0.88) 0%, transparent 42%);
}

.hero-content {
  padding: 5.5rem 0 4.5rem;
  max-width: 720px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--hb-gold);
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.35rem, 5.8vw, 4.1rem);
  line-height: 1.08;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0 0 1.15rem;
  color: #fff;
}

.hero-title span {
  color: var(--hb-cyan);
}

.hero-text {
  font-size: 1.08rem;
  color: var(--hb-sand);
  max-width: 34rem;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn-hb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: none;
  border-radius: 999px;
  padding: 0.9rem 1.45rem;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-hb-primary {
  background: linear-gradient(135deg, var(--hb-cyan), #1aa896);
  color: var(--hb-ink);
  box-shadow: 0 14px 30px rgba(46, 196, 182, 0.28);
}

.btn-hb-primary:hover,
.btn-hb-primary:focus-visible {
  color: var(--hb-ink);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(46, 196, 182, 0.36);
}

.btn-hb-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--hb-cream);
  border: 1px solid var(--hb-line);
}

.btn-hb-ghost:hover,
.btn-hb-ghost:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.hero-orbit {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  width: min(420px, 38vw);
  aspect-ratio: 1;
  pointer-events: none;
  display: none;
}

.hero-orbit-ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(46, 196, 182, 0.28);
  border-radius: 50%;
  animation: orbitSpin 24s linear infinite;
}

.hero-orbit-ring::before,
.hero-orbit-ring::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--hb-gold);
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 0 6px rgba(232, 184, 109, 0.18);
}

.hero-orbit-ring::after {
  background: var(--hb-cyan);
  top: auto;
  bottom: 12%;
  left: 18%;
  box-shadow: 0 0 0 6px rgba(46, 196, 182, 0.18);
}

.hero-orbit-core {
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(126, 224, 210, 0.35), transparent 40%),
    linear-gradient(160deg, rgba(10, 92, 104, 0.85), rgba(4, 28, 34, 0.92));
  border: 1px solid rgba(46, 196, 182, 0.35);
  display: grid;
  place-items: center;
  box-shadow: var(--hb-shadow);
  animation: corePulse 5s ease-in-out infinite;
}

.hero-orbit-core i {
  font-size: 3rem;
  color: var(--hb-cyan);
}

.section-shell {
  padding: 5rem 0;
}

.section-intro {
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.section-label {
  color: var(--hb-gold);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
}

.section-text {
  color: var(--hb-muted);
  margin: 0;
  max-width: 46rem;
}

.section-intro-wide {
  max-width: 46rem;
}

.section-alt {
  background: rgba(6, 48, 58, 0.28);
  border-top: 1px solid rgba(46, 196, 182, 0.1);
  border-bottom: 1px solid rgba(46, 196, 182, 0.1);
}

.content-block {
  max-width: 52rem;
}

.content-copy {
  color: var(--hb-muted);
  font-size: 1.02rem;
}

.content-copy p {
  margin: 0 0 1.15rem;
}

.content-copy p:last-child {
  margin-bottom: 0;
}

.content-copy strong {
  color: var(--hb-sand);
}

.game-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.85rem;
  align-items: stretch;
}

.game-item {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0.65rem;
  border-radius: 0.9rem;
  background: linear-gradient(180deg, rgba(10, 92, 104, 0.32), rgba(4, 28, 34, 0.78));
  border: 1px solid var(--hb-line);
}

.game-thumb {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  border-radius: 0.65rem;
  overflow: hidden;
  background: var(--hb-deep);
}

.game-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-info {
  flex: 1 1 auto;
  min-width: 0;
}

.game-name {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0 0 0.15rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.game-name a {
  color: var(--hb-cream);
}

.game-name a:hover,
.game-name a:focus-visible {
  color: var(--hb-cyan);
}

.game-meta {
  display: block;
  color: var(--hb-muted);
  font-size: 0.78rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.game-play {
  flex: 0 0 auto;
  padding: 0.55rem 0.9rem;
  font-size: 0.82rem;
}

.disclaimer-panel {
  border-radius: var(--hb-radius);
  padding: clamp(1.5rem, 3vw, 2.4rem);
  background: linear-gradient(160deg, rgba(10, 92, 104, 0.35), rgba(4, 28, 34, 0.82));
  border: 1px solid var(--hb-line);
  box-shadow: var(--hb-shadow);
}

.disclaimer-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.75rem;
}

.disclaimer-point {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  padding: 1rem;
  border-radius: 0.9rem;
  background: rgba(4, 28, 34, 0.45);
  border: 1px solid rgba(46, 196, 182, 0.14);
}

.disclaimer-point i {
  color: var(--hb-cyan);
  font-size: 1.15rem;
  margin-top: 0.15rem;
}

.disclaimer-point strong {
  display: block;
  color: var(--hb-cream);
  margin-bottom: 0.25rem;
  font-family: var(--font-display);
  letter-spacing: 0.02em;
}

.disclaimer-point p {
  margin: 0;
  color: var(--hb-muted);
  font-size: 0.9rem;
}

.site-footer {
  border-top: 1px solid var(--hb-line);
  background: rgba(3, 18, 22, 0.92);
  padding: 3.25rem 0 1.75rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem 1.5rem;
  margin-bottom: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--hb-cream);
}

.footer-brand img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
}

.footer-brand strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.footer-text {
  color: var(--hb-muted);
  margin-bottom: 1.25rem;
  font-size: 0.94rem;
}

.footer-badges {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-badges img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.footer-badges a {
  display: inline-flex;
  align-items: center;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--hb-gold);
  margin: 0 0 0.9rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-links a {
  color: var(--hb-sand);
  font-weight: 600;
  font-size: 0.92rem;
}

.footer-disclaimers {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.25rem 0;
  margin-bottom: 1.25rem;
}

.footer-disclaimers p {
  color: var(--hb-muted);
  font-size: 0.9rem;
  margin: 0 0 0.75rem;
  max-width: 58rem;
}

.footer-disclaimers p:last-child {
  margin-bottom: 0;
}

.footer-disclaimers strong {
  color: var(--hb-sand);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  color: var(--hb-muted);
  font-size: 0.88rem;
}

@keyframes heroDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.1) translate3d(-1.5%, -1%, 0);
  }
}

@keyframes orbitSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes corePulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
}

@media (min-width: 992px) {
  .hero-orbit {
    display: block;
  }

  .nav-panel {
    display: flex !important;
    flex-basis: auto;
  }
}

@media (max-width: 991.98px) {
  .nav-panel {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 1rem;
    background: var(--hb-glass);
    border: 1px solid var(--hb-line);
  }

  .nav-panel .nav-link {
    border-radius: 0.75rem;
    margin-bottom: 0.25rem;
  }

  .hero-content {
    padding-top: 4rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .disclaimer-points {
    grid-template-columns: 1fr;
  }

  .game-row {
    flex-direction: column;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .game-row {
    flex-direction: row;
    flex-wrap: nowrap;
  }

  .game-play {
    padding: 0.5rem 0.7rem;
  }

  .game-meta {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .brand-copy .brand-tag {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-hb {
    width: 100%;
  }

  .game-play {
    width: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-media img,
  .hero-orbit-ring,
  .hero-orbit-core {
    animation: none !important;
  }
}

html.scroll-locked,
body.scroll-locked {
  overflow: hidden;
  height: 100%;
  touch-action: none;
}

.consent-overlay {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background: rgba(2, 12, 16, 0.82);
  backdrop-filter: blur(10px);
}

.consent-overlay[hidden] {
  display: none !important;
}

.consent-modal {
  width: min(520px, 100%);
  border-radius: 1.25rem;
  padding: 1.75rem 1.5rem;
  background: linear-gradient(165deg, rgba(10, 92, 104, 0.95), rgba(4, 28, 34, 0.98));
  border: 1px solid rgba(46, 196, 182, 0.35);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), 0 0 40px rgba(46, 196, 182, 0.12);
}

.consent-modal h2 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin: 0 0 0.85rem;
}

.consent-modal p {
  color: var(--hb-muted);
  margin: 0 0 0.9rem;
  font-size: 0.96rem;
}

.consent-check {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  margin: 1.15rem 0 1.25rem;
  color: var(--hb-sand);
  font-size: 0.94rem;
}

.consent-check input {
  margin-top: 0.2rem;
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--hb-cyan);
  flex-shrink: 0;
}

.consent-modal .btn-hb {
  width: 100%;
}

.consent-modal .btn-hb:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 3500;
  max-width: 720px;
  margin: 0 auto;
  padding: 1.15rem 1.2rem;
  border-radius: 1rem;
  background: linear-gradient(160deg, rgba(6, 48, 58, 0.96), rgba(4, 28, 34, 0.98));
  border: 1px solid var(--hb-line);
  box-shadow: var(--hb-shadow);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner p {
  margin: 0;
  color: var(--hb-muted);
  font-size: 0.9rem;
  flex: 1 1 280px;
}

.cookie-banner a {
  color: var(--hb-cyan);
  font-weight: 700;
}

.page-hero {
  padding: 3.5rem 0 2rem;
  border-bottom: 1px solid rgba(46, 196, 182, 0.12);
}

.page-hero .section-title {
  margin-bottom: 0.75rem;
}

.page-hero .section-text {
  max-width: 46rem;
}

.page-content {
  padding: 3rem 0 4.5rem;
}

.page-content .content-copy h3 {
  font-family: var(--font-display);
  color: var(--hb-cream);
  font-size: 1.25rem;
  margin: 1.75rem 0 0.7rem;
  letter-spacing: 0.02em;
}

.faq-list {
  display: grid;
  gap: 1rem;
  max-width: 52rem;
}

.faq-item {
  padding: 1.2rem 1.25rem;
  border-radius: 1rem;
  background: rgba(6, 48, 58, 0.35);
  border: 1px solid var(--hb-line);
}

.faq-item h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
  color: var(--hb-cream);
}

.faq-item p {
  margin: 0;
  color: var(--hb-muted);
}

.contact-panel {
  max-width: 40rem;
  padding: 1.5rem;
  border-radius: 1.1rem;
  background: linear-gradient(160deg, rgba(10, 92, 104, 0.3), rgba(4, 28, 34, 0.75));
  border: 1px solid var(--hb-line);
}

.contact-panel a {
  font-weight: 700;
  font-size: 1.1rem;
}

.game-stage-wrap {
  padding: 2.5rem 0 1.5rem;
}

.game-stage-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}

.game-stage-sub {
  color: var(--hb-muted);
  margin-bottom: 1.5rem;
}

.game-disclaimer {
  margin: 1.5rem 0 3.5rem;
  padding: 1.25rem 1.35rem;
  border-radius: 1rem;
  border: 1px solid rgba(232, 184, 109, 0.28);
  background: rgba(232, 184, 109, 0.08);
  color: var(--hb-sand);
  max-width: 52rem;
}

.game-disclaimer strong {
  color: var(--hb-gold);
}

@media (max-width: 575.98px) {
  .cookie-banner {
    left: 0.65rem;
    right: 0.65rem;
    bottom: 0.65rem;
  }
}
