/* CYBER-BRICKS WEBSITE STYLE */

:root {
  --bg-color: #06040a;
  --primary-color: #ff007f;
  --primary-rgb: 255, 0, 127;
  --secondary-color: #00f0ff;
  --secondary-rgb: 0, 240, 255;
  --accent-color: #ffe600;
  
  --panel-bg: rgba(14, 8, 22, 0.65);
  --border-color: rgba(255, 0, 127, 0.2);
  --border-glow: 0 0 15px rgba(255, 0, 127, 0.25);
  
  --text-primary: #ffffff;
  --text-secondary: #cda3ff;
  --text-muted: #6e5888;
  
  --font-orbitron: 'Orbitron', sans-serif;
  --font-mono: 'Share Tech Mono', monospace;
  --font-sans: 'Inter', sans-serif;
  
  --transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* --- Base Resets --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-color);
  color: var(--text-primary);
  font-family: var(--font-sans);
  overflow-x: hidden;
  line-height: 1.6;
}

/* --- Glowing Orbs Background --- */
.glow-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: var(--primary-color);
  top: -100px;
  right: -100px;
  animation: float-orb 15s infinite alternate;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: var(--secondary-color);
  bottom: -50px;
  left: -50px;
  animation: float-orb 18s infinite alternate-reverse;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: var(--accent-color);
  top: 40%;
  left: 30%;
  opacity: 0.05;
}

@keyframes float-orb {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(60px, 40px) scale(1.15); }
}

/* --- Glassmorphic Panels --- */
.glass-panel {
  background: var(--panel-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  box-shadow: var(--border-glow), inset 0 0 15px rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  transition: all var(--transition);
}

.glass-panel:hover {
  border-color: rgba(var(--primary-rgb), 0.35);
  box-shadow: 0 10px 30px rgba(var(--primary-rgb), 0.2), inset 0 0 15px rgba(255, 255, 255, 0.03);
}

/* --- Navigation Bar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: rgba(6, 4, 10, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 100;
  display: flex;
  align-items: center;
}

.nav-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  flex-direction: column;
}

.logo-txt {
  font-family: var(--font-orbitron);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 2px;
  color: #fff;
  text-shadow: 0 0 10px var(--primary-color);
}

.logo-sub {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 3.5px;
  color: var(--secondary-color);
  margin-top: -2px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 13px;
  font-family: var(--font-orbitron);
  font-weight: 700;
  letter-spacing: 1.5px;
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--secondary-color);
  text-shadow: 0 0 8px rgba(var(--secondary-rgb), 0.5);
}

.nav-cta {
  text-decoration: none;
  font-family: var(--font-orbitron);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.5px;
  color: #fff;
  background: transparent;
  border: 1px solid var(--primary-color);
  padding: 8px 18px;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(var(--primary-rgb), 0.2);
  transition: all var(--transition);
}

.nav-cta:hover {
  background: var(--primary-color);
  box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.5);
  transform: translateY(-2px);
}

/* --- Hero Section --- */
.hero {
  padding: 140px 0 80px 0;
  position: relative;
}

.hero-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(var(--secondary-rgb), 0.08);
  border: 1px solid rgba(var(--secondary-rgb), 0.2);
  padding: 6px 12px;
  border-radius: 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--secondary-color);
  margin-bottom: 24px;
}

.pulse-dot {
  width: 6px;
  height: 6px;
  background: var(--secondary-color);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--secondary-color);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.5; }
}

.hero-content h1 {
  font-family: var(--font-orbitron);
  font-weight: 900;
  font-size: 46px;
  line-height: 1.15;
  letter-spacing: 1px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 30%, var(--text-secondary) 70%, var(--primary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 30px rgba(var(--primary-rgb), 0.15));
}

.hero-content p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 35px;
  max-width: 550px;
}

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

.btn {
  text-decoration: none;
  font-family: var(--font-orbitron);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  padding: 14px 28px;
  border-radius: 8px;
  transition: all var(--transition);
  display: inline-block;
}

.btn-primary {
  color: #fff;
  background: var(--primary-color);
  box-shadow: 0 0 15px rgba(var(--primary-rgb), 0.35);
  border: 1px solid transparent;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(var(--primary-rgb), 0.6);
  background: #ff1a8c;
}

.btn-secondary {
  color: #fff;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(var(--secondary-rgb), 0.4);
  box-shadow: 0 0 10px rgba(var(--secondary-rgb), 0.1);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  background: rgba(var(--secondary-rgb), 0.1);
  border-color: var(--secondary-color);
  box-shadow: 0 0 20px rgba(var(--secondary-rgb), 0.3);
}

/* Hero Live Mockup Frame */
.hero-preview {
  display: flex;
  justify-content: center;
}

.mockup-frame {
  width: 100%;
  max-width: 380px;
  height: 280px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: float-mockup 6s ease-in-out infinite alternate;
}

@keyframes float-mockup {
  0% { transform: translateY(0px) rotate(1deg); }
  100% { transform: translateY(-15px) rotate(-1deg); }
}

.mockup-header {
  height: 32px;
  background: rgba(0,0,0,0.3);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 6px;
}

.mockup-header span[class^="dot-"] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}
.dot-red { background: #ff5f56; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #27c93f; }

.mockup-title {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
  margin-left: 10px;
  letter-spacing: 1px;
}

.mockup-body {
  flex-grow: 1;
  background: #050209;
  position: relative;
  padding: 20px;
}

.mockup-grid {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.mockup-rect {
  width: 45px;
  height: 12px;
  border-radius: 2px;
  box-shadow: 0 0 5px rgba(255,255,255,0.1);
}
.mockup-rect.cyan { background: var(--secondary-color); box-shadow: 0 0 8px var(--secondary-color); }
.mockup-rect.magenta { background: var(--primary-color); box-shadow: 0 0 8px var(--primary-color); }
.mockup-rect.amber { background: var(--accent-color); box-shadow: 0 0 8px var(--accent-color); }

.mockup-ball {
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 45%;
  box-shadow: 0 0 8px var(--accent-color);
  animation: mock-ball-move 4s infinite alternate linear;
}

.mockup-paddle {
  width: 70px;
  height: 8px;
  background: var(--secondary-color);
  border-radius: 4px;
  position: absolute;
  bottom: 25px;
  left: 30%;
  box-shadow: 0 0 10px var(--secondary-color);
  animation: mock-paddle-move 4s infinite alternate ease-in-out;
}

@keyframes mock-ball-move {
  0% { top: 30%; left: 30%; }
  33% { top: 78%; left: 52%; }
  66% { top: 20%; left: 80%; }
  100% { top: 50%; left: 45%; }
}

@keyframes mock-paddle-move {
  0% { left: 15%; }
  50% { left: 45%; }
  100% { left: 30%; }
}

/* --- Section Headers --- */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-tag {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--secondary-color);
  font-weight: bold;
}

.section-header h2 {
  font-family: var(--font-orbitron);
  font-weight: 900;
  font-size: 32px;
  letter-spacing: 1.5px;
  margin-top: 8px;
  text-shadow: 0 0 10px rgba(var(--primary-rgb), 0.1);
}

.section-header p {
  color: var(--text-secondary);
  font-size: 15px;
  max-width: 600px;
  margin: 10px auto 0 auto;
}

.accent-line {
  width: 60px;
  height: 3px;
  background: var(--primary-color);
  margin: 15px auto 0 auto;
  box-shadow: 0 0 8px var(--primary-color);
}

/* --- Features Section --- */
.features-section {
  padding: 80px 0;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

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

.feature-card {
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  text-align: left;
}

.card-glow {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.1;
  transition: opacity var(--transition);
}
.card-glow.magenta { background: var(--primary-color); }
.card-glow.aqua { background: var(--secondary-color); }
.card-glow.amber { background: var(--accent-color); }

.feature-card:hover .card-glow {
  opacity: 0.22;
}

.icon-box {
  font-size: 36px;
  margin-bottom: 24px;
}

.feature-card h3 {
  font-family: var(--font-orbitron);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 1px;
  margin-bottom: 12px;
  color: #fff;
}

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

/* --- Live Demo Section --- */
.demo-section {
  padding: 80px 0;
  background: rgba(0,0,0,0.3);
  border-top: 1px solid rgba(255,255,255,0.02);
  border-bottom: 1px solid rgba(255,255,255,0.02);
}

.demo-container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 30px;
}

.game-console {
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 520px;
  border-color: rgba(var(--secondary-rgb), 0.2);
}

/* Reuse extension styles for console game HUD */
.game-hud {
  display: flex;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 8px 16px;
  margin-bottom: 14px;
  height: 52px;
}

.hud-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hud-label {
  font-size: 9px;
  font-family: var(--font-mono);
  letter-spacing: 1px;
  color: var(--secondary-color);
  margin-bottom: 2px;
}

.hud-val {
  font-size: 16px;
  font-family: var(--font-orbitron);
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.5px;
}

.hud-val.glow-txt {
  color: var(--accent-color);
  text-shadow: 0 0 6px var(--accent-color);
}

.lives-indicators {
  display: flex;
  gap: 6px;
}

.heart {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: all 0.3s;
}

.heart.active {
  background: var(--primary-color);
  border-color: #fff;
  box-shadow: 0 0 6px var(--primary-color);
}

.pause-icon-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.pause-icon-btn:hover {
  background: rgba(255,255,255,0.08);
}

.svg-icon {
  width: 18px;
  height: 18px;
  fill: var(--secondary-color);
  filter: drop-shadow(0 0 2px var(--secondary-color));
}

/* Canvas Wrap on website console */
.canvas-wrapper {
  position: relative;
  width: 100%;
  flex-grow: 1;
  background: #000;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}

#game-canvas {
  width: 100%;
  height: 100%;
  background: transparent;
  display: block;
}

/* Screenshake effect */
.shake-effect {
  animation: shake 0.25s linear;
}

@keyframes shake {
  10%, 90% { transform: translate3d(-1px, 0, 0); }
  20%, 80% { transform: translate3d(2px, 0, 0); }
  30%, 50%, 70% { transform: translate3d(-3px, 0, 0); }
  40%, 60% { transform: translate3d(3px, 0, 0); }
}

/* Canvas Overlays */
.canvas-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(6, 4, 10, 0.9);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 20;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.30s ease;
}

.canvas-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.overlay-title {
  font-family: var(--font-orbitron);
  font-weight: 900;
  font-size: 26px;
  letter-spacing: 2px;
  color: #fff;
  margin: 0 0 10px 0;
  text-shadow: 0 0 10px var(--secondary-color);
}

.overlay-title.pulse {
  animation: pulse-glow 2s infinite alternate;
}

@keyframes pulse-glow {
  0% { transform: scale(0.98); opacity: 0.8; }
  100% { transform: scale(1.02); opacity: 1; text-shadow: 0 0 20px var(--secondary-color); }
}

.overlay-subtitle {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--secondary-color);
  margin-bottom: 25px;
  opacity: 0.8;
}

.overlay-stats {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(var(--secondary-rgb), 0.2);
  border-radius: 8px;
  padding: 12px 24px;
  width: 250px;
  margin-bottom: 25px;
}

.stat-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-family: var(--font-mono);
  letter-spacing: 1px;
}

.stat-row span:last-child {
  font-family: var(--font-orbitron);
  font-weight: bold;
  color: var(--accent-color);
}

.menu-btn {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 2px;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(var(--primary-rgb), 0.4);
  padding: 10px 24px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.15s ease;
  outline: none;
  font-weight: bold;
}

.menu-btn.primary-glow {
  border-color: var(--primary-color);
  box-shadow: 0 0 12px rgba(var(--primary-rgb), 0.3);
}

.menu-btn.primary-glow:hover {
  background: var(--primary-color);
  box-shadow: 0 0 22px rgba(var(--primary-rgb), 0.7);
  transform: translateY(-2px);
}

.menu-btn.secondary-glow:hover {
  border-color: var(--secondary-color);
  background: rgba(var(--secondary-rgb), 0.15);
  box-shadow: 0 0 12px rgba(var(--secondary-rgb), 0.4);
  transform: translateY(-2px);
}

.menu-btn:active {
  transform: scale(0.96);
}

/* Side console info */
.demo-info {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 520px;
}

.demo-info h3 {
  font-family: var(--font-orbitron);
  font-size: 15px;
  letter-spacing: 1.5px;
  color: #fff;
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 8px;
  margin-bottom: 15px;
}

.control-list {
  list-style: none;
}

.control-list li {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 14px;
  line-height: 1.5;
}

.control-list kbd {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 4px;
  padding: 2px 6px;
  font-family: var(--font-orbitron);
  font-weight: bold;
  font-size: 11px;
}

.settings-mini {
  margin-top: 30px;
  border-top: 1px dashed rgba(255,255,255,0.08);
  padding-top: 20px;
}

.settings-mini h4 {
  font-family: var(--font-orbitron);
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.demo-info .setting-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 1px;
}

/* Mini Switch */
.switch {
  position: relative;
  display: inline-block;
  width: 38px;
  height: 20px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.1);
  transition: .3s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 12px;
  width: 12px;
  left: 3px;
  bottom: 3px;
  background-color: #fff;
  transition: .3s;
}

input:checked + .slider {
  background-color: rgba(var(--primary-rgb), 0.3);
  border-color: var(--primary-color);
}

input:checked + .slider:before {
  transform: translateX(18px);
  background-color: var(--primary-color);
}

.slider.round { border-radius: 20px; }
.slider.round:before { border-radius: 50%; }

/* --- Stores Badge Cards --- */
.stores-section {
  padding: 100px 0;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.store-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.badge-card {
  display: flex;
  align-items: center;
  padding: 20px 24px;
  text-decoration: none;
  border-radius: 12px;
  gap: 16px;
  transition: all var(--transition);
}

.store-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  transition: transform var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.store-icon svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

/* Brand Colors for Store Badges */
.badge-card.chrome .store-icon { color: #4285f4; }
.badge-card.edge .store-icon { color: #0078D7; }
.badge-card.firefox .store-icon { color: #FF9400; }
.badge-card.safari .store-icon { color: #00CDFF; }

.badge-text {
  display: flex;
  flex-direction: column;
}

.badge-text .sub {
  font-size: 10px;
  color: var(--text-secondary);
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.badge-text .store-name {
  font-family: var(--font-orbitron);
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  letter-spacing: 0.5px;
}

/* Hover effects for custom stores */
.badge-card:hover {
  transform: translateY(-5px);
}
.badge-card:hover .store-icon {
  transform: scale(1.15) rotate(5deg);
}

.badge-card.chrome:hover { border-color: #4285f4; box-shadow: 0 5px 20px rgba(66, 133, 244, 0.4); }
.badge-card.edge:hover { border-color: #107c41; box-shadow: 0 5px 20px rgba(16, 124, 65, 0.4); }
.badge-card.firefox:hover { border-color: #ff9400; box-shadow: 0 5px 20px rgba(255, 148, 0, 0.4); }
.badge-card.safari:hover { border-color: #00cdff; box-shadow: 0 5px 20px rgba(0, 205, 255, 0.4); }

/* --- Footer --- */
.footer {
  background: #030206;
  border-top: 1px solid rgba(255,255,255,0.03);
  padding: 60px 0 20px 0;
}

.footer-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  margin-bottom: 40px;
}

.footer-info .logo {
  margin-bottom: 15px;
}

.footer-info p {
  color: var(--text-secondary);
  font-size: 13px;
  max-width: 450px;
}

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

.footer-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 13px;
  transition: color var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.02);
  padding-top: 20px;
  text-align: center;
}

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

/* --- Responsive Adaptations --- */

@media (max-width: 950px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }
  .hero-content p {
    margin: 0 auto 30px auto;
  }
  .hero-ctas {
    justify-content: center;
  }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .demo-container {
    grid-template-columns: 1fr;
  }
  .store-badges {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }
  .footer-links {
    align-items: center;
  }
}

@media (max-width: 550px) {
  .hero-content h1 {
    font-size: 32px;
  }
  .btn {
    padding: 12px 20px;
    font-size: 12px;
  }
  .store-badges {
    grid-template-columns: 1fr;
  }
  .game-console {
    height: 440px;
  }
  .demo-info {
    height: auto;
  }
}

/* --- FAQ Section (SEO/AEO/GEO) --- */
.faq-section {
  padding: 80px 0;
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.faq-card {
  padding: 30px;
  text-align: left;
}

.faq-card h4 {
  font-family: var(--font-orbitron);
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  border-left: 2px solid var(--secondary-color);
  padding-left: 10px;
}

.faq-card p {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 750px) {
  .faq-container {
    grid-template-columns: 1fr;
  }
}
