@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&family=Press+Start+2P&display=swap');

:root {
  --neon-green: #39ff14;
  --neon-blue: #2575fc;
  --neon-red: #ff416c;
  --bg-dark: #0f0c29;
  --glass: rgba(255, 255, 255, 0.05);
}

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

body {
  font-family: 'Roboto', sans-serif;
  background: radial-gradient(circle at center, #1a1a2e, var(--bg-dark));
  color: #fff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  line-height: 1.6;
}

.container {
  max-width: 800px;
  width: 100%;
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 3rem;
  backdrop-filter: blur(12px);
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

h1 {
  font-family: 'Press Start 2P', cursive;
  font-size: 1.1rem;
  color: var(--neon-green);
  text-shadow: 0 0 10px var(--neon-green);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

p { font-size: 1rem; color: #ccc; margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; }

.demo-img {
  width: 100%;
  max-width: 480px;
  border-radius: 12px;
  border: 2px solid var(--neon-green);
  margin-bottom: 2rem;
  filter: drop-shadow(0 0 10px rgba(57, 255, 20, 0.2));
}

/* Action Buttons */
.action-btn {
  display: inline-block;
  padding: 1.2rem 2.5rem;
  font-family: 'Press Start 2P', cursive;
  font-size: 0.7rem;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  transition: 0.3s;
  border: none;
  cursor: pointer;
}

.btn-blue { background: linear-gradient(45deg, #6a11cb, var(--neon-blue)); box-shadow: 0 0 20px rgba(37, 117, 252, 0.4); }
.btn-red { background: linear-gradient(45deg, var(--neon-red), #ff4b2b); box-shadow: 0 0 20px rgba(255, 65, 108, 0.4); }
.action-btn:hover { transform: scale(1.05); filter: brightness(1.2); }

/* Status Badges */
.status-tag {
  display: inline-block;
  padding: 1rem 2rem;
  border: 2px dashed var(--neon-green);
  color: var(--neon-green);
  font-family: 'Press Start 2P', cursive;
  font-size: 0.6rem;
  letter-spacing: 1px;
}

/* Links List for Radiation */
.links-list {
  text-align: left;
  background: rgba(0,0,0,0.3);
  padding: 1.5rem;
  border-radius: 10px;
  border-left: 4px solid var(--neon-green);
}

.links-list a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 8px 0;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.links-list a:hover { color: var(--neon-green); padding-left: 10px; transition: 0.2s; }

.back-link {
  display: block;
  margin-top: 2rem;
  color: #888;
  text-decoration: none;
  font-size: 0.7rem;
  font-family: 'Press Start 2P', cursive;
}

.back-link:hover { color: #fff; }
