/* Honey Social Online Casino — site shell.
   Golden Meadow: warm sunny daylight, cream canvas, amber + leaf-green accents,
   honeycomb motifs, generous rounding. Prefix: hc-. Baloo 2 (display) + Mulish (body).
   Own convention — divergent from boom (dark arcade) by design. */

:root {
  --amber: #F4A618;
  --amber-deep: #E08A0B;
  --comb: #5C3A12;
  --comb-soft: #7A5424;
  --cream: #FFF6E0;
  --cream-card: #FFFDF6;
  --leaf: #6FA84B;
  --leaf-deep: #5A8C3A;
  --ink: #3A2A12;
  --ink-soft: #6B5A40;
  --line: #EDD9A8;
  --honey-glow: rgba(244, 166, 24, .28);

  --r-lg: 32px;
  --r-md: 22px;
  --r-sm: 14px;
  --shadow-soft: 0 18px 40px -20px rgba(124, 84, 36, .45);
  --shadow-lift: 0 26px 60px -24px rgba(124, 84, 36, .55);
  --ease: cubic-bezier(.22, .68, 0, 1);

  --wrap: 1140px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Mulish', system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* faint honeycomb wash on the whole page */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 18% 12%, rgba(244, 166, 24, .10), transparent 42%),
    radial-gradient(circle at 86% 8%, rgba(111, 168, 75, .08), transparent 40%);
}

h1, h2, h3, .hc-display {
  font-family: 'Baloo 2', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.04;
  margin: 0;
  letter-spacing: -.01em;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.hc-wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- eyebrow tag ---------- */
.hc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--comb-soft);
  background: rgba(244, 166, 24, .14);
  border: 1px solid var(--line);
  padding: 7px 16px;
  border-radius: 999px;
}
.hc-eyebrow::before {
  content: '';
  width: 9px; height: 9px;
  background: var(--amber);
  clip-path: polygon(25% 0,75% 0,100% 50%,75% 100%,25% 100%,0 50%);
}

/* ---------- buttons ---------- */
.hc-btn {
  --bg: var(--amber);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--comb);
  background: var(--bg);
  border: none;
  border-radius: 999px;
  padding: 14px 22px;
  cursor: pointer;
  box-shadow: 0 12px 24px -10px var(--honey-glow), inset 0 -3px 0 rgba(92, 58, 18, .18);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), background .3s var(--ease);
}
.hc-btn:hover { transform: translateY(-2px); box-shadow: 0 18px 34px -12px var(--honey-glow), inset 0 -3px 0 rgba(92, 58, 18, .18); }
.hc-btn:active { transform: translateY(0) scale(.98); }
.hc-btn--lg { font-size: 18px; padding: 17px 28px; }
.hc-btn--leaf { --bg: var(--leaf); color: #fff; box-shadow: 0 12px 24px -10px rgba(111, 168, 75, .5), inset 0 -3px 0 rgba(60, 110, 40, .3); }
.hc-btn--ghost { background: var(--cream-card); color: var(--comb); border: 1.5px solid var(--line); box-shadow: var(--shadow-soft); }
.hc-btn--sm { font-size: 14px; padding: 10px 16px; }
/* trailing orb — its own circular chip flush to the right */
.hc-btn__orb {
  display: inline-grid;
  place-items: center;
  width: 26px; height: 26px;
  border-radius: 999px;
  background: rgba(92, 58, 18, .14);
  font-size: 14px;
  transition: transform .4s var(--ease);
}
.hc-btn:hover .hc-btn__orb { transform: translateX(3px); }
.hc-btn--leaf .hc-btn__orb { background: rgba(255, 255, 255, .22); }

/* ---------- header ---------- */
.hc-head {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 246, 224, .82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.hc-head__in {
  display: flex;
  align-items: center;
  gap: 18px;
  height: 72px;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}
.hc-brand { display: flex; align-items: center; gap: 11px; }
.hc-logo { width: 42px; height: 42px; flex: none; }
.hc-brand__word {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: 21px;
  line-height: .92;
  color: var(--comb);
  display: flex;
  flex-direction: column;
}
.hc-brand__word small {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--comb-soft);
}
.hc-nav { display: flex; gap: 6px; margin-left: auto; }
.hc-nav a {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--comb-soft);
  padding: 9px 14px;
  border-radius: 999px;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.hc-nav a:hover { background: rgba(244, 166, 24, .16); color: var(--comb); }

.hc-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 8px 15px;
  border-radius: 999px;
}
.hc-chip--bank {
  color: var(--comb);
  background: var(--cream-card);
  border: 1.5px solid var(--line);
}
.hc-chip--bank .hc-coin {
  width: 16px; height: 16px;
  border-radius: 999px;
  background: radial-gradient(circle at 35% 30%, #FFD874, var(--amber) 70%);
  box-shadow: inset 0 0 0 2px rgba(92, 58, 18, .25);
}
.hc-chip--age {
  color: #fff;
  background: var(--comb);
  font-size: 13px;
  letter-spacing: .04em;
}

/* ---------- hero ---------- */
.hc-hero {
  position: relative;
  padding: 64px 0 36px;
  overflow: hidden;
}
.hc-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  opacity: .9;
  -webkit-mask-image: linear-gradient(to bottom, #000 60%, transparent);
  mask-image: linear-gradient(to bottom, #000 60%, transparent);
  z-index: -1;
}
.hc-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 36px;
}
.hc-hero h1 {
  font-size: clamp(40px, 6vw, 70px);
  color: var(--comb);
  margin: 18px 0 18px;
}
.hc-hero h1 em { font-style: normal; color: var(--amber-deep); }
.hc-mark {
  background: linear-gradient(120deg, var(--amber-deep), var(--amber));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hc-hero__sub {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 30em;
  margin: 0 0 26px;
}
.hc-hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 22px; }
.hc-hero__legal {
  font-size: 13px;
  color: var(--comb-soft);
  margin: 0;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px 0;
}
.hc-hero__art { position: relative; display: grid; place-items: center; }
.hc-hero__mascot {
  width: min(420px, 90%);
  filter: drop-shadow(0 30px 40px rgba(124, 84, 36, .35));
  animation: hc-float 5s ease-in-out infinite;
}
@keyframes hc-float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-16px) rotate(1deg); }
}

/* ---------- honeycomb tape (compliance ribbon) ---------- */
.hc-ribbon {
  background: var(--comb);
  color: var(--cream);
  overflow: hidden;
  border-top: 3px solid var(--amber);
  border-bottom: 3px solid var(--amber);
}
.hc-ribbon__track {
  display: inline-flex;
  white-space: nowrap;
  padding: 12px 0;
  animation: hc-marquee 26s linear infinite;
}
.hc-ribbon__track span {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .04em;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  gap: 26px;
}
.hc-ribbon__track span::after {
  content: '';
  width: 10px; height: 10px;
  background: var(--amber);
  clip-path: polygon(25% 0,75% 0,100% 50%,75% 100%,25% 100%,0 50%);
}
@keyframes hc-marquee { to { transform: translateX(-50%); } }

/* ---------- sections ---------- */
.hc-sec { padding: 84px 0; }
.hc-sec__head { text-align: center; max-width: 40rem; margin: 0 auto 48px; }
.hc-sec__head h2 {
  font-size: clamp(32px, 4.4vw, 48px);
  color: var(--comb);
  margin-top: 14px;
}
.hc-sec__head p { font-size: 18px; color: var(--ink-soft); margin: 14px 0 0; }

/* ---------- lobby: uniform rounded card grid (NOT boom's bento) ---------- */
.hc-lobby {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 26px;
}
.hc-card {
  position: relative;
  background: var(--cream-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 14px;
  box-shadow: var(--shadow-soft);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  overflow: hidden;
}
.hc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.hc-card__art {
  aspect-ratio: 3 / 2;
  border-radius: calc(var(--r-lg) - 14px);
  background-size: cover;
  background-position: center;
  background-color: var(--line);
  position: relative;
  overflow: hidden;
}
.hc-card__art::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(92, 58, 18, .22), transparent 55%);
}
.hc-card__body { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 8px 6px; }
.hc-card__body h3 { font-size: 22px; color: var(--comb); }
.hc-card__body p { font-size: 13px; color: var(--ink-soft); margin: 3px 0 0; }
.hc-card__tag {
  position: absolute;
  top: 24px; left: 24px;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: var(--comb);
  background: rgba(255, 246, 224, .92);
  border-radius: 999px;
  padding: 5px 12px;
  letter-spacing: .04em;
}

/* ---------- features: three soft floating cards ---------- */
.hc-feats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.hc-feat {
  background: var(--cream-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 34px 28px;
  box-shadow: var(--shadow-soft);
  transition: transform .5s var(--ease);
}
.hc-feat:hover { transform: translateY(-4px); }
.hc-feat__ico {
  width: 58px; height: 58px;
  display: grid; place-items: center;
  border-radius: 18px;
  background: rgba(244, 166, 24, .16);
  margin-bottom: 18px;
}
.hc-feat h3 { font-size: 23px; color: var(--comb); margin-bottom: 10px; }
.hc-feat p { font-size: 15px; line-height: 1.6; color: var(--ink-soft); margin: 0; }

/* ---------- daily bonus panel ---------- */
.hc-daily {
  background: linear-gradient(135deg, #FFE7AE, var(--cream-card));
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lift);
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  overflow: hidden;
}
.hc-daily__art { position: relative; padding: 30px; display: grid; place-items: center; }
.hc-daily__art img { width: min(300px, 80%); filter: drop-shadow(0 22px 30px rgba(124, 84, 36, .35)); }
.hc-daily__copy { padding: 44px 48px 44px 12px; }
.hc-daily__copy h2 { font-size: clamp(30px, 3.6vw, 42px); color: var(--comb); margin: 14px 0 14px; }
.hc-daily__copy p { font-size: 17px; line-height: 1.6; color: var(--comb-soft); margin: 0 0 24px; }
.hc-daily__state { font-size: 14px; color: var(--leaf-deep); font-weight: 700; margin: 16px 0 0 !important; min-height: 1.2em; }

/* ---------- footer / compliance ---------- */
.hc-foot {
  background: var(--comb);
  color: var(--cream);
  padding: 56px 0 36px;
  margin-top: 40px;
}
.hc-foot__banner {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 246, 224, .08);
  border: 1px solid rgba(244, 166, 24, .4);
  border-radius: var(--r-md);
  padding: 18px 24px;
  margin-bottom: 40px;
}
.hc-foot__banner p { margin: 0; font-size: 15px; line-height: 1.5; color: #FBEFD2; }
.hc-foot__banner .hc-chip--age { background: var(--amber); color: var(--comb); flex: none; }
.hc-foot__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 36px;
}
.hc-foot__grid h3 { font-size: 17px; color: var(--amber); margin-bottom: 14px; }
.hc-foot__grid p { font-size: 14px; line-height: 1.7; color: #E7D6B2; margin: 0; }
.hc-foot__grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.hc-foot__grid a { font-size: 14px; color: #E7D6B2; transition: color .3s var(--ease); }
.hc-foot__grid a:hover { color: var(--amber); }
.hc-foot__fine {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(244, 166, 24, .25);
  font-size: 13px;
  color: #CDBE9C;
}

/* language switch (locale fan-out wires these later) */
.lang-switch { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 4px; font-family: 'Baloo 2', sans-serif; font-weight: 600; font-size: 13px; }
.lang-switch .current { color: var(--amber); padding: 6px 10px; }
.lang-switch a { color: #CDBE9C; padding: 6px 10px; border-radius: 999px; transition: background .3s var(--ease), color .3s var(--ease); }
.lang-switch a:hover { background: rgba(244, 166, 24, .18); color: var(--amber); }

/* ---------- legal pages ---------- */
.hc-legal { max-width: 760px; padding-top: 56px; padding-bottom: 40px; }
.hc-legal h1 { font-size: clamp(34px, 5vw, 48px); color: var(--comb); }
.hc-legal .hc-updated { color: var(--comb-soft); font-size: 14px; margin: 8px 0 30px; }
.hc-legal h2 { font-size: 22px; color: var(--comb); margin: 34px 0 10px; }
.hc-legal p, .hc-legal li { font-size: 16px; line-height: 1.7; color: var(--ink-soft); }
.hc-legal ul { padding-left: 20px; }
.hc-legal li { margin-bottom: 8px; }
.hc-legal a { color: var(--leaf-deep); font-weight: 700; }

/* ---------- scroll reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  filter: blur(6px);
  transition: opacity .8s var(--ease), transform .8s var(--ease), filter .8s var(--ease);
}
[data-reveal].is-in { opacity: 1; transform: none; filter: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; filter: none; transition: none; }
  .hc-hero__mascot, .hc-ribbon__track { animation: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 880px) {
  .hc-hero__grid { grid-template-columns: 1fr; text-align: center; gap: 12px; }
  .hc-hero__sub { margin-left: auto; margin-right: auto; }
  .hc-hero__cta, .hc-hero__legal { justify-content: center; }
  .hc-hero__art { order: -1; }
  .hc-hero__mascot { width: min(280px, 70%); }
  .hc-feats { grid-template-columns: 1fr; }
  .hc-daily { grid-template-columns: 1fr; }
  .hc-daily__copy { padding: 12px 32px 40px; text-align: center; }
  .hc-daily__art { padding-bottom: 0; }
  .hc-foot__grid { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 640px) {
  .hc-nav { display: none; }
  .hc-head__in { gap: 10px; }
  .hc-sec { padding: 60px 0; }
  .hc-brand__word small { display: none; }
}
