/* =============================================
   VARIABLES
   ============================================= */
:root {
  /* Base Colors */
  --midnight-pine: #0f1720;
  --snow-night-blue: #1e293b;
  --frost-surface: rgba(255, 255, 255, 0.06);
  --frost-surface-hover: rgba(255, 255, 255, 0.1);
  --frost-border: rgba(255, 255, 255, 0.08);
  --frost-border-hover: rgba(255, 255, 255, 0.15);

  /* Accent Colors */
  --christmas-red: #dc2626;
  --christmas-red-light: #ef4444;
  --evergreen: #16a34a;
  --evergreen-light: #22c55e;
  --warm-gold: #facc15;
  --warm-gold-light: #fde047;
  --snow-glow: #e0f2fe;

  /* Typography */
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;

  /* Spacing */
  --section-padding: 100px;
  --container-max: 1400px;
  --header-height: 80px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-pill: 100px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.4);
  --shadow-glow-red: 0 0 30px rgba(220, 38, 38, 0.3);
  --shadow-glow-green: 0 0 30px rgba(22, 163, 74, 0.3);
  --shadow-glow-gold: 0 0 30px rgba(250, 204, 21, 0.3);
}

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--midnight-pine);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

ul {
  list-style: none;
}

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

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

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

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

/* =============================================
   SNOW PARTICLES
   ============================================= */
.snow-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  overflow: hidden;
}

.snowflake {
  position: absolute;
  top: -10px;
  background: white;
  border-radius: 50%;
  animation: snowfall linear infinite;
}

@keyframes snowfall {
  0% {
    transform: translateY(-10px) translateX(0) rotate(0deg);
    opacity: 1;
  }
  25% {
    transform: translateY(25vh) translateX(15px) rotate(90deg);
  }
  50% {
    transform: translateY(50vh) translateX(-10px) rotate(180deg);
  }
  75% {
    transform: translateY(75vh) translateX(20px) rotate(270deg);
  }
  100% {
    transform: translateY(105vh) translateX(-5px) rotate(360deg);
    opacity: 0.2;
  }
}

/* =============================================
   HEADER
   ============================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: all var(--transition-base);
  background: rgba(15, 23, 32, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  background: rgba(15, 23, 32, 0.9);
  border-bottom: 1px solid var(--frost-border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
}

.logo-icon {
  font-size: 28px;
  line-height: 1;
}

.logo-text {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

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

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition-base);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--christmas-red), var(--warm-gold));
  border-radius: 2px;
  transition: width var(--transition-base);
}

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

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--christmas-red), #b91c1c);
  color: white;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(220, 38, 38, 0.5);
  background: linear-gradient(135deg, var(--christmas-red-light), var(--christmas-red));
}

.btn-secondary {
  background: var(--frost-surface);
  color: var(--text-primary);
  border: 1px solid var(--frost-border);
}

.btn-secondary:hover {
  background: var(--frost-surface-hover);
  border-color: var(--frost-border-hover);
  transform: translateY(-2px);
}

.btn-nav {
  padding: 10px 22px;
  font-size: 14px;
  border-radius: var(--radius-pill);
}

.btn-hero {
  padding: 16px 40px;
  font-size: 17px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--christmas-red), #991b1b, var(--christmas-red));
  box-shadow: 0 4px 20px rgba(220, 38, 38, 0.4), 0 0 60px rgba(220, 38, 38, 0.15);
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(220, 38, 38, 0.5), 0 0 80px rgba(220, 38, 38, 0.2);
}

.btn-full {
  width: 100%;
}

/* =============================================
   HAMBURGER
   ============================================= */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}

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

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* =============================================
   MOBILE NAV
   ============================================= */
.mobile-nav {
  display: none;
  position: absolute;
  top: var(--header-height);
  left: 0;
  width: 100%;
  background: rgba(15, 23, 32, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--frost-border);
  padding: 24px;
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition-base);
}

.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

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

.mobile-nav-link {
  display: block;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

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

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
}

.hero-glow-1 {
  width: 600px;
  height: 600px;
  background: var(--christmas-red);
  top: -200px;
  right: -100px;
  opacity: 0.15;
}

.hero-glow-2 {
  width: 500px;
  height: 500px;
  background: var(--evergreen);
  bottom: -150px;
  left: -100px;
  opacity: 0.12;
}

.hero-glow-3 {
  width: 400px;
  height: 400px;
  background: var(--warm-gold);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.06;
}

.hero-trees {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  opacity: 0.15;
  font-size: 80px;
  padding: 0 5%;
}

.tree {
  animation: treeSway 6s ease-in-out infinite;
}

.tree-2 { animation-delay: 1s; font-size: 100px; }
.tree-3 { animation-delay: 2s; }
.tree-4 { animation-delay: 0.5s; font-size: 90px; }
.tree-5 { animation-delay: 1.5s; }

@keyframes treeSway {
  0%, 100% { transform: rotate(-1deg); }
  50% { transform: rotate(1deg); }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--frost-surface);
  border: 1px solid var(--frost-border);
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.badge-icon {
  font-size: 16px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.text-gradient {
  background: linear-gradient(135deg, var(--christmas-red-light), var(--warm-gold), var(--evergreen-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-disclaimer {
  display: inline-block;
  padding: 12px 24px;
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.2);
  border-radius: var(--radius-md);
  margin-bottom: 36px;
}

.hero-disclaimer p {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* =============================================
   SECTION COMMONS
   ============================================= */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--frost-surface);
  border: 1px solid var(--frost-border);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.section-title.text-left {
  text-align: left;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.game-wrapper {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
}

.game-glow {
  position: absolute;
  top: -40px;
  left: -40px;
  right: -40px;
  bottom: -40px;
  background: radial-gradient(ellipse at center,
    rgba(220, 38, 38, 0.1) 0%,
    rgba(22, 163, 74, 0.08) 30%,
    rgba(250, 204, 21, 0.05) 60%,
    transparent 80%
  );
  border-radius: 30px;
  z-index: 0;
  animation: gameGlowPulse 4s ease-in-out infinite;
}

@keyframes gameGlowPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.02); }
}

.game-container {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--snow-night-blue);
  border: 1px solid rgba(220, 38, 38, 0.2);
  box-shadow:
    0 0 40px rgba(220, 38, 38, 0.1),
    0 0 80px rgba(22, 163, 74, 0.05),
    var(--shadow-lg);
  aspect-ratio: 16 / 9;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.game-container:hover {
  transform: scale(1.005);
  box-shadow:
    0 0 60px rgba(220, 38, 38, 0.15),
    0 0 100px rgba(22, 163, 74, 0.08),
    var(--shadow-lg);
}

.game-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

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

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

.feature-card {
  background: var(--frost-surface);
  border: 1px solid var(--frost-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--christmas-red), var(--warm-gold), var(--evergreen));
  opacity: 0;
  transition: opacity var(--transition-base);
}

.feature-card:hover {
  transform: translateY(-4px);
  background: var(--frost-surface-hover);
  border-color: var(--frost-border-hover);
  box-shadow: var(--shadow-md);
}

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

.feature-icon {
  font-size: 40px;
  margin-bottom: 20px;
  line-height: 1;
}

.feature-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.feature-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* =============================================
   ABOUT PREVIEW
   ============================================= */
.about-preview-section {
  padding: var(--section-padding) 0;
}

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

.about-preview-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.about-list {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-secondary);
}

.check {
  color: var(--evergreen-light);
  font-weight: 700;
  flex-shrink: 0;
}

.about-preview-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-card {
  width: 100%;
  aspect-ratio: 1;
  max-width: 450px;
  background: linear-gradient(135deg, var(--frost-surface), rgba(220, 38, 38, 0.05));
  border: 1px solid var(--frost-border);
  border-radius: var(--radius-xl);
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 16px;
  padding: 40px;
}

.visual-ornaments {
  display: contents;
}

.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  background: var(--frost-surface);
  border: 1px solid var(--frost-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  animation: ornamentFloat 3s ease-in-out infinite;
}

.ornament:hover {
  transform: scale(1.1);
  background: var(--frost-surface-hover);
}

.ornament-1 { animation-delay: 0s; }
.ornament-2 { animation-delay: 0.3s; }
.ornament-3 { animation-delay: 0.6s; }
.ornament-4 { animation-delay: 0.9s; }
.ornament-5 { animation-delay: 1.2s; }
.ornament-6 { animation-delay: 1.5s; }
.ornament-7 { animation-delay: 1.8s; }
.ornament-8 { animation-delay: 2.1s; }
.ornament-9 { animation-delay: 2.4s; }

@keyframes ornamentFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* =============================================
   TRUST SECTION
   ============================================= */
.trust-section {
  padding: var(--section-padding) 0;
}

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

.trust-card {
  text-align: center;
  padding: 40px 28px;
  background: var(--frost-surface);
  border: 1px solid var(--frost-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.trust-card:hover {
  transform: translateY(-4px);
  background: var(--frost-surface-hover);
}

.trust-icon {
  font-size: 44px;
  margin-bottom: 20px;
  display: block;
}

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

.trust-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.trust-card a {
  color: var(--christmas-red-light);
  text-decoration: underline;
}

.trust-card a:hover {
  color: var(--warm-gold);
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  padding: var(--section-padding) 0;
}

.cta-card {
  position: relative;
  text-align: center;
  padding: 80px 40px;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.08), rgba(22, 163, 74, 0.05));
  border: 1px solid rgba(220, 38, 38, 0.15);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.1), transparent 70%);
  border-radius: 50%;
}

.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
}

.cta-text {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  position: relative;
}

.cta-card .btn-hero {
  position: relative;
}

.cta-disclaimer {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 20px;
  position: relative;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--frost-border);
  background: rgba(15, 23, 32, 0.8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 300px;
}

.footer-heading {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  margin-bottom: 20px;
}

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

.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--text-primary);
}

.footer-info li {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--frost-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-bottom-links a {
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: var(--text-primary);
}

.footer-bottom-links span {
  color: var(--text-muted);
  opacity: 0.4;
}

/* =============================================
   PAGE HERO (INNER PAGES)
   ============================================= */
.page-hero {
  padding: 160px 0 60px;
  text-align: center;
  position: relative;
}

.page-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.page-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
}

/* =============================================
   CONTENT SECTIONS (INNER PAGES)
   ============================================= */
.content-section {
  padding: 0 0 var(--section-padding);
}

.content-container {
  max-width: 800px;
  margin: 0 auto;
}

.content-block {
  margin-bottom: 48px;
}

.content-block h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}

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

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

.content-block a {
  color: var(--christmas-red-light);
  text-decoration: underline;
}

.content-block a:hover {
  color: var(--warm-gold);
}

.content-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0;
}

.content-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.content-list li .check {
  flex-shrink: 0;
  margin-top: 2px;
}

.legal-content .content-block {
  padding-bottom: 32px;
  border-bottom: 1px solid var(--frost-border);
}

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

/* =============================================
   VALUES GRID (ABOUT)
   ============================================= */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.value-item {
  background: var(--frost-surface);
  border: 1px solid var(--frost-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  transition: all var(--transition-base);
}

.value-item:hover {
  transform: translateY(-2px);
  background: var(--frost-surface-hover);
}

.value-icon {
  font-size: 36px;
  margin-bottom: 12px;
  display: block;
}

.value-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.value-item p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 0;
}

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

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}

.contact-card {
  background: var(--frost-surface);
  border: 1px solid var(--frost-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all var(--transition-base);
}

.contact-card:hover {
  background: var(--frost-surface-hover);
}

.contact-icon {
  font-size: 28px;
  margin-bottom: 8px;
  display: block;
}

.contact-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.contact-card p {
  font-size: 14px;
  color: var(--text-secondary);
}

.glass-card {
  background: var(--frost-surface);
  border: 1px solid var(--frost-border);
  border-radius: var(--radius-xl);
  padding: 40px;
}

.glass-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 28px;
  color: var(--text-primary);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(15, 23, 32, 0.6);
  border: 1px solid var(--frost-border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  transition: all var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--christmas-red);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15);
}

.form-group select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394a3b8' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.form-group select option {
  background: var(--snow-night-blue);
  color: var(--text-primary);
}

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

.form-success {
  margin-top: 20px;
  padding: 16px;
  background: rgba(22, 163, 74, 0.1);
  border: 1px solid rgba(22, 163, 74, 0.3);
  border-radius: var(--radius-md);
}

.form-success p {
  font-size: 14px;
  color: var(--evergreen-light);
  font-weight: 500;
}

/* =============================================
   RESPONSIBLE GAMING SPECIFIC
   ============================================= */
.responsible-banner {
  margin-bottom: 48px;
}

.responsible-banner-inner {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.08), rgba(250, 204, 21, 0.05));
  border: 1px solid rgba(22, 163, 74, 0.2);
  border-radius: var(--radius-lg);
}

.responsible-icon {
  font-size: 48px;
  flex-shrink: 0;
}

.responsible-banner-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.responsible-banner-inner p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

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

.principle-card {
  background: var(--frost-surface);
  border: 1px solid var(--frost-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition-base);
}

.principle-card:hover {
  transform: translateY(-2px);
  background: var(--frost-surface-hover);
}

.principle-icon {
  font-size: 36px;
  margin-bottom: 12px;
  display: block;
}

.principle-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.principle-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 0;
}

.support-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.support-card {
  background: var(--frost-surface);
  border: 1px solid var(--frost-border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.support-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.support-card p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.support-card p:last-child {
  margin-bottom: 0;
}
/* ENDFILE */