/* =============================================
   CHIPIRON CLAD — HERO SECTION
   ============================================= */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 2rem 80px;
}

/* ── BACKGROUND LAYERS ── */
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, rgba(240, 184, 85, 0.18) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 80% 70%, rgba(15, 123, 120, 0.12) 0%, transparent 60%),
    linear-gradient(160deg, #FEF0CC 0%, #FDF6E3 40%, #E8F7F6 100%);
  z-index: 0;
}

.hero__pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    radial-gradient(circle at 15% 25%, rgba(200, 132, 42, 0.07) 0%, transparent 40%),
    radial-gradient(circle at 85% 75%, rgba(15, 123, 120, 0.07) 0%, transparent 40%);
}

/* ── DECORATIVE RINGS ── */
.hero__deco {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid;
  animation: spin-slow 14s linear infinite;
  z-index: 1;
  pointer-events: none;
}

.hero__deco--1 {
  width: 320px; height: 320px;
  top: 8%; left: -100px;
  border-color: rgba(200, 132, 42, 0.18);
}

.hero__deco--2 {
  width: 220px; height: 220px;
  bottom: 12%; right: -60px;
  border-color: rgba(15, 123, 120, 0.18);
  animation-direction: reverse;
}

.hero__deco--3 {
  width: 130px; height: 130px;
  top: 58%; left: 6%;
  border-color: rgba(200, 132, 42, 0.14);
  animation-duration: 9s;
}

.hero__deco--4 {
  width: 80px; height: 80px;
  top: 20%; right: 18%;
  border-color: rgba(15, 123, 120, 0.12);
  animation-duration: 7s;
}

/* ── INNER GRID ── */
.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1160px;
  width: 100%;
  align-items: center;
}

/* ── CONTENT SIDE ── */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 132, 42, 0.10);
  border: 1px solid rgba(200, 132, 42, 0.28);
  border-radius: var(--r-full);
  padding: 6px 16px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--bronze);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.6s ease both;
}

.hero__badge-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-glow 2s infinite;
}

.hero__h1 {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--deep-brown);
  margin-bottom: 1.25rem;
  animation: fadeUp 0.7s ease 0.1s both;
}

.hero__h1 em {
  font-style: normal;
  color: var(--gold);
  display: inline-block;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

.hero__sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 2.25rem;
  animation: fadeUp 0.7s ease 0.2s both;
  line-height: 1.75;
}

.hero__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fadeUp 0.7s ease 0.3s both;
}

/* ── FREE TAG ── */
.hero__free-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--teal);
  margin-top: 1.25rem;
  animation: fadeUp 0.7s ease 0.4s both;
}

.hero__free-tag::before {
  content: '✓';
  width: 18px; height: 18px;
  background: rgba(15, 123, 120, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

/* ── VISUAL CARD ── */
.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeUp 0.8s ease 0.35s both;
}

.hero__card {
  width: 100%;
  max-width: 420px;
  background: linear-gradient(145deg, rgba(255, 252, 245, 0.95), rgba(253, 246, 227, 0.75));
  border: 1px solid rgba(200, 132, 42, 0.3);
  border-radius: var(--r-xl);
  padding: 2rem;
  box-shadow:
    0 20px 60px rgba(200, 132, 42, 0.14),
    0 4px 16px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
}

.hero__card-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 1.25rem;
}

/* ── SLOT REELS ── */
.hero__reels {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.reel {
  flex: 1;
  background: linear-gradient(180deg, var(--deep-brown) 0%, #1A0C02 100%);
  border-radius: 14px;
  height: 106px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  border: 2px solid rgba(200, 132, 42, 0.35);
  position: relative;
  overflow: hidden;
  box-shadow:
    inset 0 2px 8px rgba(0, 0, 0, 0.5),
    0 4px 12px rgba(0, 0, 0, 0.15);
}

.reel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to bottom, rgba(255,255,255,0.06), transparent);
  pointer-events: none;
}

.reel__symbol {
  display: block;
  transition: transform 0.08s;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
}

.reel--spinning .reel__symbol {
  animation: reel-spin 0.1s steps(1) infinite;
}

@keyframes reel-spin {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-4px); }
  100% { transform: translateY(0); }
}

/* ── SPIN BUTTON ── */
.hero__spin-btn {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border: none;
  border-radius: var(--r-md);
  width: 100%;
  padding: 1rem;
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(200, 132, 42, 0.4);
  transition: transform var(--t-base), box-shadow var(--t-base);
  margin-bottom: 1rem;
}

.hero__spin-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 7px 24px rgba(200, 132, 42, 0.55);
}

.hero__spin-btn:active {
  transform: translateY(0);
}

/* ── STATS ── */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}

.hero__stat {
  text-align: center;
  background: rgba(200, 132, 42, 0.07);
  border-radius: var(--r-sm);
  padding: 0.65rem 0.4rem;
  border: 1px solid rgba(200, 132, 42, 0.14);
}

.hero__stat-val {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}

.hero__stat-lbl {
  font-size: 0.68rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── WIN LINE INDICATOR ── */
.hero__winline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-light);
}

.winline-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.5;
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero__visual {
    order: -1;
  }
  .hero__card {
    max-width: 360px;
  }
  .hero {
    padding: 100px 1.5rem 60px;
    text-align: center;
  }
  .hero__sub,
  .hero__btns {
    margin-left: auto;
    margin-right: auto;
  }
  .hero__btns {
    justify-content: center;
  }
  .hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero__card {
    max-width: 100%;
  }
  .reel {
    height: 88px;
    font-size: 2.3rem;
  }
}
