
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #0f0f11;
  color: #f0f0f0;
}

header {
  background: #1a1a1d;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.nav h1 {
  font-size: 2rem;
  color: #00ffd5;
  text-shadow: 0 0 5px #00ffd5;
}

.auth-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.auth-controls button {
  background: #00ffd5;
  color: #000;
  border: none;
  padding: 6px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}

main {
  padding: 40px;
}

.hero {
  text-align: center;
  margin-bottom: 40px;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.1rem;
  color: #ccc;
}

.mod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.mod-card {
  background: #1c1c1f;
  border-radius: 12px;
  border: 1px solid #2a2a2d;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 0 8px rgba(0,255,213,0.05);
  display: flex;
  flex-direction: column;
}

.mod-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 20px rgba(0,255,213,0.15);
}

.mod-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.mod-content {
  padding: 16px;
}

.mod-card h3 {
  margin: 0 0 10px 0;
  font-size: 1.3rem;
  color: #00ffd5;
}

.mod-card p {
  color: #aaa;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.badge {
  background: #00ffd5;
  color: #000;
  padding: 4px 10px;
  border-radius: 5px;
  font-size: 0.8rem;
}

footer {
  text-align: center;
  color: #777;
  padding: 30px 0;
  background: #1a1a1d;
  margin-top: 60px;
  font-size: 0.9rem;
}
