/* ==========================================================================
   DRACULA SLOT — MAIN STYLESHEET
   axonjoycornr.com | Dracula Crest Gaming Ltd.
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   -------------------------------------------------------------------------- */
:root {
  /* === COLORS: BACKGROUNDS === */
  --color-bg-primary: #07060a;
  --color-bg-secondary: #120d14;
  --color-bg-elevated: rgba(25, 18, 30, 0.72);
  --color-bg-card: rgba(20, 14, 24, 0.85);
  --color-bg-glass: rgba(18, 12, 22, 0.7);

  /* === COLORS: ACCENTS === */
  --color-crimson: #7a0f1a;
  --color-crimson-light: #a01525;
  --color-crimson-glow: rgba(122, 15, 26, 0.4);
  --color-gold: #c0a060;
  --color-gold-light: #d4b87a;
  --color-gold-glow: rgba(192, 160, 96, 0.25);
  --color-bone: #e6d3b3;
  --color-bone-dim: rgba(230, 211, 179, 0.15);

  /* === COLORS: TYPOGRAPHY === */
  --color-text-primary: #f2f2f2;
  --color-text-secondary: #c9c9c9;
  --color-text-muted: #8a7f8f;
  --color-text-accent: #c0a060;

  /* === TYPOGRAPHY === */
  --font-heading: 'Cinzel', serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Poppins', sans-serif;

  /* === SIZING === */
  --container-max: 1320px;
  --container-pad-desktop: 32px;
  --container-pad-tablet: 24px;
  --container-pad-mobile: 16px;

  /* === SPACING === */
  --section-gap-desktop: 120px;
  --section-gap-tablet: 80px;
  --section-gap-mobile: 60px;

  /* === RADIUS === */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* === TRANSITIONS === */
  --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.2s ease;

  /* === SHADOWS === */
  --shadow-card: 0 8px 40px rgba(0, 0, 0, 0.6), 0 2px 12px rgba(0, 0, 0, 0.4);
  --shadow-crimson: 0 0 30px rgba(122, 15, 26, 0.3), 0 0 60px rgba(122, 15, 26, 0.15);
  --shadow-gold: 0 0 20px rgba(192, 160, 96, 0.2), 0 0 40px rgba(192, 160, 96, 0.1);
  --shadow-deep: 0 20px 80px rgba(0, 0, 0, 0.8), 0 4px 20px rgba(0, 0, 0, 0.5);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text-primary);
  background-color: var(--color-bg-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--color-gold);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-bone);
}

ul, ol {
  list-style: none;
}

address {
  font-style: normal;
  line-height: 1.8;
}

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

p {
  color: var(--color-text-secondary);
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   AMBIENT CANVAS & FOG
   -------------------------------------------------------------------------- */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

.fog-layer {
  position: fixed;
  pointer-events: none;
  z-index: 1;
  width: 200%;
  height: 300px;
  background: radial-gradient(ellipse at center, rgba(18, 13, 20, 0.3) 0%, transparent 70%);
  border-radius: 50%;
}

.fog-layer--1 {
  bottom: -80px;
  left: -50%;
  animation: fogDrift 25s ease-in-out infinite alternate;
}

.fog-layer--2 {
  bottom: -60px;
  left: -20%;
  opacity: 0.6;
  animation: fogDrift 35s ease-in-out infinite alternate-reverse;
}

/* --------------------------------------------------------------------------
   LAYOUT — CONTAINER
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad-desktop);
  position: relative;
  z-index: 2;
}

/* --------------------------------------------------------------------------
   HEADER
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(7, 6, 10, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(122, 15, 26, 0.2);
  transition: background var(--transition-smooth), box-shadow var(--transition-smooth);
}

.site-header.scrolled {
  background: rgba(7, 6, 10, 0.92);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6), 0 1px 0 rgba(122, 15, 26, 0.3);
}

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

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

.logo-crest {
  font-size: 1.6rem;
  filter: drop-shadow(0 0 8px rgba(122, 15, 26, 0.7));
  animation: batHover 4s ease-in-out infinite;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text-primary);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.logo-accent {
  color: var(--color-crimson-light);
}

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

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

.nav-link {
  font-family: var(--font-accent);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  position: relative;
  transition: color var(--transition-smooth);
  letter-spacing: 0.03em;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 1px;
  background: linear-gradient(90deg, var(--color-crimson), var(--color-gold));
  transform: scaleX(0);
  transition: transform var(--transition-smooth);
  transform-origin: left;
}

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

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

/* Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}

.nav-toggle__line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text-primary);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

/* Header CTA */
.header-cta {
  flex-shrink: 0;
  font-size: 0.875rem;
  padding: 10px 22px;
}

/* --------------------------------------------------------------------------
   MOBILE NAV OVERLAY
   -------------------------------------------------------------------------- */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(7, 6, 10, 0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-smooth);
}

.mobile-nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(340px, 85vw);
  height: 100%;
  background: linear-gradient(160deg, #120d14 0%, #07060a 100%);
  border-left: 1px solid rgba(122, 15, 26, 0.3);
  padding: 80px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  overflow-y: auto;
}

.mobile-nav-overlay.open .mobile-nav-panel {
  transform: translateX(0);
}

.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: 1px solid rgba(122, 15, 26, 0.4);
  color: var(--color-text-secondary);
  font-size: 1.1rem;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.mobile-nav-close:hover {
  background: var(--color-crimson);
  color: white;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: color var(--transition-fast), padding-left var(--transition-smooth);
  display: block;
}

.mobile-nav-link:hover {
  color: var(--color-gold);
  padding-left: 8px;
}

.mobile-nav-cta {
  width: 100%;
  text-align: center;
}

/* --------------------------------------------------------------------------
   BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-md);
  padding: 14px 28px;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), filter var(--transition-smooth);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.05);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn:hover::before {
  opacity: 1;
}

.btn:hover {
  transform: translateY(-2px);
}

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

/* Primary Button */
.btn--primary {
  background: linear-gradient(135deg, var(--color-crimson) 0%, #4a0810 60%, #2a0508 100%);
  color: var(--color-bone);
  box-shadow: 0 4px 20px rgba(122, 15, 26, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(160, 21, 37, 0.5);
}

.btn--primary:hover {
  box-shadow: 0 8px 30px rgba(122, 15, 26, 0.6), 0 0 20px rgba(122, 15, 26, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  color: #fff;
  filter: brightness(1.1);
}

/* Secondary Button */
.btn--secondary {
  background: linear-gradient(135deg, rgba(192, 160, 96, 0.15) 0%, rgba(192, 160, 96, 0.05) 100%);
  color: var(--color-gold);
  border: 1px solid rgba(192, 160, 96, 0.4);
  box-shadow: 0 4px 20px rgba(192, 160, 96, 0.1);
}

.btn--secondary:hover {
  background: linear-gradient(135deg, rgba(192, 160, 96, 0.25) 0%, rgba(192, 160, 96, 0.1) 100%);
  box-shadow: 0 8px 30px rgba(192, 160, 96, 0.2);
  color: var(--color-gold-light);
}

/* Ghost Button */
.btn--ghost {
  background: transparent;
  color: var(--color-text-secondary);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn--ghost:hover {
  border-color: rgba(192, 160, 96, 0.4);
  color: var(--color-gold);
  box-shadow: 0 4px 20px rgba(192, 160, 96, 0.1);
}

/* Sizes */
.btn--large {
  padding: 18px 38px;
  font-size: 1rem;
  border-radius: var(--radius-lg);
}

.btn--full {
  width: 100%;
}

.btn-icon {
  font-size: 1.1em;
}

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

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

.hero-bg__castle {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 6, 10, 0.3) 0%, rgba(7, 6, 10, 0.6) 60%, var(--color-bg-primary) 100%),
    radial-gradient(ellipse at 70% 40%, rgba(30, 5, 8, 0.8) 0%, transparent 60%),
    linear-gradient(135deg, #07060a 0%, #1a0510 30%, #07060a 70%, #120d14 100%);
}

.hero-bg__moon {
  position: absolute;
  top: 12%;
  right: 15%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 211, 179, 0.12) 0%, rgba(192, 160, 96, 0.06) 40%, transparent 70%);
  animation: moonGlow 6s ease-in-out infinite alternate;
}

.hero-bg__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 20%, rgba(7, 6, 10, 0.7) 80%);
}

.hero-bg__fog {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(0deg, rgba(7, 6, 10, 0.9) 0%, transparent 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 100px;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  background: rgba(192, 160, 96, 0.08);
  border: 1px solid rgba(192, 160, 96, 0.2);
  border-radius: 40px;
  padding: 8px 18px;
  margin-bottom: 28px;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--color-text-primary);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.headline-accent {
  background: linear-gradient(135deg, var(--color-crimson-light) 0%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtext {
  font-family: var(--font-accent);
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-disclaimer {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  flex-wrap: wrap;
}

.hero-disclaimer .divider {
  color: rgba(255, 255, 255, 0.15);
}

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-slot-preview {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.slot-preview-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(ellipse, rgba(122, 15, 26, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  animation: gameGlow 4s ease-in-out infinite alternate;
}

.slot-preview-frame {
  background: var(--color-bg-card);
  border: 1px solid rgba(122, 15, 26, 0.35);
  border-radius: var(--radius-xl);
  padding: 32px;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-crimson), var(--shadow-card);
  position: relative;
}

.slot-preview-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.slot-reel-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: 100%;
}

.reel-symbol {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  aspect-ratio: 1;
  background: rgba(7, 6, 10, 0.6);
  border: 1px solid rgba(122, 15, 26, 0.25);
  border-radius: var(--radius-md);
  animation: symbolFloat 3s ease-in-out infinite alternate;
}

.reel-symbol:nth-child(2) { animation-delay: 0.3s; }
.reel-symbol:nth-child(3) { animation-delay: 0.6s; }
.reel-symbol:nth-child(4) { animation-delay: 0.9s; }
.reel-symbol:nth-child(5) { animation-delay: 1.2s; }
.reel-symbol:nth-child(6) { animation-delay: 1.5s; }

.reel-symbol--gold {
  border-color: rgba(192, 160, 96, 0.35);
  box-shadow: 0 0 12px rgba(192, 160, 96, 0.15);
}

.reel-symbol--crimson {
  border-color: rgba(122, 15, 26, 0.5);
  box-shadow: 0 0 12px rgba(122, 15, 26, 0.2);
}

.slot-preview-label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--color-gold);
  text-align: center;
  margin: 0;
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  animation: scrollPulse 2s ease-in-out infinite;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, var(--color-crimson), transparent);
  display: block;
}

.scroll-text {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--color-text-muted);
  text-transform: uppercase;
}

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

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
  background: rgba(192, 160, 96, 0.07);
  border: 1px solid rgba(192, 160, 96, 0.18);
  border-radius: 40px;
  padding: 7px 18px;
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* --------------------------------------------------------------------------
   GAME SECTION
   -------------------------------------------------------------------------- */
.game-section {
  padding: var(--section-gap-desktop) 0;
  position: relative;
}

.game-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.game-frame-outer {
  position: relative;
  width: 100%;
  max-width: 1100px;
  border-radius: var(--radius-xl);
}

.game-frame-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse, rgba(122, 15, 26, 0.2) 0%, transparent 65%);
  border-radius: inherit;
  animation: gameGlow 5s ease-in-out infinite alternate;
  pointer-events: none;
}

.game-frame-corners {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.corner {
  position: absolute;
  width: 28px;
  height: 28px;
  border-color: var(--color-gold);
  border-style: solid;
}

.corner--tl { top: -1px; left: -1px; border-width: 2px 0 0 2px; border-radius: 4px 0 0 0; }
.corner--tr { top: -1px; right: -1px; border-width: 2px 2px 0 0; border-radius: 0 4px 0 0; }
.corner--bl { bottom: -1px; left: -1px; border-width: 0 0 2px 2px; border-radius: 0 0 0 4px; }
.corner--br { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; border-radius: 0 0 4px 0; }

.game-iframe-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #07060a;
  border: 1px solid rgba(122, 15, 26, 0.4);
  box-shadow: var(--shadow-crimson), var(--shadow-deep);
}

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

.game-info-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 16px 32px;
  background: var(--color-bg-card);
  border: 1px solid rgba(122, 15, 26, 0.2);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
}

.game-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-accent);
  font-size: 0.82rem;
  color: var(--color-text-muted);
  font-weight: 500;
  letter-spacing: 0.03em;
}

.game-info-icon {
  font-size: 1rem;
}

/* --------------------------------------------------------------------------
   FEATURES SECTION
   -------------------------------------------------------------------------- */
.features-section {
  padding: var(--section-gap-desktop) 0;
  position: relative;
}

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

.feature-card {
  background: var(--color-bg-card);
  border: 1px solid rgba(122, 15, 26, 0.2);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  backdrop-filter: blur(12px);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
  animation-delay: var(--delay, 0s);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-crimson), var(--shadow-card);
  border-color: rgba(122, 15, 26, 0.45);
}

.feature-card__icon {
  font-size: 2.4rem;
  margin-bottom: 20px;
  display: block;
  filter: drop-shadow(0 0 8px rgba(122, 15, 26, 0.5));
}

.feature-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 12px;
}

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

/* --------------------------------------------------------------------------
   ATMOSPHERE SECTION
   -------------------------------------------------------------------------- */
.atmosphere-section {
  padding: var(--section-gap-desktop) 0;
  position: relative;
  overflow: hidden;
}

.atmosphere-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(122, 15, 26, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(192, 160, 96, 0.04) 0%, transparent 60%);
}

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

.atmosphere-content .section-badge {
  display: inline-flex;
}

.atmosphere-content .section-title {
  text-align: left;
  margin-bottom: 24px;
}

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

.atmosphere-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-card {
  background: var(--color-bg-card);
  border: 1px solid rgba(122, 15, 26, 0.2);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  backdrop-filter: blur(12px);
  transition: transform var(--transition-smooth);
}

.stat-card:hover {
  transform: translateY(-4px);
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--color-crimson-light), var(--color-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  letter-spacing: 0.06em;
  font-weight: 500;
  font-family: var(--font-accent);
}

/* --------------------------------------------------------------------------
   RESPONSIBLE GAMING BANNER
   -------------------------------------------------------------------------- */
.rg-banner {
  padding: 60px 0;
}

.rg-banner-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  background: linear-gradient(135deg, rgba(25, 18, 30, 0.9) 0%, rgba(18, 13, 20, 0.9) 100%);
  border: 1px solid rgba(192, 160, 96, 0.2);
  border-radius: var(--radius-xl);
  padding: 40px 48px;
  backdrop-filter: blur(12px);
}

.rg-banner-icon {
  font-size: 2.8rem;
  flex-shrink: 0;
  filter: drop-shadow(0 0 10px rgba(192, 160, 96, 0.3));
}

.rg-banner-content {
  flex: 1;
}

.rg-banner-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-gold);
  margin-bottom: 8px;
}

.rg-banner-text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 0;
}

.rg-banner-cta {
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   PAGE HERO (INNER PAGES)
   -------------------------------------------------------------------------- */
.page-hero {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: center;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 6, 10, 0.5) 0%, rgba(7, 6, 10, 0.85) 60%, var(--color-bg-primary) 100%),
    linear-gradient(135deg, #07060a 0%, #1a0510 40%, #07060a 100%);
}

.page-hero--crypt .page-hero-bg {
  background:
    linear-gradient(180deg, rgba(7, 6, 10, 0.6) 0%, rgba(7, 6, 10, 0.9) 100%),
    radial-gradient(ellipse at 30% 50%, rgba(18, 5, 8, 0.9) 0%, #07060a 60%);
}

.page-hero--forest .page-hero-bg {
  background:
    linear-gradient(180deg, rgba(7, 6, 10, 0.5) 0%, rgba(7, 6, 10, 0.9) 100%),
    radial-gradient(ellipse at 70% 30%, rgba(10, 15, 8, 0.8) 0%, #07060a 60%);
}

.page-hero--hall .page-hero-bg {
  background:
    linear-gradient(180deg, rgba(7, 6, 10, 0.5) 0%, rgba(7, 6, 10, 0.9) 100%),
    radial-gradient(ellipse at 50% 30%, rgba(20, 10, 5, 0.9) 0%, #07060a 60%);
}

.page-hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(7, 6, 10, 0.6) 80%);
}

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

.page-hero-content {
  max-width: 680px;
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.page-hero-subtitle {
  font-size: 1rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   CONTENT SECTION (ABOUT)
   -------------------------------------------------------------------------- */
.content-section {
  padding: var(--section-gap-desktop) 0;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}

.content-block {
  animation-delay: var(--delay, 0s);
}

.content-title {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  margin-bottom: 20px;
}

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

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

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

/* About Pillars */
.about-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

.pillar-card {
  background: var(--color-bg-card);
  border: 1px solid rgba(122, 15, 26, 0.2);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  backdrop-filter: blur(12px);
  transition: transform var(--transition-smooth), border-color var(--transition-smooth);
  animation-delay: var(--delay, 0s);
}

.pillar-card:hover {
  transform: translateY(-4px);
  border-color: rgba(122, 15, 26, 0.4);
}

.pillar-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.pillar-card h3 {
  font-size: 1rem;
  font-family: var(--font-heading);
  margin-bottom: 10px;
  color: var(--color-gold);
}

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

/* Company Block */
.company-block {
  padding-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.company-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 32px;
}

.company-info-card {
  background: var(--color-bg-card);
  border: 1px solid rgba(192, 160, 96, 0.15);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(12px);
}

.company-info-card h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-gold);
  margin-bottom: 16px;
}

.company-info-card address,
.company-info-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.8;
}

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

.contact-info .content-title {
  margin-bottom: 16px;
}

.contact-info > p {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  margin-bottom: 36px;
  line-height: 1.8;
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.contact-info-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
  filter: drop-shadow(0 0 6px rgba(122, 15, 26, 0.5));
}

.contact-info-item h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--color-gold);
  margin-bottom: 6px;
}

.contact-info-item address,
.contact-info-item p,
.contact-info-item a {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* Contact Form */
.contact-form-wrapper {
  animation-delay: var(--delay, 0s);
}

.contact-form {
  background: var(--color-bg-card);
  border: 1px solid rgba(122, 15, 26, 0.2);
  border-radius: var(--radius-xl);
  padding: 44px;
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-label {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  color: var(--color-gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.form-input {
  background: rgba(7, 6, 10, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition-smooth), box-shadow var(--transition-smooth);
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}

.form-input:focus {
  outline: none;
  border-color: rgba(122, 15, 26, 0.6);
  box-shadow: 0 0 0 3px rgba(122, 15, 26, 0.1), 0 0 15px rgba(122, 15, 26, 0.1);
}

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

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a7f8f' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

.form-select option {
  background: #120d14;
  color: var(--color-text-primary);
}

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

.form-check-group {
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
}

.form-check-label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  cursor: pointer;
}

.form-checkbox {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1px solid rgba(122, 15, 26, 0.5);
  background: rgba(7, 6, 10, 0.6);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
  -webkit-appearance: none;
  appearance: none;
  position: relative;
  transition: background var(--transition-fast);
}

.form-checkbox:checked {
  background: var(--color-crimson);
  border-color: var(--color-crimson);
}

.form-checkbox:checked::after {
  content: '✓';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.7rem;
}

.form-check-text {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.form-error {
  font-size: 0.78rem;
  color: #e05060;
  min-height: 18px;
  display: block;
}

.form-success {
  background: rgba(20, 60, 20, 0.3);
  border: 1px solid rgba(50, 150, 50, 0.3);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-size: 0.9rem;
  color: #90d090;
  text-align: center;
  display: none;
}

.form-success.visible {
  display: block;
}

.form-input.error {
  border-color: rgba(224, 80, 96, 0.6);
}

/* --------------------------------------------------------------------------
   LEGAL PAGES
   -------------------------------------------------------------------------- */
.legal-section {
  padding: var(--section-gap-desktop) 0;
}

.legal-container {
  max-width: 860px;
}

.legal-meta {
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.legal-meta p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}

.legal-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.legal-block h2 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-gold);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(192, 160, 96, 0.15);
}

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

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

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

.legal-block a {
  color: var(--color-gold);
  border-bottom: 1px solid rgba(192, 160, 96, 0.3);
  transition: color var(--transition-fast), border-color var(--transition-fast);
}

.legal-block a:hover {
  color: var(--color-bone);
  border-color: rgba(230, 211, 179, 0.4);
}

/* --------------------------------------------------------------------------
   RESPONSIBLE GAMING PAGE
   -------------------------------------------------------------------------- */
.rg-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.rg-intro-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
  filter: drop-shadow(0 0 12px rgba(192, 160, 96, 0.4));
}

.rg-intro h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--color-text-primary);
  margin-bottom: 16px;
}

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

.rg-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.rg-info-card {
  background: var(--color-bg-card);
  border: 1px solid rgba(192, 160, 96, 0.15);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  backdrop-filter: blur(12px);
  transition: transform var(--transition-smooth);
}

.rg-info-card:hover {
  transform: translateY(-4px);
}

.rg-info-card__icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.rg-info-card h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--color-gold);
  margin-bottom: 10px;
}

.rg-info-card p {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* --------------------------------------------------------------------------
   RULES PAGE
   -------------------------------------------------------------------------- */
.rules-intro {
  background: var(--color-bg-card);
  border: 1px solid rgba(192, 160, 96, 0.15);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-bottom: 48px;
  backdrop-filter: blur(12px);
}

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

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

.rules-card {
  background: var(--color-bg-card);
  border: 1px solid rgba(122, 15, 26, 0.2);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  backdrop-filter: blur(12px);
  transition: transform var(--transition-smooth), border-color var(--transition-smooth);
  position: relative;
}

.rules-card:hover {
  transform: translateY(-4px);
  border-color: rgba(122, 15, 26, 0.4);
}

.rules-card__num {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  opacity: 0.6;
  margin-bottom: 12px;
  display: block;
}

.rules-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--color-text-primary);
  margin-bottom: 12px;
}

.rules-card p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 0;
}

.rules-disclaimer {
  background: linear-gradient(135deg, rgba(25, 18, 30, 0.9) 0%, rgba(18, 13, 20, 0.9) 100%);
  border: 1px solid rgba(192, 160, 96, 0.2);
  border-radius: var(--radius-xl);
  padding: 44px;
  text-align: center;
  backdrop-filter: blur(12px);
}

.rules-disclaimer h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-gold);
  margin-bottom: 12px;
}

.rules-disclaimer p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  margin-bottom: 28px;
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--color-bg-secondary);
  position: relative;
  z-index: 2;
}

.footer-top-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(122, 15, 26, 0.4), rgba(192, 160, 96, 0.3), rgba(122, 15, 26, 0.4), transparent);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-top: 64px;
  padding-bottom: 48px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-brand-text {
  font-size: 0.87rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-address {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.9;
}

.footer-address a {
  color: var(--color-text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: color var(--transition-fast);
}

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

.footer-nav-title {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 20px;
}

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

.footer-nav-link {
  font-size: 0.87rem;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--transition-fast), padding-left var(--transition-smooth);
  display: inline-block;
}

.footer-nav-link:hover {
  color: var(--color-text-secondary);
  padding-left: 4px;
}

.footer-rg-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.rg-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 28px;
  padding-bottom: 28px;
  flex-wrap: wrap;
}

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

.footer-disclaimer {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  opacity: 0.6;
  margin: 0;
  text-align: right;
}
/* ENDFILE */