body {
  margin: 0;
  background: radial-gradient(circle at top, #12001f, #05010a);
  color: #d7ccff;
  font-family: 'Press Start 2P', monospace;
  min-height: 100vh;
}

a { color: #ff7bff; text-decoration: none; }
a:hover { text-shadow: 0 0 10px #b56cff; }

header {
  text-align: center;
  padding: 50px 20px 10px;
}

h1 {
  font-size: 28px;
  color: #b56cff;
  text-shadow: 0 0 12px #7a2cff;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 18px;
  font-size: 10px;
  margin: 20px 0 40px;
}

.container {
  width: 90%;
  max-width: 900px;
  margin: auto;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(181,108,255,0.25);
  border-radius: 10px;
  padding: 16px;
  transition: 0.2s;
}

.card:hover {
  transform: translateY(-3px);
  border-color: #b56cff;
  box-shadow: 0 0 20px rgba(181,108,255,0.25);
}

.small {
  font-size: 8px;
  opacity: 0.8;
  line-height: 1.6;
}

footer {
  text-align: center;
  padding: 40px;
  font-size: 8px;
  opacity: 0.6;
}
.card {
  position: relative;
  overflow: hidden;
}

.ripple {
  position: absolute;
  width: 10px;
  height: 10px;
  background: rgba(154,160,255,0.5);
  border-radius: 50%;
  transform: scale(0);
  animation: rippleAnim 0.6s ease-out;
  pointer-events: none;
}

@keyframes rippleAnim {
  to {
    transform: scale(20);
    opacity: 0;
  }
}