/* Reset + base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Orbitron', sans-serif;
  background-color: #000;
  color: white;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: #66ffcc;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* Matrix canvas */
#matrix-rain-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  filter: blur(2px);
  opacity: 0.5;
}

/* Dark overlay */
.matrix-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

/* Layout */
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 1.5rem;
}

.header {
  text-align: center;
  margin-bottom: 2rem;
}

.logo {
  width: 80px;
  margin-bottom: 0.5rem;
}

.tagline {
  color: #aaa;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

main section {
  margin-bottom: 3rem;
}

h2 {
  font-size: 1.5rem;
  border-bottom: 2px solid #66ffcc;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
}

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

.card {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  border: 1px solid #66ffcc;
  border-radius: 8px;
  text-align: center;
  transition: 0.2s;
}
.card:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.news article {
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.footer {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid #444;
  font-size: 0.9rem;
  color: #aaa;
}

.club-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.card h3 {
  margin-bottom: 0.5rem;
}
