/*
  hhteers.com — Main Stylesheet
  Design: Deep navy + gold accent
  Fonts: Montserrat (headings) + Inter (body)
*/

/* ============================
   CSS Custom Properties
   ============================ */
:root {
  --bg-main:      #07091a;
  --bg-section:   #0c1122;
  --bg-alt:       #0f1530;
  --bg-footer:    #060818;
  --bg-card:      #ffffff;

  --gold:         #d4a843;
  --gold-light:   #f0c96a;
  --gold-dark:    #a07c18;
  --gold-btn:     #f5c518;
  --emerald:      #00c97a;
  --emerald-dark: #009960;

  --text:         #dde2f0;
  --text-muted:   #7a8499;
  --text-dark:    #1a1e38;
  --border:       rgba(255, 255, 255, 0.07);

  --font-heading: 'Montserrat', sans-serif;
  --font-body:    'Inter', sans-serif;

  --container:    900px;
  --r-sm:         8px;
  --r-md:         14px;
  --r-lg:         22px;

  --shadow-card:  0 24px 64px rgba(0, 0, 0, 0.55), 0 4px 16px rgba(0, 0, 0, 0.3);
  --shadow-glow:  0 0 40px rgba(212, 168, 67, 0.18);
  --transition:   0.3s ease;
}

/* ============================
   Reset & Base
   ============================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

/* ============================
   Container
   ============================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

/* ============================
   HERO
   ============================ */
.hero {
  position: relative;
  background: var(--bg-main);
  padding: 110px 0 130px;
  text-align: center;
  overflow: hidden;
}

/* Gradient orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-orb--1 {
  width: 700px;
  height: 500px;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(100, 60, 200, 0.28) 0%, transparent 70%);
  animation: orbFloat1 12s ease-in-out infinite alternate;
}

.hero-orb--2 {
  width: 400px;
  height: 350px;
  bottom: -80px;
  right: -60px;
  background: radial-gradient(ellipse, rgba(212, 168, 67, 0.12) 0%, transparent 70%);
  animation: orbFloat2 9s ease-in-out infinite alternate;
}

.hero-orb--3 {
  width: 350px;
  height: 300px;
  bottom: -50px;
  left: -60px;
  background: radial-gradient(ellipse, rgba(40, 80, 200, 0.15) 0%, transparent 70%);
  animation: orbFloat3 11s ease-in-out infinite alternate;
}

/* Bokeh dots */
.hero-bokeh {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bokeh span {
  position: absolute;
  border-radius: 50%;
  animation: bokehPulse var(--dur, 4s) ease-in-out infinite alternate;
}

.hero-bokeh span:nth-child(1) { width: 8px;  height: 8px;  top: 18%; left: 12%; background: rgba(212,168,67,0.5);  --dur: 3.5s; }
.hero-bokeh span:nth-child(2) { width: 5px;  height: 5px;  top: 35%; left: 88%; background: rgba(212,168,67,0.35); --dur: 5s; }
.hero-bokeh span:nth-child(3) { width: 10px; height: 10px; top: 60%; left: 25%; background: rgba(100,60,200,0.4);  --dur: 4.2s; }
.hero-bokeh span:nth-child(4) { width: 6px;  height: 6px;  top: 75%; left: 72%; background: rgba(212,168,67,0.4);  --dur: 6s; }
.hero-bokeh span:nth-child(5) { width: 4px;  height: 4px;  top: 20%; left: 55%; background: rgba(255,255,255,0.3); --dur: 3.8s; }
.hero-bokeh span:nth-child(6) { width: 7px;  height: 7px;  top: 50%; left: 45%; background: rgba(40,80,200,0.3);   --dur: 7s; }
.hero-bokeh span:nth-child(7) { width: 5px;  height: 5px;  top: 85%; left: 15%; background: rgba(212,168,67,0.3);  --dur: 5.5s; }
.hero-bokeh span:nth-child(8) { width: 9px;  height: 9px;  top: 10%; left: 78%; background: rgba(100,60,200,0.3);  --dur: 4.8s; }

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.6);
  animation: fadeInDown 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* ============================
   CARDS SECTION
   ============================ */
.cards-section {
  background: var(--bg-section);
  padding: 44px 0 60px;
}

/* ============================
   CASINO CARD
   ============================ */
.casino-card {
  display: block;
  background: var(--bg-card);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-card);
  padding: 26px 28px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
  color: var(--text-dark);
  border: 1px solid rgba(212, 168, 67, 0.12);
}

.casino-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}

.casino-card:hover .btn-cta {
  background: linear-gradient(135deg, #ffd835 0%, #f0a820 100%);
  box-shadow: 0 8px 28px rgba(245, 197, 24, 0.6);
  transform: scale(1.03);
}

.card-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--emerald);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.card-badge::before {
  content: '★';
  font-size: 0.7rem;
}

.card-body {
  display: flex;
  align-items: center;
  gap: 28px;
}

.card-logo-wrap {
  flex: 0 0 auto;
}

.card-logo {
  width: 140px;
  height: 60px;
  object-fit: contain;
}

.card-info {
  flex: 1;
  min-width: 0;
}

.bonus-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #8892a4;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.bonus-text {
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: #2a3050;
  font-weight: 600;
  line-height: 1.4;
}

.card-action {
  flex: 0 0 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.card-stars {
  display: flex;
  gap: 3px;
  animation: starShimmer 3s ease-in-out infinite;
}

.star {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.card-score {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 900;
  color: #1a1e38;
  line-height: 1;
}

.btn-cta {
  background: linear-gradient(135deg, #f5c518 0%, #e8a020 100%);
  color: #1a1000;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  padding: 12px 18px;
  border-radius: var(--r-sm);
  text-align: center;
  width: 100%;
  transition: all var(--transition);
  box-shadow: 0 4px 18px rgba(245, 197, 24, 0.4);
  text-transform: uppercase;
}

/* ============================
   INFO SECTIONS
   ============================ */
.info-section {
  padding: 72px 0;
  border-top: 1px solid var(--border);
}

.info-section:nth-of-type(odd) {
  background: var(--bg-section);
}

.info-section:nth-of-type(even) {
  background: var(--bg-alt);
}

.info-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 28px;
  line-height: 1.3;
  position: relative;
  padding-bottom: 18px;
}

.info-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
}

.info-section p {
  font-size: 0.96rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 18px;
  max-width: 680px;
}

.info-section p:last-child {
  margin-bottom: 0;
}

/* ============================
   DISCLAIMER
   ============================ */
.disclaimer {
  background: #080b1c;
  padding: 22px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.disclaimer-inner {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.disclaimer-badge {
  flex-shrink: 0;
  background: var(--gold);
  color: #000;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 0.78rem;
  padding: 5px 9px;
  border-radius: 5px;
  margin-top: 1px;
  letter-spacing: 0.04em;
}

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

.disclaimer p strong {
  color: var(--text);
  font-weight: 600;
}

/* ============================
   FOOTER
   ============================ */
.footer {
  background: var(--bg-footer);
}

/* Info block */
.footer-info {
  border-bottom: 1px solid var(--border);
}

.footer-info-inner {
  display: flex;
  gap: 56px;
  padding-top: 56px;
  padding-bottom: 56px;
}

.footer-col {
  flex: 1;
}

.footer-col h3 {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  margin-top: 26px;
}

.footer-col h3:first-child {
  margin-top: 0;
}

.footer-col p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 10px;
}

.footer-col p:last-child {
  margin-bottom: 0;
}

/* Logos */
.footer-logos {
  border-bottom: 1px solid var(--border);
}

.footer-logos-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 28px;
  padding-bottom: 28px;
  flex-wrap: wrap;
}

.footer-logos-inner a {
  display: block;
  transition: opacity var(--transition), transform var(--transition);
}

.footer-logos-inner a:hover {
  opacity: 0.75;
  transform: scale(1.04);
}

.footer-logos-inner img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

/* Responsible gambling row */
.footer-resp {
  border-bottom: 1px solid var(--border);
}

.footer-resp-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 26px;
  padding-bottom: 26px;
  flex-wrap: wrap;
}

.footer-resp-inner a {
  display: block;
  transition: opacity var(--transition), transform var(--transition);
}

.footer-resp-inner a:hover {
  opacity: 0.75;
  transform: scale(1.04);
}

.footer-resp-inner img,
.footer-arrow-img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.footer-hotline {
  display: block;
}

/* Bottom bar */
.footer-bottom {
  padding: 22px 0;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 22px;
}

.footer-nav a {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color var(--transition);
  white-space: nowrap;
}

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

.copyright {
  font-size: 0.76rem;
  color: var(--text-muted);
  opacity: 0.55;
}

/* ============================
   COOKIE BANNER
   ============================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(6, 8, 24, 0.97);
  border-top: 1px solid rgba(212, 168, 67, 0.2);
  padding: 16px 0;
  z-index: 9999;
  backdrop-filter: blur(12px);
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-inner p {
  flex: 1;
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.5;
  min-width: 200px;
}

.cookie-inner a {
  color: var(--gold);
  transition: color var(--transition);
}

.cookie-inner a:hover {
  color: var(--gold-light);
}

.cookie-accept {
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #000;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 10px 26px;
  border: none;
  border-radius: var(--r-sm);
  cursor: pointer;
  letter-spacing: 0.07em;
  transition: all var(--transition);
  white-space: nowrap;
}

.cookie-accept:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  transform: scale(1.04);
  box-shadow: 0 4px 18px rgba(212, 168, 67, 0.35);
}

/* ============================
   SCROLL REVEAL
   ============================ */
.reveal {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================
   POLICY PAGE STYLES
   ============================ */
.policy-header {
  background: var(--bg-main);
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}

.policy-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.02em;
}

.site-logo span {
  color: var(--text);
}

.back-link {
  font-size: 0.84rem;
  color: var(--text-muted);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.back-link::before {
  content: '←';
}

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

.policy-hero {
  background: var(--bg-section);
  padding: 60px 0 50px;
  border-bottom: 1px solid var(--border);
}

.policy-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1.2;
  margin-bottom: 12px;
}

.policy-hero p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.policy-content {
  background: var(--bg-main);
  padding: 60px 0 80px;
}

.policy-body {
  max-width: 720px;
}

.policy-body h2 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
  margin: 36px 0 14px;
}

.policy-body h2:first-child {
  margin-top: 0;
}

.policy-body p {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 14px;
}

.policy-body ul {
  padding-left: 20px;
  margin-bottom: 14px;
}

.policy-body ul li {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 6px;
}

.policy-body a {
  color: var(--gold);
  transition: color var(--transition);
}

.policy-body a:hover {
  color: var(--gold-light);
}

/* ============================
   ANIMATIONS
   ============================ */
@keyframes orbFloat1 {
  0%   { transform: translateX(-50%) scale(1) translate(0, 0); }
  100% { transform: translateX(-50%) scale(1.15) translate(3%, 4%); }
}

@keyframes orbFloat2 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-5%, -8%) scale(1.1); }
}

@keyframes orbFloat3 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(6%, -5%) scale(1.12); }
}

@keyframes bokehPulse {
  0%   { opacity: 0.3; transform: scale(1); }
  100% { opacity: 0.9; transform: scale(1.6); }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-36px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes starShimmer {
  0%   { filter: brightness(1); }
  50%  { filter: brightness(1.35) drop-shadow(0 0 4px rgba(245, 197, 24, 0.6)); }
  100% { filter: brightness(1); }
}

/* ============================
   RESPONSIVE – TABLET
   ============================ */
@media (max-width: 768px) {

  /* Hero gets extra bottom padding so card overlaps it */
  .hero {
    padding: 80px 0 110px;
  }

  /* Pull the cards section up to overlap the hero */
  .cards-section {
    margin-top: -70px;
    padding: 0 0 40px;
    background: transparent;
    position: relative;
    z-index: 10;
  }

  /* Full-width card with no side padding */
  .cards-container {
    padding-inline: 0;
  }

  .casino-card {
    border-radius: 0;
    margin-top: 0;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6);
  }

  .card-body {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .card-logo-wrap {
    margin-bottom: 2px;
  }

  .card-action {
    flex: auto;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .btn-cta {
    width: auto;
    flex: 1 0 120px;
  }

  .info-section {
    padding: 52px 0;
  }

  .footer-info-inner {
    flex-direction: column;
    gap: 32px;
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .policy-header-inner {
    flex-wrap: wrap;
  }
}

/* ============================
   RESPONSIVE – MOBILE
   ============================ */
@media (max-width: 480px) {

  .hero {
    padding: 70px 0 100px;
  }

  .hero-title {
    font-size: 1.7rem;
  }

  .cards-section {
    margin-top: -60px;
  }

  .card-body {
    padding: 0;
  }

  .footer-nav {
    gap: 5px 14px;
  }

  .footer-logos-inner {
    gap: 20px;
  }

  .footer-resp-inner {
    gap: 14px;
  }

  .footer-resp-inner img,
  .footer-arrow-img {
    height: 40px;
  }

  .cookie-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .cookie-accept {
    width: 100%;
    text-align: center;
  }
}
