/* Reset + Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Orbitron', sans-serif;
  background-color: #000;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 50px auto;
  padding: 20px;
  text-align: center;
}

h1 {
  font-size: 3rem;
  margin-bottom: 40px;
  color: #00ffe7;
  text-shadow: 0 0 10px #00ffe7;
  animation: glowPulse 2s infinite alternate;
}

@keyframes glowPulse {
  from {
    text-shadow: 0 0 5px #00ffe7;
  }
  to {
    text-shadow: 0 0 20px #00ffe7, 0 0 10px #00ffe7;
  }
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.resource-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #00ffe7;
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(8px);
}

.resource-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 0 20px #00ffe7;
}

.resource-card h2 {
  color: #00ffe7;
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.resource-card p {
  color: #ccc;
  font-size: 1rem;
}

footer {
  text-align: center;
  padding: 2rem;
  background-color: #000000;
  font-size: 0.9rem;
  color: #8b949e;
}
