/* ============================================================
   CARIBBEAN PIRATE SLOT — STYLE.CSS
   tapplaylounge.online
   ============================================================ */

/* ---- CSS VARIABLES ---- */
:root {
  --bg-primary: #061a17;
  --bg-secondary: #0b2a24;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-hover: rgba(255, 255, 255, 0.07);
  --accent-primary: #1f8a70;
  --accent-secondary: #2dd4bf;
  --accent-gold: #f5c542;
  --text-primary: #e6fff7;
  --text-secondary: #a7f3d0;
  --text-muted: #5eead4;
  --border-subtle: rgba(45, 212, 191, 0.12);
  --border-glow: rgba(45, 212, 191, 0.25);
  --shadow-soft: 0 4px 32px rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 0 40px rgba(31, 138, 112, 0.18);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition-fast: 200ms ease;
  --transition-med: 300ms ease;
  --transition-slow: 400ms ease;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --max-width: 1320px;
  --header-height: 72px;
}

/* ---- RESET ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}

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

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

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
}

/* ---- LAYOUT ---- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}

/* ---- TYPOGRAPHY ---- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--text-primary);
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 16px;
}

.section-subtitle-left {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 540px;
  margin-bottom: 32px;
}

.body-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.text-gold {
  color: var(--accent-gold);
}

.inline-link {
  color: var(--accent-secondary);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition-fast);
}

.inline-link:hover {
  color: var(--text-primary);
}

/* ---- SECTION BADGE ---- */
.section-badge {
  display: inline-block;
  background: rgba(45, 212, 191, 0.1);
  border: 1px solid var(--border-glow);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--accent-secondary);
  margin-bottom: 16px;
  text-transform: uppercase;
}

/* ---- SECTION HEADER ---- */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--transition-med);
  cursor: pointer;
  border: none;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-secondary), var(--accent-primary));
  color: #061a17;
  box-shadow: 0 4px 20px rgba(45, 212, 191, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(45, 212, 191, 0.4);
  filter: brightness(1.1);
}

.btn-outline {
  background: transparent;
  color: var(--accent-secondary);
  border: 1.5px solid var(--border-glow);
}

.btn-outline:hover {
  background: rgba(45, 212, 191, 0.08);
  border-color: var(--accent-secondary);
  transform: translateY(-2px);
}

.btn-large {
  padding: 16px 40px;
  font-size: 1.05rem;
  border-radius: 18px;
}

.btn-full {
  width: 100%;
}

/* ---- HEADER ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(6, 26, 23, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: background var(--transition-slow), box-shadow var(--transition-slow);
}

.site-header.scrolled {
  background: rgba(6, 26, 23, 0.92);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 24px;
}

/* ---- LOGO ---- */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  font-size: 1.5rem;
  filter: drop-shadow(0 0 8px rgba(245, 197, 66, 0.5));
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
}

/* ---- MAIN NAV ---- */
.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-link {
  display: inline-block;
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  position: relative;
  transition: color var(--transition-fast);
  text-decoration: none;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--accent-secondary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition-med);
  border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.header-cta {
  flex-shrink: 0;
  padding: 10px 24px;
  font-size: 0.9rem;
}

/* ---- MOBILE MENU ---- */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-med);
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 360px;
  height: 100vh;
  background: rgba(11, 42, 36, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  padding: 80px 40px 40px;
  transition: right var(--transition-slow);
  border-left: 1px solid var(--border-subtle);
}

.mobile-menu-overlay.open {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 1.4rem;
  color: var(--text-secondary);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  transition: color var(--transition-fast);
}

.mobile-menu-close:hover {
  color: var(--text-primary);
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 40px;
}

.mobile-nav-link {
  display: block;
  padding: 14px 0;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-subtle);
  transition: color var(--transition-fast);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--accent-secondary);
}

.mobile-cta {
  margin-top: auto;
  width: 100%;
  text-align: center;
}

/* ---- HERO SECTION ---- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-height);
}

.hero-bg-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(31, 138, 112, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(245, 197, 66, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, #061a17 0%, #0b2a24 50%, #061a17 100%);
}

.hero-fog {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--bg-primary), transparent);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 80px;
  min-height: calc(100vh - var(--header-height));
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.hero-badge {
  display: inline-block;
  background: rgba(245, 197, 66, 0.1);
  border: 1px solid rgba(245, 197, 66, 0.25);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--accent-gold);
  text-transform: uppercase;
}

.hero-headline {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 480px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.hero-disclaimer {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 8px;
  opacity: 0.7;
}

/* ---- HERO SCENE (CSS ILLUSTRATION) ---- */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-scene {
  position: relative;
  width: 480px;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-scene-glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(31, 138, 112, 0.2) 0%, transparent 70%);
  animation: scenePulse 4s ease-in-out infinite;
}

.hero-ship-illustration {
  position: relative;
  width: 340px;
  height: 300px;
}

.ship-body {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  animation: shipFloat 5s ease-in-out infinite;
}

.ship-hull {
  width: 200px;
  height: 70px;
  background: linear-gradient(180deg, #3d2010, #1a0a05);
  border-radius: 0 0 60px 60px;
  border: 2px solid rgba(245, 197, 66, 0.3);
  position: relative;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.ship-mast {
  position: absolute;
  bottom: 68px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 120px;
  background: linear-gradient(180deg, #8b6a3a, #5c4020);
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(139, 106, 58, 0.4);
}

.ship-sail {
  position: absolute;
  background: linear-gradient(135deg, rgba(245, 197, 66, 0.7), rgba(200, 155, 40, 0.5));
  border-radius: 4px 16px 16px 4px;
  border: 1px solid rgba(245, 197, 66, 0.3);
}

.sail-main {
  width: 80px;
  height: 70px;
  bottom: 110px;
  left: 50%;
  transform-origin: left center;
  animation: sailBillowing 3s ease-in-out infinite;
}

.sail-fore {
  width: 50px;
  height: 45px;
  bottom: 130px;
  left: calc(50% + 5px);
  transform-origin: left center;
  animation: sailBillowing 3.5s ease-in-out infinite;
  opacity: 0.8;
}

.ship-flag {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.4rem;
  animation: flagWave 2s ease-in-out infinite;
}

.ocean-waves {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
}

.wave {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(45, 212, 191, 0.3);
}

.wave-1 {
  width: 200px;
  height: 30px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  animation: waveMove 3s ease-in-out infinite;
}

.wave-2 {
  width: 280px;
  height: 20px;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  animation: waveMove 4s ease-in-out infinite reverse;
  opacity: 0.5;
}

.wave-3 {
  width: 320px;
  height: 14px;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  animation: waveMove 5s ease-in-out infinite;
  opacity: 0.3;
}

.treasure-glow-orbs {
  position: absolute;
  inset: 0;
}

.orb {
  position: absolute;
  border-radius: 50%;
  animation: orbFloat 6s ease-in-out infinite;
}

.orb-1 {
  width: 12px;
  height: 12px;
  background: radial-gradient(circle, var(--accent-gold), transparent);
  top: 20%;
  right: 15%;
  animation-delay: 0s;
  box-shadow: 0 0 16px rgba(245, 197, 66, 0.6);
}

.orb-2 {
  width: 8px;
  height: 8px;
  background: radial-gradient(circle, var(--accent-secondary), transparent);
  top: 60%;
  left: 10%;
  animation-delay: 2s;
  box-shadow: 0 0 12px rgba(45, 212, 191, 0.5);
}

.orb-3 {
  width: 10px;
  height: 10px;
  background: radial-gradient(circle, var(--accent-gold), transparent);
  bottom: 30%;
  right: 25%;
  animation-delay: 4s;
  box-shadow: 0 0 14px rgba(245, 197, 66, 0.5);
}

/* ---- HERO SCROLL INDICATOR ---- */
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  opacity: 0.6;
}

.scroll-dot {
  width: 6px;
  height: 6px;
  background: var(--accent-secondary);
  border-radius: 50%;
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll-indicator span {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ---- GAME SECTION ---- */
.game-section {
  padding: 100px 0 120px;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
  position: relative;
}

.game-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-glow), transparent);
}

.game-card-wrapper {
  position: relative;
}

.game-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: rgba(11, 42, 36, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 0 0 1px var(--border-glow),
    var(--shadow-soft),
    var(--shadow-glow);
  transition: transform var(--transition-med), box-shadow var(--transition-med);
  animation: cardIdlePulse 6s ease-in-out infinite;
}

.game-card:hover {
  transform: scale(1.005);
  box-shadow:
    0 0 0 1px rgba(45, 212, 191, 0.4),
    0 8px 48px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(31, 138, 112, 0.25);
}

.game-card-glow-border {
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-xl) + 2px);
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.3), rgba(245, 197, 66, 0.2), rgba(31, 138, 112, 0.3));
  z-index: -1;
}

.game-card-inner {
  padding: 8px;
}

.game-iframe-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: calc(var(--radius-xl) - 8px);
  overflow: hidden;
  background: var(--bg-primary);
}

.game-iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: calc(var(--radius-xl) - 8px);
  display: block;
}

.game-card-footer {
  padding: 20px 16px 16px;
}

.game-features-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.game-feature-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.game-feature-pill:hover {
  background: var(--surface-hover);
  border-color: var(--border-glow);
  color: var(--text-primary);
}

.pill-icon {
  font-size: 1rem;
}

/* ---- FEATURES SECTION ---- */
.features-section {
  padding: 120px 0;
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all var(--transition-med);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
  opacity: 0;
  transition: opacity var(--transition-med);
}

.feature-card:hover {
  transform: translateY(-4px);
  background: var(--surface-hover);
  border-color: var(--border-glow);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), 0 0 24px rgba(31, 138, 112, 0.12);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon-wrap {
  width: 60px;
  height: 60px;
  background: rgba(31, 138, 112, 0.15);
  border: 1px solid rgba(31, 138, 112, 0.25);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}

.feature-card:hover .feature-icon-wrap {
  background: rgba(31, 138, 112, 0.25);
}

.feature-icon {
  font-size: 1.75rem;
}

.feature-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
}

.feature-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* ---- PROGRESSION SECTION ---- */
.progression-section {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  position: relative;
  overflow: hidden;
}

.progression-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-glow), transparent);
}

.progression-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.rank-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 12px;
}

.rank-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  transition: all var(--transition-med);
}

.rank-item:hover {
  background: var(--surface-hover);
  border-color: var(--border-glow);
  transform: translateX(4px);
}

.rank-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.rank-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.rank-info strong {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.rank-info span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ---- TREASURE CHEST SCENE (CSS ART) ---- */
.treasure-chest-scene {
  position: relative;
  width: 280px;
  height: 280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chest-glow-ring {
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 2px solid rgba(245, 197, 66, 0.2);
  animation: chestGlowPulse 3s ease-in-out infinite;
  box-shadow: 0 0 40px rgba(245, 197, 66, 0.15);
}

.chest-body {
  position: relative;
  animation: chestBob 4s ease-in-out infinite;
}

.chest-base {
  width: 140px;
  height: 80px;
  background: linear-gradient(180deg, #5c3a1a, #3a2010);
  border-radius: 8px 8px 12px 12px;
  border: 3px solid rgba(245, 197, 66, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 0 0 20px rgba(245, 197, 66, 0.2);
  position: relative;
}

.chest-lid {
  position: absolute;
  top: -45px;
  left: -3px;
  width: 140px;
  height: 50px;
  background: linear-gradient(180deg, #7a4f25, #5c3a1a);
  border-radius: 12px 12px 4px 4px;
  border: 3px solid rgba(245, 197, 66, 0.5);
  animation: lidOpen 4s ease-in-out infinite;
  transform-origin: bottom center;
}

.chest-lock {
  font-size: 1.5rem;
}

.chest-coins {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 4px;
  font-size: 1.1rem;
  animation: coinsEmerge 4s ease-in-out infinite;
}

/* ---- INFO STRIP ---- */
.info-strip-section {
  padding: 60px 0;
}

.info-strip {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 40px 60px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 40px;
}

.info-strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.info-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1;
}

.info-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.info-strip-divider {
  width: 1px;
  height: 60px;
  background: var(--border-subtle);
  flex-shrink: 0;
}

/* ---- CTA SECTION ---- */
.cta-section {
  padding: 80px 0 120px;
}

.cta-card {
  position: relative;
  background: linear-gradient(135deg, rgba(31, 138, 112, 0.12), rgba(11, 42, 36, 0.6));
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-xl);
  padding: 80px 60px;
  text-align: center;
  overflow: hidden;
}

.cta-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(31, 138, 112, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.cta-emoji {
  font-size: 3rem;
}

.cta-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
}

.cta-text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.8;
}

/* ---- PAGE HERO ---- */
.page-hero {
  position: relative;
  padding: calc(var(--header-height) + 80px) 0 80px;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
}

.page-hero--small {
  min-height: 280px;
  padding: calc(var(--header-height) + 60px) 0 60px;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}

.page-hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(31, 138, 112, 0.2) 0%, transparent 60%),
    linear-gradient(180deg, #061a17 0%, #0b2a24 60%, #061a17 100%);
}

.page-hero-gradient--calm {
  background:
    radial-gradient(ellipse at 50% 100%, rgba(31, 138, 112, 0.15) 0%, transparent 60%),
    linear-gradient(180deg, #061a17 0%, #0a2520 100%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100%;
}

.page-hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.page-hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ---- CONTENT SECTION ---- */
.content-section {
  padding: 100px 0;
}

/* ---- ABOUT PAGE ---- */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.value-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  transition: all var(--transition-med);
}

.value-card:hover {
  background: var(--surface-hover);
  border-color: var(--border-glow);
  transform: translateY(-2px);
}

.value-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
}

.value-card strong {
  display: block;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
  font-size: 1rem;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 16px;
}

.story-card {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition-med);
}

.story-card:hover {
  background: var(--surface-hover);
  border-color: var(--border-glow);
  transform: translateY(-4px);
}

.story-card-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(245, 197, 66, 0.25);
  margin-bottom: 12px;
  line-height: 1;
}

.story-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.story-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

.disclaimer-card {
  display: flex;
  gap: 24px;
  background: rgba(31, 138, 112, 0.08);
  border: 1px solid rgba(31, 138, 112, 0.2);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  align-items: flex-start;
  margin-top: 48px;
}

.disclaimer-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.disclaimer-text h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--accent-secondary);
}

.disclaimer-text p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 0;
}

/* ---- CONTACT PAGE ---- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info-panel .section-title {
  text-align: left;
  font-size: 2rem;
  margin-bottom: 16px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px 24px;
}

.contact-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-info-item strong {
  display: block;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.contact-info-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
}

/* ---- CONTACT FORM ---- */
.contact-form-panel {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
}

.form-input {
  background: rgba(6, 26, 23, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  outline: none;
  width: 100%;
}

.form-input::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

.form-input:focus {
  border-color: var(--accent-secondary);
  background: rgba(6, 26, 23, 0.8);
  box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.1);
}

.form-select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235eead4' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 48px;
}

.form-select option {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: -8px;
}

/* ---- LEGAL PAGES ---- */
.legal-content {
  max-width: 860px;
  margin: 0 auto;
}

.legal-block {
  padding: 40px 0;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.legal-block:last-child {
  border-bottom: none;
}

.legal-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
  margin-top: 4px;
  width: 48px;
  text-align: center;
}

.legal-block h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.legal-block p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-block p:last-child {
  margin-bottom: 0;
}

.legal-block ul {
  list-style: disc;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-block ul li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---- RESPONSIBLE GAMING PAGE ---- */
.rg-commitment {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  background: rgba(31, 138, 112, 0.08);
  border: 1px solid rgba(31, 138, 112, 0.2);
  border-radius: var(--radius-xl);
  padding: 48px 48px;
  margin-bottom: 64px;
}

.rg-commitment-icon {
  font-size: 3rem;
  flex-shrink: 0;
}

.rg-commitment-content h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--accent-secondary);
}

.rg-commitment-content p {
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 12px;
}

.rg-commitment-content p:last-child {
  margin-bottom: 0;
}

.rg-principles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.rg-principle-card {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all var(--transition-med);
}

.rg-principle-card:hover {
  background: var(--surface-hover);
  border-color: var(--border-glow);
  transform: translateY(-2px);
}

.rg-principle-icon {
  font-size: 2rem;
}

.rg-principle-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.rg-principle-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

.rg-signs-section {
  margin-bottom: 64px;
}

.rg-signs-section .section-title {
  text-align: left;
  margin-bottom: 16px;
}

.rg-signs-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.rg-sign-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px 20px;
}

.sign-indicator {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.rg-sign-item p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 0;
}

.rg-resources .section-title {
  text-align: left;
  margin-bottom: 16px;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.resource-card {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: all var(--transition-med);
}

.resource-card:hover {
  background: var(--surface-hover);
  border-color: var(--border-glow);
}

.resource-icon {
  font-size: 1.75rem;
  margin-bottom: 10px;
}

.resource-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.resource-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.rg-contact-note {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin-top: 48px;
}

.rg-contact-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.rg-contact-note p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 0;
}

/* ---- RULES PAGE ---- */
.rules-block {
  padding: 48px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.rules-block:last-of-type {
  border-bottom: none;
}

.rules-block-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.rules-icon {
  font-size: 1.75rem;
}

.rules-block-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.rules-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 0;
}

.rules-list li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  padding-left: 20px;
  position: relative;
}

.rules-list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--accent-secondary);
  font-weight: 700;
}

.rules-list--ordered {
  counter-reset: rules-counter;
}

.rules-list--ordered li {
  counter-increment: rules-counter;
  padding-left: 32px;
}

.rules-list--ordered li::before {
  content: counter(rules-counter) '.';
  color: var(--accent-gold);
  font-weight: 700;
  font-size: 0.9rem;
}

.symbols-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.symbol-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  transition: all var(--transition-fast);
}

.symbol-row:hover {
  background: var(--surface-hover);
  border-color: var(--border-glow);
}

.symbol-emoji {
  font-size: 1.75rem;
  flex-shrink: 0;
  width: 40px;
  text-align: center;
}

.symbol-info strong {
  display: block;
  font-weight: 600;
  color: var(--accent-secondary);
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.symbol-info p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

.bonus-features-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bonus-feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  transition: all var(--transition-fast);
}

.bonus-feature-item:hover {
  background: var(--surface-hover);
  border-color: var(--border-glow);
}

.bonus-feature-badge {
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent-secondary), var(--accent-primary));
  color: #061a17;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  white-space: nowrap;
  height: fit-content;
  margin-top: 2px;
}

.bonus-feature-desc p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

.paytable {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 20px;
}

.paytable-header,
.paytable-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 16px;
  padding: 14px 24px;
}

.paytable-header {
  background: rgba(31, 138, 112, 0.12);
  border-bottom: 1px solid var(--border-subtle);
}

.paytable-header span {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-secondary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.paytable-row {
  border-bottom: 1px solid var(--border-subtle);
  transition: background var(--transition-fast);
}

.paytable-row:last-child {
  border-bottom: none;
}

.paytable-row:hover {
  background: var(--surface-hover);
}

.paytable-row span {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.paytable-row span:first-child {
  color: var(--text-primary);
}

.rules-cta {
  text-align: center;
  padding: 48px 0;
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  padding-top: 80px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo .logo-text {
  font-size: 0.95rem;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.footer-disclaimer-small {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
  opacity: 0.7;
}

.footer-group-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  text-decoration: none;
  display: inline-block;
}

.footer-link:hover {
  color: var(--accent-secondary);
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.footer-copyright {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-legal-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  opacity: 0.6;
}

/* ---- PARTICLES ---- */
.hero-particles,
.page-hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: particleDrift linear infinite;
}
/* ============================================================ */