/* =========================================
   Best Casino Pakistan — Premium Luxury Theme
   (HTML unchanged, responsive preserved)
   ========================================= */

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Luxury base */
  --bg: #070a12;
  --bg-2: #0b1020;
  --bg-3: #0f172a;
  --card: rgba(255, 255, 255, 0.06);
  --card-2: rgba(255, 255, 255, 0.075);

  /* Text */
  --text: #eef2ff;
  --text-primary: #eef2ff;
  --text-secondary: rgba(238, 242, 255, 0.78);
  --text-muted: rgba(238, 242, 255, 0.58);

  /* Accents */
  --gold: #f6d365;
  --gold-2: #fda085;
  --emerald: #22c55e;
  --emerald-2: #34d399;
  --cyan: #22d3ee;

  /* Borders / glass */
  --glass-bg: rgba(255, 255, 255, 0.06);
  --glass-bg-strong: rgba(255, 255, 255, 0.09);
  --glass-border: rgba(255, 255, 255, 0.12);
  --glass-border-strong: rgba(255, 255, 255, 0.18);

  /* Gradients */
  --gradient-gold: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  --gradient-emerald: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-2) 100%);
  --gradient-hero: radial-gradient(1200px 600px at 15% 25%, rgba(246, 211, 101, 0.22), transparent 60%),
    radial-gradient(900px 500px at 80% 20%, rgba(34, 197, 94, 0.16), transparent 55%),
    radial-gradient(900px 500px at 35% 85%, rgba(34, 211, 238, 0.10), transparent 58%);

  /* Shadows */
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.28);
  --shadow-card: 0 18px 55px rgba(0, 0, 0, 0.40);
  --glow-gold: 0 0 0 1px rgba(246, 211, 101, 0.16), 0 0 34px rgba(246, 211, 101, 0.18);
  --glow-emerald: 0 0 0 1px rgba(34, 197, 94, 0.16), 0 0 34px rgba(34, 197, 94, 0.16);

  /* Fonts */
  --font-primary: "Roboto", sans-serif;
  --font-heading: "Oswald", sans-serif;

  /* Radius */
  --r-xl: 22px;
  --r-lg: 18px;
  --r-md: 14px;
  --r-sm: 12px;

  /* Helpers */
  --accent: var(--gold);
  --accent-color: var(--gold);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background: radial-gradient(1200px 800px at 50% -10%, rgba(255, 255, 255, 0.06), transparent 60%),
    radial-gradient(900px 600px at 10% 10%, rgba(246, 211, 101, 0.08), transparent 60%),
    radial-gradient(900px 600px at 90% 10%, rgba(34, 197, 94, 0.06), transparent 60%),
    var(--bg);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
}

/* Container */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section spacing */
section {
  padding: 5.2rem 0;
}

/* =========================================
   Header / Navbar
   ========================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(7, 10, 18, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.40);
}

.navbar {
  padding: 0.95rem 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Brand */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.logo a {
  color: var(--text-primary);
  text-decoration: none;
}

.logo i {
  color: var(--gold);
  font-size: 2rem;
  filter: drop-shadow(0 8px 18px rgba(246, 211, 101, 0.22));
  animation: spin 6s linear infinite;
}

.logo .accent {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.site-flag {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.site-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 7px;
}

/* Menu */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 1.9rem;
  align-items: center;
}

.nav-link {
  color: rgba(238, 242, 255, 0.82);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: all 0.25s ease;
  position: relative;
  padding: 0.55rem 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-gold);
  transition: width 0.25s ease;
  border-radius: 999px;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  padding: 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.hamburger span {
  width: 28px;
  height: 2px;
  background: rgba(238, 242, 255, 0.88);
  transition: 0.25s ease;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile menu (if JS toggles .active on .nav-menu) */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  .nav-menu.active {
    display: flex;
    position: absolute;
    top: 72px;
    left: 16px;
    right: 16px;
    flex-direction: column;
    gap: 10px;
    padding: 14px;
    border-radius: 16px;
    background: rgba(11, 16, 32, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(14px);
  }
  .nav-menu.active .nav-link {
    width: 100%;
    padding: 12px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
  }
  .nav-menu.active .nav-link:hover,
  .nav-menu.active .nav-link.active {
    background: rgba(246, 211, 101, 0.10);
    border-color: rgba(246, 211, 101, 0.18);
    color: var(--gold);
  }
}

/* =========================================
   Hero
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 86px;
  background: var(--bg);
}

.hero-background {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.6rem;
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 1.25rem;
  letter-spacing: 0.5px;
}

.hero-subtitle {
  font-size: 1.18rem;
  color: var(--text-secondary);
  margin-bottom: 2.1rem;
  line-height: 1.85;
  max-width: 680px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  padding: 1.05rem 2.1rem;
  border: none;
  border-radius: 999px;
  font-size: 1.04rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.2px;
}

.btn:active {
  transform: translateY(0px) scale(0.99);
}

.btn-primary {
  background: var(--gradient-gold);
  color: #10131d;
  box-shadow: var(--glow-gold);
  border: 1px solid rgba(246, 211, 101, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(246, 211, 101, 0.22), 0 18px 55px rgba(246, 211, 101, 0.22);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-soft);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(246, 211, 101, 0.22);
  box-shadow: 0 0 0 1px rgba(246, 211, 101, 0.12), 0 18px 55px rgba(0, 0, 0, 0.40);
}

.pulse {
  animation: pulse 2.2s infinite;
}

/* Hero feature cards */
.hero-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.7rem 1.6rem;
  border-radius: var(--r-xl);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: rgba(246, 211, 101, 0.22);
}

.feature-card i {
  font-size: 2.25rem;
  color: var(--emerald);
  margin-bottom: 0.85rem;
  filter: drop-shadow(0 10px 20px rgba(34, 197, 94, 0.16));
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
  color: var(--text-primary);
  letter-spacing: 0.2px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Floating icons */
.floating-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.floating-icon {
  position: absolute;
  font-size: 2rem;
  color: rgba(246, 211, 101, 0.24);
  animation: float 7s ease-in-out infinite;
  filter: blur(0px);
}

.floating-icon:nth-child(1) { top: 18%; left: 10%; animation-delay: 0s; }
.floating-icon:nth-child(2) { top: 62%; left: 14%; color: rgba(34, 197, 94, 0.22); animation-delay: 1s; }
.floating-icon:nth-child(3) { top: 28%; right: 20%; color: rgba(253, 160, 133, 0.18); animation-delay: 2s; }
.floating-icon:nth-child(4) { bottom: 28%; left: 22%; color: rgba(34, 211, 238, 0.16); animation-delay: 3s; }
.floating-icon:nth-child(5) { top: 72%; right: 10%; color: rgba(246, 211, 101, 0.22); animation-delay: 4s; }

/* =========================================
   Section headers / titles
   ========================================= */
.section-header {
  text-align: center;
  margin-bottom: 3.8rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.45rem;
  font-weight: 800;
  margin-bottom: 0.9rem;
  position: relative;
  color: var(--text-primary);
  letter-spacing: 0.4px;
}

.title-decoration {
  display: block;
  width: 124px;
  height: 4px;
  background: var(--gradient-gold);
  margin: 1rem auto 0;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(246, 211, 101, 0.12);
}

.section-subtitle {
  font-size: 1.14rem;
  color: var(--text-secondary);
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.85;
}

/* =========================================
   Top Casinos
   ========================================= */
.top-casinos {
  background: radial-gradient(1200px 500px at 50% 0%, rgba(255, 255, 255, 0.05), transparent 65%),
    var(--bg-2);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.casino-tiles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 2rem;
}

.casino-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--r-xl);
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  box-shadow: var(--shadow-soft);
}

.casino-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
  border-color: rgba(246, 211, 101, 0.20);
}

.casino-badge {
  position: absolute;
  top: -12px;
  left: 2rem;
  background: var(--gradient-gold);
  color: #10131d;
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  font-weight: 900;
  font-size: 0.88rem;
  box-shadow: var(--glow-gold);
  border: 1px solid rgba(246, 211, 101, 0.22);
}

.casino-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.35rem;
  gap: 12px;
}

.casino-logo .logo-placeholder {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  padding: 0.95rem 1.2rem;
  border-radius: 14px;
  font-weight: 900;
  font-size: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.35);
}

/* Keep your per-brand classes working */
.logo-placeholder.rockyspin {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.95) 0%, rgba(52, 211, 153, 0.92) 100%);
  color: #07120a;
  border-color: rgba(34, 197, 94, 0.25);
}
.logo-placeholder.slotmonster {
  background: linear-gradient(135deg, rgba(246, 211, 101, 0.95) 0%, rgba(253, 160, 133, 0.92) 100%);
  color: #10131d;
  border-color: rgba(246, 211, 101, 0.25);
}

/* Rating */
.casino-rating {
  text-align: right;
}
.stars {
  color: rgba(246, 211, 101, 0.92);
  margin-bottom: 0.25rem;
  font-size: 0.92rem;
}
.rating-text {
  font-weight: 800;
  color: rgba(238, 242, 255, 0.92);
  font-size: 0.92rem;
}

.casino-name {
  font-family: var(--font-heading);
  font-size: 1.62rem;
  margin-bottom: 0.9rem;
  color: var(--text-primary);
  letter-spacing: 0.25px;
}

.casino-features {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.8rem;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text-secondary);
}

.feature i {
  color: var(--emerald-2);
  width: 20px;
  margin-top: 2px;
  filter: drop-shadow(0 10px 18px rgba(34, 197, 94, 0.12));
}

/* Bonus box inside card */
.bonus-info {
  background: linear-gradient(135deg, rgba(246, 211, 101, 0.10) 0%, rgba(34, 197, 94, 0.08) 100%);
  border-radius: 16px;
  padding: 1.4rem;
  margin-bottom: 1.6rem;
  text-align: center;
  border: 1px solid rgba(246, 211, 101, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.bonus-amount {
  font-size: 2.55rem;
  font-weight: 900;
  color: var(--emerald-2);
  font-family: var(--font-heading);
  letter-spacing: 0.3px;
}

.bonus-details {
  color: rgba(238, 242, 255, 0.78);
  margin-top: 0.35rem;
  font-size: 0.95rem;
  line-height: 1.55;
}

.bonus-code {
  display: block;
  color: rgba(246, 211, 101, 0.95);
  font-weight: 800;
  margin-top: 0.45rem;
}

/* CTA buttons inside cards */
.casino-actions {
  display: flex;
  gap: 0.9rem;
}

.btn-play {
  flex: 2;
  background: var(--gradient-emerald);
  color: #07120a;
  justify-content: center;
  font-weight: 900;
  border: 1px solid rgba(34, 197, 94, 0.25);
  box-shadow: var(--glow-emerald);
}

.btn-play:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.18), 0 20px 55px rgba(34, 197, 94, 0.18);
}

.btn-review {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 1px solid rgba(246, 211, 101, 0.18);
  justify-content: center;
  font-weight: 900;
}

.btn-review:hover {
  transform: translateY(-2px);
  background: rgba(246, 211, 101, 0.12);
  border-color: rgba(246, 211, 101, 0.22);
}

.glow {
  animation: glow-emerald 2.2s ease-in-out infinite alternate;
}

/* =========================================
   Promo banner (premium look)
   ========================================= */
.promo-banner {
  background: linear-gradient(135deg, rgba(246, 211, 101, 0.20) 0%, rgba(253, 160, 133, 0.18) 100%);
  border: 1px solid rgba(246, 211, 101, 0.20);
  border-radius: 14px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.4rem;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

.promo-icon {
  font-size: 22px;
  filter: drop-shadow(0 10px 18px rgba(246, 211, 101, 0.14));
}

.promo-text {
  color: rgba(238, 242, 255, 0.92);
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.55px;
  flex: 1;
}

/* =========================================
   Features section
   ========================================= */
.features {
  background: radial-gradient(900px 450px at 50% 0%, rgba(255, 255, 255, 0.05), transparent 60%),
    var(--bg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.2rem;
  margin-top: 1.8rem;
}

.feature-item {
  text-align: center;
  padding: 2.4rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--r-xl);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  box-shadow: var(--shadow-soft);
}

.feature-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: rgba(246, 211, 101, 0.20);
}

.feature-icon {
  width: 88px;
  height: 88px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.35rem;
  font-size: 2.35rem;
  color: var(--gold);
  border: 1px solid rgba(246, 211, 101, 0.20);
  box-shadow: var(--glow-gold);
}

.feature-item:nth-child(even) .feature-icon {
  color: var(--emerald);
  border-color: rgba(34, 197, 94, 0.22);
  box-shadow: var(--glow-emerald);
}

.feature-item h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  color: var(--text-primary);
}

.feature-item p {
  color: var(--text-secondary);
  line-height: 1.75;
  font-size: 1rem;
}

/* =========================================
   Payments
   ========================================= */
.payments-section {
  background: var(--bg-2);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.payments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.payment-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--r-xl);
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.payment-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
  border-color: rgba(246, 211, 101, 0.20);
}

.payment-card.featured {
  border-color: rgba(34, 197, 94, 0.26);
  box-shadow: var(--shadow-card);
}

.payment-badge {
  position: absolute;
  top: -12px;
  right: 1.5rem;
  background: var(--gradient-gold);
  color: #10131d;
  padding: 0.35rem 0.95rem;
  border-radius: 999px;
  font-weight: 900;
  font-size: 0.78rem;
  border: 1px solid rgba(246, 211, 101, 0.22);
  box-shadow: var(--glow-gold);
}

.payment-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.payment-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: #07120a;
  background: var(--gradient-emerald);
  border: 1px solid rgba(34, 197, 94, 0.22);
}

.payment-icon.cards,
.payment-icon.crypto {
  background: var(--gradient-gold);
  color: #10131d;
  border-color: rgba(246, 211, 101, 0.22);
}

.payment-icon.neosurf {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.payment-header h3 {
  font-family: var(--font-heading);
  font-size: 1.28rem;
  color: var(--text-primary);
}

.payment-description {
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1.35rem;
}

.payment-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.feature-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.85rem;
  color: rgba(238, 242, 255, 0.90);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

/* =========================================
   Bonuses
   ========================================= */
.bonuses-section {
  background: var(--bg);
}

.bonus-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.bonus-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--r-xl);
  padding: 2.4rem 2rem;
  border: 1px solid rgba(246, 211, 101, 0.18);
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.bonus-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-card);
  border-color: rgba(246, 211, 101, 0.22);
}

.bonus-card.hot {
  border-color: rgba(34, 197, 94, 0.24);
  box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.12), 0 24px 70px rgba(0, 0, 0, 0.45);
}

.bonus-label {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(238, 242, 255, 0.92);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  display: inline-block;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.bonus-card.hot .bonus-label {
  background: rgba(34, 197, 94, 0.16);
  border-color: rgba(34, 197, 94, 0.22);
}

.bonus-card h3 {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  margin-bottom: 1.2rem;
  color: var(--text-primary);
}

.bonus-amount-large {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--gold);
  font-family: var(--font-heading);
  margin-bottom: 0.85rem;
  letter-spacing: 0.3px;
}

.bonus-card.hot .bonus-amount-large {
  color: var(--emerald-2);
}

.bonus-split {
  margin: 1.2rem 0;
  color: var(--text-secondary);
}

.bonus-split p {
  margin: 0.45rem 0;
  font-size: 0.96rem;
}

.bonus-extras {
  color: rgba(246, 211, 101, 0.92);
  font-weight: 900;
  font-size: 1.05rem;
  margin: 1.2rem 0 1.5rem;
}

/* =========================================
   Reviews
   ========================================= */
.reviews-section {
  background: var(--bg-2);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.review-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--r-xl);
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
  border-color: rgba(246, 211, 101, 0.20);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.35rem;
  gap: 1rem;
}

.reviewer-info {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.reviewer-avatar {
  width: 52px;
  height: 52px;
  background: rgba(34, 197, 94, 0.18);
  border: 1px solid rgba(34, 197, 94, 0.22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald-2);
  font-size: 1.15rem;
  flex-shrink: 0;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

.reviewer-avatar.female {
  background: rgba(246, 211, 101, 0.14);
  border-color: rgba(246, 211, 101, 0.20);
  color: var(--gold);
}

.reviewer-details h4 {
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 900;
  margin-bottom: 0.25rem;
}

.reviewer-location {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.review-rating .stars {
  color: rgba(246, 211, 101, 0.92);
  font-size: 0.92rem;
}

.review-title {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  color: var(--text-primary);
  margin-bottom: 0.85rem;
  line-height: 1.45;
}

.review-text {
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1rem;
  font-style: italic;
  opacity: 0.95;
}

.review-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.review-date {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.86rem;
  color: var(--text-muted);
}

/* =========================================
   FAQ
   ========================================= */
.faq-section {
  background: var(--bg);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--r-lg);
  padding: 2rem;
  border: 1px solid rgba(246, 211, 101, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  box-shadow: var(--shadow-soft);
}

.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: rgba(246, 211, 101, 0.22);
}

.faq-question {
  color: var(--text-primary);
  font-size: 1.18rem;
  margin-bottom: 0.85rem;
  font-weight: 900;
  font-family: var(--font-heading);
  letter-spacing: 0.2px;
}

.faq-answer p {
  color: var(--text-secondary);
  line-height: 1.75;
}

/* =========================================
   Responsible gambling section
   ========================================= */
.responsible-gambling-section {
  background: radial-gradient(900px 450px at 20% 20%, rgba(246, 211, 101, 0.10), transparent 60%),
    radial-gradient(900px 450px at 80% 20%, rgba(34, 197, 94, 0.08), transparent 60%),
    var(--bg-2);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.rg-content {
  max-width: 920px;
  margin: 0 auto;
}

.rg-text {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.9rem;
  border-radius: var(--r-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 2rem;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-secondary);
  box-shadow: var(--shadow-soft);
}

.rg-text strong {
  color: var(--text-primary);
}

.support-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: var(--r-lg);
  border: 1px solid rgba(34, 197, 94, 0.20);
  box-shadow: var(--shadow-soft);
}

.service-item .service-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 197, 94, 0.14);
  border: 1px solid rgba(34, 197, 94, 0.22);
  color: var(--emerald-2);
  margin-bottom: 1rem;
}

.service-item h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 0.8rem;
}

.service-item p {
  color: var(--text-secondary);
  margin: 0.45rem 0;
  line-height: 1.65;
}

/* =========================================
   SEO section + author card (your existing HTML)
   ========================================= */
.seo-section {
  padding: 60px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: var(--bg);
}

.seo-text {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.78;
}

.seo-text h2,
.seo-text h3,
.seo-text h4 {
  color: var(--text-primary);
  margin: 18px 0 10px;
  line-height: 1.25;
  letter-spacing: 0.2px;
}

.seo-text ul,
.seo-text ol {
  margin: 10px 0 14px 20px;
}

.seo-text table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  margin: 14px 0 18px;
}

.seo-text th,
.seo-text td {
  padding: 12px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-align: left;
  color: var(--text-secondary);
}

.seo-text th {
  color: var(--text-primary);
  font-weight: 900;
  background: rgba(255,255,255,0.05);
}

.author-section {
  padding: 60px 0 10px;
  background: var(--bg);
}

.author-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  padding: 22px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  box-shadow: var(--shadow-card);
}

.author-photo {
  width: 180px;
  height: 180px;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
}

.author-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.author-info h3 {
  margin: 0 0 6px;
  font-size: 26px;
  letter-spacing: 0.2px;
}

.author-role {
  color: var(--text-secondary);
  font-weight: 800;
  margin-bottom: 12px;
}

.author-bio {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 14px;
}

.author-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.author-links a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 900;
  padding: 8px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255, 255, 255, 0.05);
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.author-links a:hover {
  transform: translateY(-1px);
  border-color: rgba(246, 211, 101, 0.22);
  background: rgba(246, 211, 101, 0.10);
}

/* =========================================
   Footer
   ========================================= */
.footer {
  background: radial-gradient(1200px 500px at 50% 0%, rgba(255, 255, 255, 0.06), transparent 65%),
    #04060c;
  color: rgba(238, 242, 255, 0.78);
  border-top: 1px solid rgba(246, 211, 101, 0.18);
  padding: 3.2rem 0 1.2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.footer-logo i {
  color: var(--gold);
  filter: drop-shadow(0 10px 18px rgba(246, 211, 101, 0.18));
}

.footer-logo .accent {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-section p {
  color: rgba(238, 242, 255, 0.70);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(238, 242, 255, 0.78);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.social-links a:hover {
  background: rgba(246, 211, 101, 0.12);
  transform: translateY(-3px);
  border-color: rgba(246, 211, 101, 0.22);
  color: var(--gold);
}

.footer-section h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin: 0.6rem 0;
}

.footer-section ul li a {
  color: rgba(238, 242, 255, 0.72);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-section ul li a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  padding-top: 1.8rem;
  text-align: center;
}

.disclaimer {
  background: rgba(246, 211, 101, 0.08);
  border: 1px solid rgba(246, 211, 101, 0.16);
  border-radius: 14px;
  padding: 1.2rem 1.2rem;
  margin-bottom: 1rem;
  color: rgba(238, 242, 255, 0.80);
  font-size: 0.92rem;
  line-height: 1.65;
}

.disclaimer strong {
  color: var(--gold);
}

.copyright {
  color: rgba(238, 242, 255, 0.56);
  font-size: 0.9rem;
}

/* =========================================
   Service / internal pages (your existing selectors)
   ========================================= */
.page-main {
  padding-top: 84px;
}

@media (max-width: 768px) {
  .page-main {
    padding-top: 72px;
  }
}

.page-hero {
  padding: 22px 0 14px;
}

.page-hero .page-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.1;
  margin: 0 0 10px;
  letter-spacing: 0.3px;
}

.page-hero .page-subtitle {
  margin: 0;
  color: var(--text-secondary);
  max-width: 880px;
}

.page-content {
  padding: 18px 0 50px;
}

.page-content .content-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow);
  border-radius: 18px;
  padding: 22px;
}

.page-content h2,
.page-content h3 {
  font-family: var(--font-heading);
  margin-top: 18px;
  color: var(--text-primary);
}

.page-content p {
  color: var(--text-secondary);
  line-height: 1.75;
}

.page-content ul {
  padding-left: 18px;
  color: var(--text-secondary);
}

.page-content a {
  color: var(--gold);
}

/* Contact form */
.contact-form {
  display: grid;
  gap: 14px;
  margin-top: 12px;
}

.contact-form .form-row {
  display: grid;
  gap: 8px;
}

.contact-form label {
  font-weight: 800;
  color: var(--text-secondary);
}

.contact-form input,
.contact-form textarea {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  padding: 12px 12px;
  color: var(--text-primary);
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(238, 242, 255, 0.45);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(246, 211, 101, 0.22);
  box-shadow: 0 0 0 3px rgba(246, 211, 101, 0.10);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form .btn {
  width: fit-content;
}

/* Glossary teasers grid */
.glossary-teasers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 980px) {
  .glossary-teasers {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 620px) {
  .glossary-teasers {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   Animations
   ========================================= */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.04); }
  100% { transform: scale(1); }
}

@keyframes glow-emerald {
  from { box-shadow: 0 0 18px rgba(34, 197, 94, 0.16); }
  to { box-shadow: 0 0 42px rgba(34, 197, 94, 0.22); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-18px) rotate(120deg); }
  66% { transform: translateY(10px) rotate(240deg); }
}

/* =========================================
   Responsive (preserved layout rules)
   ========================================= */
@media (max-width: 968px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-title {
    font-size: 2.6rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-features {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
  }

  .feature-card {
    flex: 1;
    min-width: 180px;
  }

  .casino-tiles-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .hero-title {
    font-size: 2.1rem;
  }

  .hero-subtitle {
    font-size: 1.08rem;
  }

  .hero-features {
    flex-direction: column;
  }

  .casino-actions {
    flex-direction: column;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .payments-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .bonus-cards-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .support-services {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .author-card {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .author-photo {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 1.85rem;
  }

  .section-title {
    font-size: 2.05rem;
  }

  .btn {
    padding: 0.92rem 1.65rem;
    font-size: 1rem;
  }

  .casino-card {
    padding: 1.55rem;
  }

  .casino-tiles-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .payment-card {
    padding: 1.55rem;
  }

  .bonus-card {
    padding: 2rem 1.5rem;
  }

  .bonus-amount-large {
    font-size: 2.55rem;
  }

  .review-card {
    padding: 1.55rem;
  }

  .review-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .faq-item {
    padding: 1.55rem;
  }

  .faq-question {
    font-size: 1.1rem;
  }

  .service-item {
    padding: 1.55rem;
  }

  /* Promo banner mobile */
  .promo-banner {
    flex-direction: column;
    gap: 6px;
    text-align: center;
    padding: 10px 10px;
  }
  .promo-text {
    font-size: 10px;
  }
}
