@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500&family=Roboto:wght@400;700&display=swap');

:root {
  --main-color: #00ffea;
  --accent-color: #ff0266;
  --text-color: #ffffff;
  --bg-color: #000000;
}

body, html {
  margin: 0; padding: 0;
  font-family: 'Roboto', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  text-align: center;
  overflow-x: hidden;
}

.overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(45deg, rgba(0,255,234,0.2), rgba(255,2,102,0.2));
  z-index: -1;
}

.header {
  padding: 60px 20px;
}

.logo {
  width: 150px;
  margin-bottom: 20px;
}

.title {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  margin-bottom: 10px;
  text-shadow: 0 0 20px var(--main-color);
}

.tagline {
  font-size: 1.5rem;
  color: var(--accent-color);
}

section {
  padding: 40px 20px;
  margin: 20px auto;
  max-width: 900px;
}

h2 {
  font-family: 'Orbitron', sans-serif;
  border-bottom: 2px solid var(--main-color);
  display: inline-block;
  padding-bottom: 5px;
  margin-bottom: 20px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.card {
  background: rgba(255,255,255,0.1);
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,255,234,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 15px rgba(255,2,102,0.9);
}

.contact a {
  color: var(--main-color);
  text-decoration: none;
}

.contact a:hover {
  color: var(--accent-color);
}

footer {
  margin-top: 30px;
  padding: 20px;
  font-size: 0.9rem;
  opacity: 0.7;
}
