/* ========================================
   ReviewSphereFrance - Cosmic Design System
   Deep Space / Nebula Theme
   ======================================== */

/* Cosmic Color Palette */
:root {
  --void-black: #0a0a12;
  --nebula-deep: #12101f;
  --galaxy-purple: #1a1530;
  --stellar-violet: #6b4c9a;
  --neon-cyan: #00d4ff;
  --aurora-blue: #4d7cff;
  --plasma-pink: #ff6bdf;
  --stardust-white: #e8e6f2;
  --cosmic-gray: #9890b0;
  --nova-gold: #ffd93d;
  --orbit-border: rgba(107, 76, 154, 0.3);
  --glow-primary: rgba(0, 212, 255, 0.15);
  --glow-secondary: rgba(77, 124, 255, 0.12);
}

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Space Grotesk', 'Segoe UI', system-ui, sans-serif;
  background: linear-gradient(180deg, var(--void-black) 0%, var(--nebula-deep) 50%, var(--galaxy-purple) 100%);
  background-attachment: fixed;
  color: var(--stardust-white);
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Starfield Background Animation */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 20px 30px, rgba(255,255,255,0.8), transparent),
    radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.6), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(255,255,255,0.9), transparent),
    radial-gradient(2px 2px at 130px 80px, rgba(0,212,255,0.7), transparent),
    radial-gradient(1px 1px at 160px 120px, rgba(255,255,255,0.5), transparent),
    radial-gradient(2px 2px at 200px 50px, rgba(77,124,255,0.6), transparent),
    radial-gradient(1px 1px at 250px 150px, rgba(255,255,255,0.7), transparent),
    radial-gradient(2px 2px at 300px 100px, rgba(255,107,223,0.5), transparent);
  background-size: 350px 200px;
  animation: cosmicDrift 120s linear infinite;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

@keyframes cosmicDrift {
  from { transform: translateY(0); }
  to { transform: translateY(-200px); }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Orbitron', 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: var(--stardust-white);
  line-height: 1.25;
  letter-spacing: 0.02em;
}

a {
  color: var(--neon-cyan);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
  color: var(--aurora-blue);
  text-shadow: 0 0 12px var(--neon-cyan);
}

/* Layout Wrapper */
.cosmos-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.75rem;
  width: 100%;
  position: relative;
  z-index: 1;
}

/* Accent Classes */
.glow-text {
  color: var(--neon-cyan);
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.violet-accent {
  color: var(--stellar-violet);
}

/* ========================================
   Navigation - Orbital Header
   ======================================== */
.orbital-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(180deg, rgba(10, 10, 18, 0.95) 0%, rgba(18, 16, 31, 0.9) 100%);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--orbit-border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.orbital-nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 1rem 0;
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--neon-cyan), var(--aurora-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

.brand-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--void-black);
}

.brand-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--stardust-white);
  letter-spacing: 0.05em;
}

.stellar-menu {
  display: none;
  justify-content: center;
  gap: 0.25rem;
}

.stellar-menu-link {
  padding: 0.5rem 1rem;
  color: var(--cosmic-gray);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.25s ease;
}

.stellar-menu-link:hover,
.stellar-menu-link:focus {
  color: var(--stardust-white);
  background: var(--glow-primary);
  text-shadow: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}

.responsible-badge {
  font-size: 0.85rem;
  color: var(--nova-gold);
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(255, 217, 61, 0.3);
  border-radius: 20px;
  display: none;
}

.mobile-trigger {
  background: transparent;
  border: 1px solid var(--orbit-border);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  color: var(--stardust-white);
  cursor: pointer;
  font-size: 1.25rem;
  transition: all 0.25s ease;
}

.mobile-trigger:hover {
  background: var(--glow-primary);
  border-color: var(--neon-cyan);
}

.mobile-stellar-menu {
  display: none;
  flex-direction: column;
  padding: 1rem 0;
  border-top: 1px solid var(--orbit-border);
}

.mobile-stellar-menu.expanded {
  display: flex;
}

.mobile-stellar-menu .stellar-menu-link {
  padding: 0.75rem 0;
  border-radius: 0;
}

/* ========================================
   Hero - Cosmic Gateway
   ======================================== */
.cosmic-gateway {
  position: relative;
  padding: 5rem 0 4rem;
  overflow: hidden;
  background: 
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(107, 76, 154, 0.25) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
}

.cosmic-gateway::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 70%, rgba(77, 124, 255, 0.08) 0%, transparent 40%);
  animation: nebulaRotate 60s linear infinite;
  pointer-events: none;
}

@keyframes nebulaRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.gateway-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.gateway-headline {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 0.5rem;
  line-height: 1.15;
}

.gateway-headline .highlight-line {
  display: block;
  background: linear-gradient(90deg, var(--neon-cyan), var(--aurora-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gateway-intro {
  font-size: 1.125rem;
  color: var(--cosmic-gray);
  max-width: 680px;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.gateway-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.pulse-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pulse-btn-primary {
  background: linear-gradient(135deg, var(--neon-cyan), var(--aurora-blue));
  color: var(--void-black);
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.35);
}

.pulse-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 212, 255, 0.5);
  color: var(--void-black);
  text-shadow: none;
}

.gateway-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  list-style: none;
}

.gateway-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--cosmic-gray);
  font-size: 0.95rem;
}

.gateway-features li::before {
  content: '◆';
  color: var(--neon-cyan);
  font-size: 0.6rem;
}

.age-indicator {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 217, 61, 0.1);
  border: 1px solid rgba(255, 217, 61, 0.3);
  border-radius: 30px;
}

.age-indicator-num {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--nova-gold);
}

.age-indicator-txt {
  font-size: 0.8rem;
  color: var(--cosmic-gray);
}

/* ========================================
   Platform Cards - Stellar Grid
   ======================================== */
.stellar-platforms {
  padding: 4rem 0;
  background: linear-gradient(180deg, transparent 0%, rgba(26, 21, 48, 0.5) 100%);
}

.section-header-cosmic {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title-cosmic {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 0.75rem;
}

.section-subtitle-cosmic {
  color: var(--cosmic-gray);
  max-width: 600px;
  margin: 0 auto;
}

.methodology-note {
  background: linear-gradient(135deg, rgba(107, 76, 154, 0.15), rgba(0, 212, 255, 0.08));
  border: 1px solid var(--orbit-border);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  margin-bottom: 2.5rem;
  color: var(--cosmic-gray);
  font-size: 0.95rem;
}

.methodology-note strong {
  color: var(--stardust-white);
}

.platform-constellation {
  display: grid;
  gap: 1.75rem;
}

.platform-card {
  background: linear-gradient(145deg, rgba(26, 21, 48, 0.8), rgba(18, 16, 31, 0.9));
  border: 1px solid var(--orbit-border);
  border-radius: 16px;
  padding: 1.75rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.platform-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.platform-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 212, 255, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 212, 255, 0.1);
}

.platform-card:hover::before {
  opacity: 1;
}

.platform-card-inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.platform-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.platform-placeholder {
  width: 140px;
  height: 55px;
  background: linear-gradient(135deg, rgba(107, 76, 154, 0.3), rgba(77, 124, 255, 0.2));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.star-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.star-icons {
  display: flex;
  gap: 2px;
  color: var(--nova-gold);
}

.star-value {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--stardust-white);
}

.platform-details {
  flex: 1;
}

.platform-name {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--stardust-white);
}

.platform-highlights {
  list-style: none;
}

.platform-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: var(--cosmic-gray);
  font-size: 0.95rem;
}

.platform-highlights li svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--neon-cyan);
  margin-top: 2px;
}

.platform-action {
  display: flex;
  justify-content: center;
}

.discover-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--stellar-violet), var(--aurora-blue));
  color: var(--stardust-white);
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
  width: 100%;
  justify-content: center;
}

.discover-link:hover {
  background: linear-gradient(135deg, var(--aurora-blue), var(--neon-cyan));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(77, 124, 255, 0.4);
  color: var(--stardust-white);
  text-shadow: none;
}

/* ========================================
   Info Sections - Nebula Blocks
   ======================================== */
.nebula-section {
  padding: 4rem 0;
  position: relative;
}

.nebula-section.alt-bg {
  background: linear-gradient(180deg, rgba(26, 21, 48, 0.4) 0%, rgba(18, 16, 31, 0.6) 100%);
}

.nebula-content {
  max-width: 900px;
  margin: 0 auto;
}

.nebula-content.centered {
  text-align: center;
}

.info-grid {
  display: grid;
  gap: 1rem;
  list-style: none;
}

.info-grid li {
  padding: 1rem 1.25rem;
  background: rgba(107, 76, 154, 0.1);
  border-left: 3px solid var(--neon-cyan);
  border-radius: 0 8px 8px 0;
  color: var(--cosmic-gray);
}

.about-prose {
  margin-top: 1.5rem;
}

.about-prose p {
  margin-bottom: 1rem;
  color: var(--cosmic-gray);
  line-height: 1.8;
}

/* ========================================
   Responsible Gaming - Guardian Block
   ======================================== */
.guardian-block {
  padding: 4rem 0;
  background: 
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(255, 217, 61, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, rgba(18, 16, 31, 0.8) 0%, rgba(26, 21, 48, 0.6) 100%);
}

.guardian-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.guardian-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.guardian-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(255, 217, 61, 0.2), rgba(255, 217, 61, 0.05));
  border: 2px solid var(--nova-gold);
  border-radius: 50%;
  margin-bottom: 1rem;
}

.guardian-badge span {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--nova-gold);
}

.guardian-title {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.guardian-subtitle {
  color: var(--cosmic-gray);
  max-width: 600px;
  margin: 0 auto;
}

.guardian-body {
  display: grid;
  gap: 2rem;
}

.guardian-rules {
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.guardian-rules li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 217, 61, 0.05);
  border-radius: 8px;
  color: var(--cosmic-gray);
}

.guardian-rules li::before {
  content: '⚡';
  font-size: 1rem;
}

.guardian-resources {
  text-align: center;
}

.guardian-resources p {
  margin-bottom: 0.75rem;
  color: var(--cosmic-gray);
}

.guardian-resources a {
  color: var(--nova-gold);
}

.authority-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: 1px solid var(--nova-gold);
  border-radius: 30px;
  color: var(--nova-gold);
  font-weight: 600;
  margin-top: 1rem;
  transition: all 0.3s ease;
}

.authority-link:hover {
  background: rgba(255, 217, 61, 0.1);
  text-shadow: 0 0 10px var(--nova-gold);
}

.guardian-disclaimer {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--orbit-border);
  text-align: center;
  color: var(--cosmic-gray);
  font-size: 0.9rem;
}

/* ========================================
   Teaser Block
   ======================================== */
.teaser-block {
  padding: 3rem 0;
  background: rgba(26, 21, 48, 0.5);
}

.teaser-inner {
  max-width: 900px;
}

.teaser-inner h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.teaser-inner p {
  color: var(--cosmic-gray);
  margin-bottom: 0.5rem;
}

/* ========================================
   Footer - Void Footer
   ======================================== */
.void-footer {
  padding: 3rem 0 2rem;
  background: linear-gradient(180deg, rgba(10, 10, 18, 0.9) 0%, var(--void-black) 100%);
  border-top: 1px solid var(--orbit-border);
}

.footer-constellation {
  display: grid;
  gap: 2.5rem;
}

.footer-brand-col h3 {
  font-size: 1.15rem;
  margin-bottom: 1rem;
  color: var(--stardust-white);
}

.footer-brand-col p {
  color: var(--cosmic-gray);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.footer-age-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-age-mark .age-box {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.25rem 0.5rem;
  border: 2px solid var(--nova-gold);
  border-radius: 4px;
  color: var(--nova-gold);
}

.footer-age-mark span:last-child {
  color: var(--cosmic-gray);
  font-size: 0.85rem;
}

.footer-nav-col h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--stardust-white);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--cosmic-gray);
  font-size: 0.9rem;
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: var(--neon-cyan);
  text-shadow: none;
}

.footer-baseline {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--orbit-border);
  text-align: center;
  color: var(--cosmic-gray);
  font-size: 0.85rem;
  line-height: 1.8;
}

/* ========================================
   Cookie Consent - Cosmic Banner
   ======================================== */
.cosmic-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: linear-gradient(180deg, rgba(18, 16, 31, 0.98), rgba(10, 10, 18, 0.99));
  border-top: 1px solid var(--orbit-border);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
}

.cosmic-consent.dismissed {
  display: none;
}

.consent-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.25rem;
  max-width: 1240px;
  margin: 0 auto;
}

.consent-message {
  color: var(--cosmic-gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

.consent-message a {
  color: var(--neon-cyan);
  text-decoration: underline;
}

.consent-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.consent-btn {
  padding: 0.6rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 1px solid var(--orbit-border);
  background: transparent;
  color: var(--stardust-white);
}

.consent-btn:hover {
  background: var(--glow-primary);
  border-color: var(--neon-cyan);
}

.consent-btn.accept-all {
  background: linear-gradient(135deg, var(--neon-cyan), var(--aurora-blue));
  border-color: transparent;
  color: var(--void-black);
}

.consent-btn.accept-all:hover {
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.4);
}

.consent-btn.settings-toggle {
  background: transparent;
  border: none;
  color: var(--neon-cyan);
  padding: 0.6rem 0.5rem;
}

.consent-settings {
  display: none;
  padding: 1rem;
  border-top: 1px solid var(--orbit-border);
  background: rgba(26, 21, 48, 0.5);
  border-radius: 8px;
  margin-top: 0.5rem;
}

.consent-settings.visible {
  display: block;
}

.consent-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
}

.consent-option:not(:last-child) {
  border-bottom: 1px solid var(--orbit-border);
}

.consent-option-info strong {
  display: block;
  color: var(--stardust-white);
  margin-bottom: 0.25rem;
}

.consent-option-info span {
  font-size: 0.85rem;
  color: var(--cosmic-gray);
}

.toggle-switch {
  position: relative;
  width: 48px;
  height: 26px;
  background: rgba(107, 76, 154, 0.3);
  border-radius: 13px;
  cursor: pointer;
  transition: background 0.25s ease;
}

.toggle-switch[data-state="on"] {
  background: var(--neon-cyan);
}

.toggle-switch .toggle-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: var(--stardust-white);
  border-radius: 50%;
  transition: left 0.25s ease;
}

.toggle-switch[data-state="on"] .toggle-knob {
  left: 25px;
}

.toggle-switch[data-locked] {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ========================================
   Page-Specific Styles
   ======================================== */
.page-hero {
  padding: 3rem 0;
  background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(107, 76, 154, 0.2) 0%, transparent 60%);
}

.page-content {
  padding: 3rem 0;
}

.page-content-inner {
  max-width: 900px;
  margin: 0 auto;
}

.prose-block {
  color: var(--cosmic-gray);
  line-height: 1.85;
}

.prose-block h2 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  color: var(--stardust-white);
}

.prose-block p {
  margin-bottom: 1rem;
}

.prose-block ul, .prose-block ol {
  margin: 1rem 0 1rem 1.5rem;
}

.prose-block li {
  margin-bottom: 0.5rem;
}

.prose-block a {
  color: var(--neon-cyan);
  text-decoration: underline;
}

/* Review Page Specific */
.review-hero {
  padding: 3rem 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(0, 212, 255, 0.1) 0%, transparent 60%);
}

.review-content {
  padding: 3rem 0;
}

.review-content-inner {
  max-width: 900px;
  margin: 0 auto;
}

.review-section-title {
  font-size: 1.4rem;
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--orbit-border);
}

.review-cta-wrap {
  text-align: center;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--orbit-border);
}

.official-site-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: linear-gradient(135deg, var(--stellar-violet), var(--aurora-blue));
  color: var(--stardust-white);
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.official-site-btn:hover {
  background: linear-gradient(135deg, var(--aurora-blue), var(--neon-cyan));
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(77, 124, 255, 0.4);
  color: var(--stardust-white);
  text-shadow: none;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (min-width: 768px) {
  .stellar-menu {
    display: flex;
  }
  
  .mobile-trigger {
    display: none;
  }
  
  .responsible-badge {
    display: block;
  }
  
  .consent-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  
  .platform-card-inner {
    flex-direction: row;
    align-items: center;
  }
  
  .platform-visual {
    width: 25%;
    flex-shrink: 0;
  }
  
  .platform-details {
    padding: 0 1.5rem;
    width: 50%;
  }
  
  .platform-action {
    width: 25%;
    flex-shrink: 0;
  }
  
  .discover-link {
    width: auto;
  }
  
  .footer-constellation {
    grid-template-columns: 1fr 1fr;
  }
  
  .guardian-body {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .gateway-headline {
    font-size: 3.5rem;
  }
  
  .platform-constellation {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .platform-constellation .platform-card:first-child {
    grid-column: 1 / -1;
    max-width: 700px;
    justify-self: center;
  }
}
