/* ============================================
   PIXOSWIFTRC – CORE STYLESHEET
   style.css | Version 1.0
============================================ */

/* --- CSS VARIABLES --- */
:root {
  /* Colors */
  --color-bg-primary: #081c15;
  --color-bg-secondary: #0f2a21;
  --color-glass: rgba(255, 255, 255, 0.04);
  --color-glass-border: rgba(255, 255, 255, 0.08);
  --color-green-primary: #22c55e;
  --color-green-secondary: #4ade80;
  --color-gold: #facc15;
  --color-text-primary: #ecfdf5;
  --color-text-secondary: #bbf7d0;
  --color-text-muted: #6ee7b7;

  /* Typography */
  --font-primary: 'Inter', 'Poppins', sans-serif;
  --font-heading: 'Poppins', 'Inter', sans-serif;

  /* Spacing */
  --space-section-desktop: 110px;
  --space-section-tablet: 80px;
  --space-section-mobile: 60px;

  /* Layout */
  --max-width: 1320px;
  --padding-desktop: 32px;
  --padding-tablet: 24px;
  --padding-mobile: 16px;

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

  /* Shadows */
  --shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.25);
  --shadow-medium: 0 8px 40px rgba(0, 0, 0, 0.35);
  --shadow-green: 0 0 32px rgba(34, 197, 94, 0.12);
  --shadow-green-strong: 0 0 48px rgba(34, 197, 94, 0.2);

  /* Transitions */
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  /* Header */
  --header-height: 76px;
}

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

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

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

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

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;
}

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

/* --- LAYOUT --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--padding-desktop);
  position: relative;
  z-index: 1;
}

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

.text-accent {
  color: var(--color-green-primary);
  background: linear-gradient(135deg, var(--color-green-primary), var(--color-green-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-green {
  color: var(--color-green-primary);
}

.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-green-primary);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  max-width: 560px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

/* --- GLASS COMPONENTS --- */
.glass-card {
  background: var(--color-glass);
  border: 1px solid var(--color-glass-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.glass-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-green);
}

.glass-panel {
  background: var(--color-glass);
  border: 1px solid rgba(34, 197, 94, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-green);
}

.panel-glow {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 300px;
  background: radial-gradient(ellipse, rgba(34, 197, 94, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform var(--transition-base), box-shadow var(--transition-base), filter var(--transition-base);
  cursor: pointer;
  white-space: nowrap;
  border: 1.5px solid transparent;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-green-primary) 0%, var(--color-green-secondary) 100%);
  color: #081c15;
  font-weight: 700;
  border-color: transparent;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.35);
  filter: brightness(1.1);
}

.btn-outline {
  background: transparent;
  border-color: rgba(34, 197, 94, 0.4);
  color: var(--color-green-secondary);
}

.btn-outline:hover {
  transform: translateY(-2px);
  border-color: var(--color-green-primary);
  background: rgba(34, 197, 94, 0.06);
  box-shadow: 0 4px 16px rgba(34, 197, 94, 0.15);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--color-text-secondary);
}

.btn-ghost:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
}

.btn-large {
  padding: 0.9rem 2rem;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

/* --- HEADER --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: background var(--transition-base), box-shadow var(--transition-base);
}

.site-header.scrolled {
  background: rgba(8, 28, 21, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(34, 197, 94, 0.12), var(--shadow-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.logo-icon {
  display: flex;
  align-items: center;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-text-primary);
  letter-spacing: -0.02em;
}

.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  padding: 0.5rem 0.9rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  border-radius: var(--radius-sm);
  transition: color var(--transition-base), background var(--transition-base);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1.5px;
  background: var(--color-green-primary);
  border-radius: 2px;
  transition: width var(--transition-base);
}

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

.nav-link:hover::after,
.nav-link.active::after {
  width: calc(100% - 1.8rem);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

/* Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
}

.menu-line {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--color-text-primary);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

/* Mobile Overlay */
.mobile-overlay {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(380px, 100vw);
  height: 100vh;
  background: rgba(8, 28, 21, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-left: 1px solid rgba(34, 197, 94, 0.12);
  z-index: 99;
  transition: right var(--transition-slow);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  width: 100%;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
}

.mobile-nav-link {
  display: block;
  padding: 0.8rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  border-radius: var(--radius-md);
  text-align: center;
  width: 100%;
  transition: color var(--transition-base), background var(--transition-base);
}

.mobile-nav-link:hover {
  color: var(--color-green-secondary);
  background: rgba(34, 197, 94, 0.06);
}

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

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

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: hero-zoom 20s ease infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8, 28, 21, 0.85) 0%, rgba(8, 28, 21, 0.4) 60%, rgba(8, 28, 21, 0.7) 100%);
}

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

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-top: 4rem;
  padding-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-green-secondary);
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-green-primary);
  animation: pulse-dot 2s ease infinite;
}

.hero-title {
  font-size: clamp(2.75rem, 5.5vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 1.25rem;
  color: var(--color-text-primary);
}

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

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.hero-disclaimer {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.hero-disclaimer a {
  color: var(--color-green-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Hero Visual / Cards */
.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-card-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 320px;
}

.hero-feature-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  animation: float-card 4s ease infinite;
  animation-delay: var(--delay, 0s);
}

.feature-card-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(34, 197, 94, 0.08);
  border-radius: var(--radius-md);
}

.feature-card-label {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  font-weight: 500;
  margin-bottom: 0.15rem;
}

.feature-card-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text-primary);
}

/* Scroll Hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 1;
  animation: scroll-hint-fade 3s ease 2s infinite;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(34, 197, 94, 0.6), transparent);
}

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

/* --- FEATURE PANEL SECTION --- */
.feature-panel-section {
  padding: var(--space-section-desktop) 0;
}

.main-feature-panel {
  padding: 0;
  overflow: hidden;
}

.panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  position: relative;
  z-index: 1;
}

.panel-visual {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl) 0 0 var(--radius-xl);
}

.panel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.main-feature-panel:hover .panel-img {
  transform: scale(1.03);
}

.panel-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 70%, rgba(8, 28, 21, 0.4) 100%);
}

.panel-content {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
}

.panel-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--color-text-primary);
}

.panel-text {
  font-size: 1rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.panel-features-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.panel-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--color-text-secondary);
}

.feature-check {
  color: var(--color-green-primary);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

/* --- FEATURES GRID --- */
.features-grid-section {
  padding: var(--space-section-desktop) 0;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 42, 33, 0.3) 50%, transparent 100%);
}

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

.feature-card {
  padding: 2rem;
}

.feature-icon-wrap {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 197, 94, 0.06);
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
}

.feature-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
  color: var(--color-text-primary);
}

.feature-text {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* --- NATURE DIVIDER --- */
.nature-divider {
  position: relative;
  height: 300px;
  overflow: hidden;
  margin: 0;
}

.divider-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.divider-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--color-bg-primary) 0%, rgba(8, 28, 21, 0.6) 50%, var(--color-bg-primary) 100%);
}

.divider-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.divider-quote {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--color-text-secondary);
  text-align: center;
  max-width: 600px;
  opacity: 0.8;
}

/* --- GAMES SECTION --- */
.games-section {
  padding: var(--space-section-desktop) 0;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.game-card {
  overflow: hidden;
  padding: 0;
}

.game-card-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.game-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.game-card:hover .game-card-img {
  transform: scale(1.06);
}

.game-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 28, 21, 0.8) 0%, transparent 60%);
}

.game-tag {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  padding: 0.25rem 0.7rem;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-green-secondary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.game-card-body {
  padding: 1.25rem;
}

.game-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--color-text-primary);
}

.game-desc {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.game-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.game-rating {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-gold);
}

.games-cta {
  text-align: center;
}

/* --- TRUST SECTION --- */
.trust-section {
  padding: 4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.trust-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: rgba(34, 197, 94, 0.06);
  border-radius: var(--radius-md);
  border: 1px solid rgba(34, 197, 94, 0.1);
}

.trust-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: 0.03em;
}

/* --- CTA BANNER --- */
.cta-banner-section {
  padding: var(--space-section-desktop) 0;
  position: relative;
  overflow: hidden;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
}

.cta-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8, 28, 21, 0.9) 0%, rgba(8, 28, 21, 0.7) 100%);
}

.cta-banner-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-banner-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-banner-text {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.cta-banner-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.cta-disclaimer {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

.cta-disclaimer a {
  color: var(--color-green-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* --- FOOTER --- */
.site-footer {
  position: relative;
  padding-top: var(--space-section-desktop);
  padding-bottom: 2rem;
}

.footer-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.footer-gradient {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 42, 33, 0.3) 100%);
  border-top: 1px solid rgba(34, 197, 94, 0.08);
}

.footer-inner {
  position: relative;
  z-index: 1;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 2rem;
}

.footer-logo {
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.footer-age-notice {
  font-size: 0.85rem;
  color: var(--color-green-primary);
  font-weight: 600;
}

.footer-links-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-link {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  transition: color var(--transition-base);
}

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

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

.footer-legal-note {
  font-size: 0.78rem;
  color: rgba(110, 231, 183, 0.5);
  line-height: 1.6;
  max-width: 680px;
}

.footer-legal-links {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.footer-legal-link {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  transition: color var(--transition-base);
}

.footer-legal-link:hover {
  color: var(--color-green-primary);
}

.footer-legal-links span {
  color: rgba(255,255,255,0.2);
}

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

.page-hero--short {
  min-height: 45vh;
}

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

.page-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8, 28, 21, 0.9) 0%, rgba(8, 28, 21, 0.6) 100%);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  padding: 4rem var(--padding-desktop);
}

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

.page-hero-title {
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 1rem;
}

.page-hero-description {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 520px;
}

/* --- ABOUT PAGE --- */
.about-story-section {
  padding: var(--space-section-desktop) 0;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-img-stack {
  position: relative;
}

.about-img-main {
  width: 100%;
  border-radius: var(--radius-xl);
  height: 480px;
  object-fit: cover;
}

.about-img-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  padding: 1.25rem 1.75rem;
  text-align: center;
}

.about-img-accent-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-green-primary);
  line-height: 1;
}

.about-img-accent-label {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 0.25rem;
}

.about-text {
  font-size: 1rem;
  color: var(--color-text-secondary);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.about-stats-row {
  display: flex;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.about-stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-green-primary);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.about-stat-label {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

/* Values */
.values-section {
  padding: var(--space-section-desktop) 0;
  background: linear-gradient(180deg, transparent, rgba(15, 42, 33, 0.25), transparent);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.value-card {
  padding: 2.5rem;
  position: relative;
}

.value-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(34, 197, 94, 0.08);
  line-height: 1;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.value-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.value-text {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* Mission */
.mission-section {
  padding: var(--space-section-desktop) 0;
}

.mission-panel {
  padding: 0;
  overflow: hidden;
}

.mission-content {
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.mission-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.3;
}

.mission-text {
  font-size: 1rem;
  color: var(--color-text-secondary);
  line-height: 1.75;
  max-width: 560px;
}

.mission-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.mission-visual {
  position: relative;
  overflow: hidden;
}

.mission-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 340px;
}

/* --- CONTACT PAGE --- */
.contact-section {
  padding: var(--space-section-desktop) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}

.contact-info-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.contact-info-text {
  font-size: 1rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-channel {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
}

.channel-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 197, 94, 0.06);
  border-radius: var(--radius-md);
}

.channel-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: 0.25rem;
}

.channel-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-primary);
  transition: color var(--transition-base);
}

.channel-value:hover {
  color: var(--color-green-secondary);
}

.channel-note {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-top: 0.25rem;
}

/* Contact Form */
.contact-form {
  padding: 2.5rem;
  position: relative;
  z-index: 1;
}

.form-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.75rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

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

.form-input {
  padding: 0.8rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  color: var(--color-text-primary);
  font-size: 0.95rem;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  outline: none;
  width: 100%;
}

.form-input:focus {
  border-color: rgba(34, 197, 94, 0.4);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.08);
}

.form-input::placeholder {
  color: rgba(110, 231, 183, 0.3);
}

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

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

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

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

.form-check-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  cursor: pointer;
  line-height: 1.5;
}

.form-check-input {
  width: 16px;
  height: 16px;
  border: 1.5px solid rgba(34, 197, 94, 0.3);
  border-radius: 4px;
  background: transparent;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--color-green-primary);
}

.form-link {
  color: var(--color-green-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-submit {
  width: 100%;
  justify-content: center;
}

.form-success {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(34, 197, 94, 0.06);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: var(--radius-md);
  color: var(--color-green-secondary);
  font-weight: 500;
  margin-top: 1rem;
}

/* FAQ */
.faq-section {
  padding: var(--space-section-desktop) 0;
  background: linear-gradient(180deg, transparent, rgba(15, 42, 33, 0.2), transparent);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.faq-item {
  padding: 1.75rem;
}

.faq-q {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
}

.faq-a {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

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

.legal-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 3rem;
  align-items: start;
}

.legal-toc {
  padding: 1.75rem;
  position: sticky;
  top: calc(var(--header-height) + 1rem);
}

.toc-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.toc-list {
  list-style: decimal;
  list-style-position: inside;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.toc-link {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  transition: color var(--transition-base);
  line-height: 1.5;
}

.toc-link:hover {
  color: var(--color-green-secondary);
}

.legal-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.legal-block {
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.legal-heading {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

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

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

.legal-list {
  list-style: disc;
  list-style-position: inside;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-left: 0.5rem;
  margin: 1rem 0;
}

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

.legal-link {
  color: var(--color-green-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* --- RESPONSIBLE GAMING PAGE --- */
.responsible-intro-section {
  padding: var(--space-section-desktop) 0;
}

.responsible-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.responsible-text {
  font-size: 1rem;
  color: var(--color-text-secondary);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.responsible-visual-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-xl);
}

/* Tools */
.tools-section {
  padding: var(--space-section-desktop) 0;
  background: linear-gradient(180deg, transparent, rgba(15, 42, 33, 0.25), transparent);
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.tool-card {
  padding: 2rem;
}

.tool-icon {
  margin-bottom: 1.25rem;
}

.tool-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.tool-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.tool-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tool-option {
  padding: 0.3rem 0.75rem;
  background: rgba(34, 197, 94, 0.06);
  border: 1px solid rgba(34, 197, 94, 0.15);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-green-secondary);
}

/* Warning */
.warning-section {
  padding: var(--space-section-desktop) 0;
}

.warning-panel {
  padding: 3rem;
}

.warning-header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.warning-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.warning-subtitle {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.warning-signs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.warning-sign {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}

.warning-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
  flex-shrink: 0;
}

.warning-cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  flex-wrap: wrap;
}

.warning-cta-text {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
}

/* Resources */
.resources-section {
  padding: var(--space-section-desktop) 0;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.resource-card {
  padding: 1.75rem;
}

.resource-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-green-secondary);
  margin-bottom: 0.6rem;
}

.resource-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.resource-contact {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  font-style: italic;
}

/* --- RULES PAGE --- */
.rules-intro-section {
  padding: 4rem 0 0;
}

.rules-intro-panel {
  padding: 2.5rem;
}

.rules-intro-inner {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.rules-intro-text h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

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

.rules-section {
  padding: var(--space-section-desktop) 0;
}

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

.rules-block-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.rules-block-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(34, 197, 94, 0.15);
  font-family: var(--font-heading);
  line-height: 1;
  flex-shrink: 0;
}

.rules-block-title {
  font-size: 1.1rem;
  font-weight: 700;
}

.rules-block-content {
  padding: 1.75rem;
}

.rules-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.rules-list li {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  padding-left: 1.25rem;
  position: relative;
}

.rules-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-green-primary);
  opacity: 0.6;
}

.rules-cta {
  text-align: center;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.rules-cta-text {
  width: 100%;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}
/* ENDFILE */