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

:root {
  --bg-dark: #1a1a2e;
  --bg-darker: #0f0f1e;
  --bg-card: #16213e;
  --neon-cyan: #00f5ff;
  --neon-magenta: #ff00ff;
  --neon-yellow: #ffff00;
  --neon-green: #00ff88;
  --neon-orange: #ff6b35;
  --neon-red: #ff0055;
  --text-primary: #ffffff;
  --text-secondary: #a0a0b0;
  --pixel-size: 4px;
}

html {
  scroll-behavior: smooth;
}

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

.crt-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  background: repeating-linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.05) 0px,
    rgba(0, 0, 0, 0.05) 1px,
    transparent 1px,
    transparent 3px
  );
}

.section-title {
  font-family: 'Press Start 2P', cursive;
  font-size: clamp(1rem, 3vw, 1.5rem);
  text-align: center;
  margin-bottom: 0.5rem;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-magenta), var(--neon-yellow));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 3s ease infinite;
  background-size: 200% 200%;
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  font-size: 1rem;
}

section {
  padding: 6rem 2rem;
  position: relative;
}

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes glow {
  0%, 100% { text-shadow: 0 0 10px var(--neon-cyan), 0 0 20px var(--neon-cyan), 0 0 30px var(--neon-cyan); }
  50% { text-shadow: 0 0 20px var(--neon-magenta), 0 0 30px var(--neon-magenta), 0 0 40px var(--neon-magenta); }
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

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

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes chomp {
  0%, 100% { clip-path: polygon(100% 75%, 100% 25%, 50% 50%, 0 0, 0 100%); }
  50% { clip-path: polygon(100% 50%, 100% 50%, 50% 50%, 0 0, 0 100%); }
}

@keyframes ghostFloat {
  0%, 100% { transform: translateY(0) translateX(0); }
  25% { transform: translateY(-5px) translateX(3px); }
  50% { transform: translateY(-3px) translateX(-3px); }
  75% { transform: translateY(-8px) translateX(2px); }
}

@keyframes hadouken {
  0% { transform: translateX(0) scale(1); opacity: 1; }
  100% { transform: translateX(100px) scale(1.5); opacity: 0; }
}

@keyframes ringSpin {
  0% { transform: rotateY(0deg); }
  100% { transform: rotateY(360deg); }
}

@keyframes pixelPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  background: radial-gradient(ellipse at center, #1a1a3e 0%, var(--bg-darker) 70%);
  overflow: hidden;
}

.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--neon-cyan);
  opacity: 0.6;
  animation: float 4s ease-in-out infinite;
}

.particle:nth-child(odd) {
  background: var(--neon-magenta);
}

.particle:nth-child(3n) {
  background: var(--neon-yellow);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
}

.pixel-decoration {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 4px solid var(--neon-cyan);
  opacity: 0.3;
}

.pixel-decoration::before {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--neon-cyan);
}

.top-left {
  top: -20px;
  left: -20px;
  border-right: none;
  border-bottom: none;
}

.top-left::before {
  top: -4px;
  left: -4px;
}

.top-right {
  top: -20px;
  right: -20px;
  border-left: none;
  border-bottom: none;
}

.top-right::before {
  top: -4px;
  right: -4px;
}

.bottom-left {
  bottom: -20px;
  left: -20px;
  border-right: none;
  border-top: none;
}

.bottom-left::before {
  bottom: -4px;
  left: -4px;
}

.bottom-right {
  bottom: -20px;
  right: -20px;
  border-left: none;
  border-top: none;
}

.bottom-right::before {
  bottom: -4px;
  right: -4px;
}

.hero-title {
  font-family: 'Press Start 2P', cursive;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.title-line {
  font-size: clamp(1.5rem, 5vw, 3rem);
  letter-spacing: 0.1em;
  animation: glow 3s ease-in-out infinite;
}

.title-line.highlight {
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-magenta));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: none;
}

.hero-subtitle {
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  margin-bottom: 3rem;
  font-style: italic;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-value {
  display: block;
  font-family: 'Press Start 2P', cursive;
  font-size: clamp(1rem, 3vw, 1.8rem);
  color: var(--neon-cyan);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.stat-divider {
  width: 2px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--neon-magenta), transparent);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: bounce 2s ease-in-out infinite;
}

.scroll-indicator span {
  font-family: 'Press Start 2P', cursive;
  font-size: 0.6rem;
  color: var(--text-secondary);
  letter-spacing: 0.2em;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 3px solid var(--neon-cyan);
  border-bottom: 3px solid var(--neon-cyan);
  transform: rotate(45deg);
  opacity: 0.7;
}

.timeline {
  background: var(--bg-darker);
}

.timeline-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.timeline-container::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--neon-cyan), var(--neon-magenta), var(--neon-yellow), var(--neon-green));
  border-radius: 2px;
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
  position: relative;
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.timeline-item.visible {
  opacity: 1;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
  transform: translateX(-50px);
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
  transform: translateX(50px);
}

.timeline-item.visible:nth-child(odd),
.timeline-item.visible:nth-child(even) {
  transform: translateX(0);
}

.timeline-dot {
  width: 20px;
  height: 20px;
  background: var(--neon-cyan);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: 0 0 10px var(--neon-cyan), 0 0 20px var(--neon-cyan);
}

.timeline-content {
  width: calc(50% - 40px);
  background: var(--bg-card);
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid rgba(0, 245, 255, 0.2);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content:hover {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.2);
}

.timeline-year {
  font-family: 'Press Start 2P', cursive;
  font-size: 0.7rem;
  color: var(--neon-magenta);
  display: block;
  margin-bottom: 0.5rem;
}

.timeline-content h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--neon-cyan);
}

.timeline-content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.games {
  background: var(--bg-dark);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.game-card {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.game-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 245, 255, 0.1), rgba(255, 0, 255, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.game-card:hover {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 30px rgba(0, 245, 255, 0.3), inset 0 0 30px rgba(0, 245, 255, 0.1);
  transform: translateY(-10px);
}

.game-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pacman {
  width: 40px;
  height: 40px;
  background: var(--neon-yellow);
  border-radius: 50%;
  animation: chomp 0.5s ease-in-out infinite;
  position: absolute;
  left: 10px;
}

.ghost {
  width: 20px;
  height: 24px;
  background: var(--neon-magenta);
  border-radius: 10px 10px 0 0;
  position: absolute;
  animation: ghostFloat 2s ease-in-out infinite;
}

.ghost::before {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--neon-magenta);
  clip-path: polygon(0 0, 20% 100%, 40% 0, 60% 100%, 80% 0, 100% 100%);
}

.ghost-1 {
  right: 15px;
  top: 10px;
  animation-delay: 0.3s;
}

.ghost-2 {
  right: 5px;
  top: 25px;
  background: var(--neon-cyan);
  animation-delay: 0.6s;
}

.ghost-2::before {
  background: var(--neon-cyan);
}

.mario-block {
  width: 50px;
  height: 50px;
  background: var(--neon-orange);
  border: 4px solid #8b4513;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Press Start 2P', cursive;
  font-size: 1.5rem;
  color: #8b4513;
  border-radius: 4px;
  animation: pixelPulse 2s ease-in-out infinite;
  box-shadow: 0 0 15px rgba(255, 107, 53, 0.5);
}

.tetris-piece {
  position: absolute;
  background: var(--neon-green);
  animation: float 3s ease-in-out infinite;
}

.piece-l {
  width: 30px;
  height: 10px;
  top: 10px;
  left: 10px;
  background: var(--neon-orange);
  box-shadow: 0 0 10px var(--neon-orange);
}

.piece-l::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 20px;
  background: var(--neon-orange);
  right: 0;
  top: 0;
  box-shadow: 0 0 10px var(--neon-orange);
}

.piece-t {
  width: 30px;
  height: 10px;
  top: 30px;
  left: 20px;
  background: var(--neon-magenta);
  box-shadow: 0 0 10px var(--neon-magenta);
  animation-delay: 0.5s;
}

.piece-t::before {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--neon-magenta);
  left: 10px;
  top: -10px;
  box-shadow: 0 0 10px var(--neon-magenta);
}

.piece-line {
  width: 40px;
  height: 10px;
  top: 50px;
  left: 5px;
  background: var(--neon-cyan);
  box-shadow: 0 0 10px var(--neon-cyan);
  animation-delay: 1s;
}

.triforce {
  width: 0;
  height: 0;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-bottom: 40px solid var(--neon-yellow);
  position: relative;
  animation: pixelPulse 2s ease-in-out infinite;
  filter: drop-shadow(0 0 10px var(--neon-yellow));
}

.triforce::before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 20px solid var(--bg-card);
  top: 15px;
  left: -12px;
}

.ring {
  width: 20px;
  height: 20px;
  border: 4px solid var(--neon-yellow);
  border-radius: 50%;
  position: absolute;
  animation: ringSpin 1.5s linear infinite;
  box-shadow: 0 0 10px var(--neon-yellow);
}

.ring-2 {
  left: 25px;
  top: 5px;
  animation-delay: 0.3s;
}

.ring-3 {
  left: 50px;
  top: 10px;
  animation-delay: 0.6s;
}

.hadouken {
  width: 30px;
  height: 30px;
  background: radial-gradient(circle, var(--neon-cyan), var(--neon-magenta));
  border-radius: 50%;
  animation: hadouken 1.5s ease-in-out infinite;
  box-shadow: 0 0 20px var(--neon-cyan), 0 0 40px var(--neon-magenta);
}

.game-card h3 {
  font-family: 'Press Start 2P', cursive;
  font-size: 0.85rem;
  margin-bottom: 0.3rem;
  color: var(--text-primary);
}

.game-year {
  display: block;
  font-family: 'Press Start 2P', cursive;
  font-size: 0.6rem;
  color: var(--neon-magenta);
  margin-bottom: 1rem;
}

.game-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.game-tags {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.tag {
  background: rgba(0, 245, 255, 0.1);
  border: 1px solid rgba(0, 245, 255, 0.3);
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  font-size: 0.7rem;
  color: var(--neon-cyan);
  font-family: 'Press Start 2P', cursive;
  font-size: 0.5rem;
}

.consoles {
  background: var(--bg-darker);
}

.consoles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.console-card {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  border: 2px solid rgba(255, 0, 255, 0.1);
  transition: all 0.4s ease;
}

.console-card:hover {
  border-color: var(--neon-magenta);
  box-shadow: 0 0 25px rgba(255, 0, 255, 0.2);
  transform: translateY(-5px);
}

.console-visual {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.atari-body {
  width: 80px;
  height: 50px;
  background: #8b7355;
  border-radius: 4px;
  position: relative;
  border: 3px solid #5a4a3a;
}

.atari-cartridge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 15px;
  background: #333;
  border-radius: 2px 2px 0 0;
}

.atari-switches {
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
}

.switch {
  width: 8px;
  height: 12px;
  background: #333;
  border-radius: 2px;
}

.nes-body {
  width: 90px;
  height: 45px;
  background: #d0d0d0;
  border-radius: 4px;
  position: relative;
  border: 3px solid #999;
}

.nes-cartridge-slot {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 15px;
  background: #333;
  border-radius: 2px 2px 0 0;
}

.nes-power {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 10px;
  height: 10px;
  background: var(--neon-red);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--neon-red);
}

.nes-reset {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 10px;
  height: 10px;
  background: #666;
  border-radius: 50%;
}

.genesis-body {
  width: 85px;
  height: 45px;
  background: #111;
  border-radius: 4px;
  position: relative;
  border: 3px solid #333;
}

.genesis-cartridge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 45px;
  height: 10px;
  background: #222;
  border-radius: 2px 2px 0 0;
}

.genesis-power {
  position: absolute;
  bottom: 5px;
  left: 8px;
  width: 8px;
  height: 8px;
  background: var(--neon-red);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--neon-red);
}

.genesis-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Press Start 2P', cursive;
  font-size: 0.5rem;
  color: var(--neon-cyan);
  text-shadow: 0 0 5px var(--neon-cyan);
}

.snes-body {
  width: 85px;
  height: 50px;
  background: #c0c0c0;
  border-radius: 8px 8px 4px 4px;
  position: relative;
  border: 3px solid #999;
}

.snes-cartridge {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 8px;
  background: #555;
  border-radius: 2px 2px 0 0;
}

.snes-power {
  position: absolute;
  bottom: 8px;
  left: 10px;
  width: 8px;
  height: 8px;
  background: var(--neon-green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--neon-green);
}

.snes-reset {
  position: absolute;
  bottom: 8px;
  right: 10px;
  width: 8px;
  height: 8px;
  background: #666;
  border-radius: 50%;
}

.console-card h3 {
  font-family: 'Press Start 2P', cursive;
  font-size: 0.75rem;
  margin-bottom: 0.3rem;
}

.console-year {
  font-size: 0.8rem;
  color: var(--neon-magenta);
}

.stats {
  background: var(--bg-dark);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.big-stat {
  text-align: center;
  padding: 2rem;
  background: var(--bg-card);
  border-radius: 12px;
  border: 2px solid rgba(0, 255, 136, 0.1);
  transition: all 0.4s ease;
}

.big-stat:hover {
  border-color: var(--neon-green);
  box-shadow: 0 0 25px rgba(0, 255, 136, 0.2);
  transform: scale(1.05);
}

.stat-number {
  font-family: 'Press Start 2P', cursive;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--neon-green);
  text-shadow: 0 0 10px var(--neon-green);
}

.stat-suffix {
  font-family: 'Press Start 2P', cursive;
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: var(--neon-green);
}

.stat-text {
  margin-top: 1rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer {
  background: var(--bg-darker);
  padding: 3rem 2rem;
  text-align: center;
  border-top: 2px solid rgba(0, 245, 255, 0.1);
}

.footer-pixel-art {
  margin-bottom: 1rem;
}

.pixel-heart {
  width: 30px;
  height: 30px;
  margin: 0 auto;
  position: relative;
  animation: pixelPulse 1.5s ease-in-out infinite;
}

.pixel-heart::before,
.pixel-heart::after {
  content: '';
  position: absolute;
  width: 15px;
  height: 15px;
  background: var(--neon-red);
  border-radius: 4px 4px 0 0;
  box-shadow: 0 0 10px var(--neon-red);
}

.pixel-heart::before {
  left: 0;
  top: 0;
  transform: rotate(-45deg);
  transform-origin: bottom right;
}

.pixel-heart::after {
  right: 0;
  top: 0;
  transform: rotate(45deg);
  transform-origin: bottom left;
}

.heart-text {
  color: var(--neon-magenta);
  font-family: 'Press Start 2P', cursive;
  font-size: 0.7rem;
}

.footer-copy {
  color: var(--text-secondary);
  font-size: 0.8rem;
  margin-top: 0.5rem;
}

.footer-decoration {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 1.5rem;
}

.deco-block {
  width: 12px;
  height: 12px;
  background: var(--neon-cyan);
  opacity: 0.5;
  animation: pixelPulse 2s ease-in-out infinite;
}

.deco-block:nth-child(2) {
  background: var(--neon-magenta);
  animation-delay: 0.2s;
}

.deco-block:nth-child(3) {
  background: var(--neon-yellow);
  animation-delay: 0.4s;
}

.deco-block:nth-child(4) {
  background: var(--neon-green);
  animation-delay: 0.6s;
}

.deco-block:nth-child(5) {
  background: var(--neon-orange);
  animation-delay: 0.8s;
}

@media (max-width: 768px) {
  .timeline-container::before {
    left: 20px;
  }

  .timeline-item,
  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    flex-direction: row;
    padding-left: 50px;
  }

  .timeline-dot {
    left: 20px;
  }

  .timeline-content {
    width: 100%;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .stat-divider {
    width: 50px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--neon-magenta), transparent);
  }

  .games-grid {
    grid-template-columns: 1fr;
  }

  .consoles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  section {
    padding: 4rem 1rem;
  }

  .consoles-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }
}
