@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #9d4edd;
  --primary-glow: rgba(157, 78, 221, 0.4);
  --secondary: #00f5d4;
  --secondary-glow: rgba(0, 245, 212, 0.3);
  --accent: #ff007f;
  --bg-dark: #0a0512;
  --bg-surface: #140d24;
  --bg-surface-hover: #1f1435;
  --text-light: #f3f0f7;
  --text-muted: #9f93b5;
  --gold: #ffd700;
  --border-color: rgba(157, 78, 221, 0.2);
  --border-glow: rgba(0, 245, 212, 0.1);
  --font-display: 'Cinzel', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --container-max: 1300px;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  position: relative;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--secondary);
}

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

/* Ambient Background Lights */
.ambient-glow-1 {
  position: absolute;
  top: 10%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(157, 78, 221, 0.15) 0%, rgba(0,0,0,0) 70%);
  z-index: -2;
  pointer-events: none;
}

.ambient-glow-2 {
  position: absolute;
  top: 50%;
  right: -10%;
  width: 45vw;
  height: 45vw;
  background: radial-gradient(circle, rgba(0, 245, 212, 0.1) 0%, rgba(0,0,0,0) 70%);
  z-index: -2;
  pointer-events: none;
}

/* Top Disclaimer Bar */
.disclaimer-bar {
  background: linear-gradient(90deg, #12011a 0%, #24003d 50%, #12011a 100%);
  border-bottom: 1px solid var(--border-color);
  color: var(--secondary);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-align: center;
  padding: 10px 15px;
  position: relative;
  z-index: 1100;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.disclaimer-bar span {
  display: inline-flex;
  align-items: center;
}

.disclaimer-bar span::before {
  content: '✦';
  margin-right: 6px;
  color: var(--accent);
}

/* Slim Header */
.header-wrapper {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 5, 18, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(157, 78, 221, 0.15);
  transition: var(--transition-smooth);
}

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

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 38px;
  height: 38px;
  filter: drop-shadow(0 0 8px var(--primary));
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-light);
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, #fff 30%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: var(--transition-smooth);
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: var(--transition-smooth);
}

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

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

.header-cta {
  display: flex;
  align-items: center;
}

/* Premium Buttons */
.btn-premium {
  background: linear-gradient(135deg, var(--primary) 0%, #7b2cbf 100%);
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 4px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 20px var(--primary-glow);
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.btn-premium:hover::before {
  left: 100%;
}

.btn-premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(157, 78, 221, 0.6);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: var(--secondary);
  border: 1px solid var(--secondary);
  padding: 11px 26px;
  border-radius: 4px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-secondary:hover {
  background: rgba(0, 245, 212, 0.05);
  box-shadow: 0 0 15px var(--secondary-glow);
  transform: translateY(-2px);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 100%;
  height: 2px;
  background-color: var(--text-light);
  transition: var(--transition-smooth);
}

/* Mobile Nav Overlay */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: var(--bg-dark);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  transition: var(--transition-smooth);
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav .nav-link {
  font-size: 1.5rem;
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 100px 0 80px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  background: rgba(157, 78, 221, 0.1);
  border: 1px solid var(--primary);
  color: var(--text-light);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.hero-badge .sparkle {
  color: var(--secondary);
  animation: pulse 2s infinite ease-in-out;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1.1;
  font-weight: 900;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ffffff 10%, #d8b4fe 50%, #9d4edd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 40px rgba(157, 78, 221, 0.1);
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 580px;
}

.hero-ctas {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-gem-container {
  width: 100%;
  max-width: 450px;
  aspect-ratio: 1;
  position: relative;
  background: radial-gradient(circle, rgba(157, 78, 221, 0.15) 0%, rgba(0,0,0,0) 70%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.floating-gem {
  width: 65%;
  height: auto;
  animation: float 6s infinite ease-in-out;
  filter: drop-shadow(0 15px 30px rgba(157, 78, 221, 0.4));
}

.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--secondary);
  border-radius: 50%;
  opacity: 0.6;
}

.p1 { top: 20%; left: 10%; animation: particleFloat 8s infinite linear; }
.p2 { top: 70%; right: 15%; animation: particleFloat 12s infinite linear; }
.p3 { bottom: 15%; left: 30%; animation: particleFloat 10s infinite linear; }

/* Game Embed Container Section */
.game-integration-section {
  padding: 80px 0;
  position: relative;
}

.game-cabinet-frame {
  background: linear-gradient(135deg, #1c1233 0%, #0d061b 100%);
  border: 4px solid #2e1e52;
  box-shadow: 0 20px 80px rgba(157, 78, 221, 0.25), 
              0 0 40px rgba(0, 245, 212, 0.15),
              inset 0 0 20px rgba(0,0,0,0.8);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  max-width: 1024px;
  margin: 0 auto;
}

.game-cabinet-header {
  background: #110724;
  padding: 16px 24px;
  border-bottom: 2px solid #2e1e52;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cabinet-title {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--secondary);
  letter-spacing: 0.05em;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cabinet-title::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: var(--secondary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--secondary);
}

.cabinet-controls {
  display: flex;
  gap: 8px;
}

.control-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #4a3875;
}

.control-dot.green { background: #00f5d4; box-shadow: 0 0 8px rgba(0, 245, 212, 0.6); }

.iframe-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.iframe-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  background: #000;
}

.game-cabinet-footer {
  background: #110724;
  padding: 12px 24px;
  border-top: 2px solid #2e1e52;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Feature Cards Grid */
.features-section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.section-subtitle {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-description {
  color: var(--text-muted);
  font-size: 1.05rem;
}

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

.feature-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(157, 78, 221, 0.05) 0%, rgba(0,0,0,0) 100%);
  opacity: 0;
  transition: var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--secondary);
  box-shadow: 0 15px 40px rgba(0, 245, 212, 0.05);
}

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

.feature-icon-box {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  background: rgba(157, 78, 221, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  border: 1px solid rgba(157, 78, 221, 0.3);
  transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon-box {
  background: rgba(0, 245, 212, 0.15);
  border-color: var(--secondary);
  color: var(--secondary);
}

.feature-icon {
  width: 32px;
  height: 32px;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 16px;
  font-weight: 700;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Deep Immersive Info/Visual Block */
.immersive-info-section {
  padding: 80px 0;
  background: radial-gradient(ellipse at center, rgba(20, 13, 36, 0.6) 0%, rgba(10, 5, 18, 1) 100%);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.info-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.visual-collage {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.collage-img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transition: var(--transition-smooth);
}

.collage-img:hover {
  transform: scale(1.03);
  border-color: var(--secondary);
}

.collage-img-1 { grid-column: 1; grid-row: 1 / 3; align-self: center; }
.collage-img-2 { grid-column: 2; grid-row: 1; }
.collage-img-3 { grid-column: 2; grid-row: 2; }

.info-content .accent-tag {
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  display: block;
  margin-bottom: 16px;
}

.info-content h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  margin-bottom: 24px;
  line-height: 1.2;
}

.info-content p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.crystal-meter-container {
  margin-top: 32px;
}

.crystal-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.crystal-bar {
  height: 8px;
  background: rgba(157, 78, 221, 0.15);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 20px;
}

.crystal-bar-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
}

/* FAQ Accordion Section */
.faq-section {
  padding: 100px 0;
}

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

.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-trigger {
  width: 100%;
  padding: 24px 30px;
  background: transparent;
  border: none;
  color: var(--text-light);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-smooth);
}

.faq-trigger:hover {
  background: var(--bg-surface-hover);
  color: var(--secondary);
}

.faq-icon-state {
  font-size: 1.5rem;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 30px;
}

.faq-content-inner {
  padding-bottom: 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.active .faq-content {
  max-height: 250px; /* high enough constraint for dynamic content */
  transition: max-height 0.4s ease-in;
}

.faq-item.active .faq-icon-state {
  transform: rotate(45deg);
  color: var(--secondary);
}

.faq-item.active {
  border-color: var(--primary);
}

/* Contact Immersive Form Section */
.contact-section {
  padding: 100px 0;
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  margin-bottom: 24px;
}

.contact-intro {
  color: var(--text-muted);
  margin-bottom: 40px;
}

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

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

.info-icon-wrapper {
  width: 50px;
  height: 50px;
  background: rgba(157, 78, 221, 0.15);
  border: 1px solid var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 1.25rem;
}

.info-body h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 4px;
}

.info-body p, .info-body a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.info-body a:hover {
  color: var(--secondary);
}

/* Modern Form Elements */
.contact-form-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 48px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

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

.form-group {
  margin-bottom: 24px;
  position: relative;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 700;
}

.form-control {
  width: 100%;
  background: rgba(10, 5, 18, 0.6);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 14px 18px;
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 12px rgba(0, 245, 212, 0.15);
  background: rgba(10, 5, 18, 0.9);
}

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

.form-status {
  margin-top: 15px;
  padding: 12px;
  border-radius: 6px;
  font-size: 0.9rem;
  display: none;
}

.form-status.success {
  background: rgba(0, 245, 212, 0.1);
  border: 1px solid var(--secondary);
  color: var(--secondary);
  display: block;
}

.form-status.error {
  background: rgba(255, 0, 127, 0.1);
  border: 1px solid var(--accent);
  color: var(--accent);
  display: block;
}

/* Blog Feed / Insights Grid */
.blog-listing-section {
  padding: 80px 0;
}

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

.blog-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.blog-card:hover {
  transform: translateY(-8px);
  border-color: var(--secondary);
  box-shadow: 0 15px 40px rgba(0, 245, 212, 0.05);
}

.blog-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.blog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.blog-card:hover .blog-img {
  transform: scale(1.05);
}

.blog-category-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(10, 5, 18, 0.8);
  border: 1px solid var(--primary);
  color: var(--text-light);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.blog-body {
  padding: 24px;
}

.blog-date {
  font-size: 0.8rem;
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
}

.blog-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.3;
  margin-bottom: 12px;
}

.blog-excerpt {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.blog-read-more {
  color: var(--text-light);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-smooth);
}

.blog-read-more:hover {
  color: var(--secondary);
}

/* General Layout Page Hero (About, Contact, Privacy, Blog etc) */
.page-hero {
  padding: 120px 0 60px 0;
  background: linear-gradient(180deg, rgba(20, 13, 36, 0.6) 0%, rgba(10, 5, 18, 1) 100%);
  border-bottom: 1px solid var(--border-color);
  text-align: center;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #ffffff 10%, #d8b4fe 50%, #9d4edd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

/* Lore & Core Values Sections (About Page) */
.lore-section {
  padding: 100px 0;
}

.lore-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.lore-text h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 20px;
}

.lore-text p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.story-highlight-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  padding: 30px;
  border-radius: 8px;
  border-left: 4px solid var(--secondary);
  margin-top: 32px;
}

.story-highlight-card p {
  margin: 0;
  font-style: italic;
  font-size: 1rem;
  color: var(--text-light);
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.value-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition-smooth);
}

.value-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
}

.value-card .number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--secondary);
  display: block;
  margin-bottom: 16px;
}

.value-card h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 12px;
}

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

/* Legal Pages Styling (Privacy, Terms, Cookies) */
.legal-content-section {
  padding: 80px 0;
}

.legal-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 60px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.legal-box h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin: 40px 0 20px 0;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 10px;
}

.legal-box h2:first-of-type {
  margin-top: 0;
}

.legal-box p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 1rem;
}

.legal-box ul {
  list-style-type: none;
  margin-bottom: 30px;
}

.legal-box ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: var(--text-muted);
}

.legal-box ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--secondary);
}

/* Cookie Consent Banner */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 5, 18, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-top: 2px solid var(--primary);
  z-index: 1200;
  padding: 24px 0;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.5);
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

.cookie-consent-banner.show {
  transform: translateY(0);
}

.cookie-banner-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.cookie-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 800px;
}

.cookie-text a {
  color: var(--secondary);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

/* Footer Styling */
.footer-wrapper {
  background: #06020c;
  border-top: 1px solid var(--border-color);
  padding: 80px 0 30px 0;
  margin-top: auto;
  position: relative;
  z-index: 10;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 0.9fr);
  gap: 50px;
  margin-bottom: 60px;
}

.footer-brand-info p {
  color: var(--text-muted);
  margin-top: 20px;
  font-size: 0.95rem;
}

.footer-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
  color: #fff;
}

.footer-links-list {
  list-style: none;
}

.footer-links-list li {
  margin-bottom: 12px;
}

.footer-links-list a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.footer-links-list a:hover {
  color: var(--secondary);
  padding-left: 4px;
}

.footer-contact-list {
  list-style: none;
}

.footer-contact-list li {
  margin-bottom: 16px;
  color: var(--text-muted);
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-contact-list i {
  color: var(--primary);
  margin-top: 4px;
}

.footer-contact-list a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-contact-list a:hover {
  color: var(--secondary);
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(157, 78, 221, 0.1);
  margin-bottom: 30px;
}

.footer-disclaimer-card {
  background: rgba(157, 78, 221, 0.03);
  border: 1px solid rgba(157, 78, 221, 0.1);
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 40px;
  text-align: center;
}

.footer-disclaimer-card p {
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 900px;
  margin: 0 auto;
}

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

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

/* Animations Keyframes */
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(2deg); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; filter: drop-shadow(0 0 4px var(--secondary)); }
}

@keyframes particleFloat {
  0% { transform: translateY(0px) translateX(0px); opacity: 0.2; }
  50% { transform: translateY(-40px) translateX(15px); opacity: 0.8; }
  100% { transform: translateY(-80px) translateX(0px); opacity: 0; }
}

/* Responsive Specifications */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-ctas {
    justify-content: center;
  }
  .grid-3-col {
    grid-template-columns: repeat(2, 1fr);
  }
  .info-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .visual-collage {
    order: 2;
  }
  .info-content {
    order: 1;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  .nav-menu, .header-cta {
    display: none;
  }
  .hero-title {
    font-size: 2.75rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .grid-3-col, .blog-grid, .footer-top-grid, .values-grid {
    grid-template-columns: 1fr;
  }
  .cookie-banner-inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .footer-bottom-flex {
    flex-direction: column;
    text-align: center;
  }
  .legal-box {
    padding: 30px;
  }
}