@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700&display=swap');

:root {
  --accent-blue: #009dff;
  --accent-glow: #2cbcff;
  --text-light: #dbe4f0;
  --text-dim: #a0acba;
  --bg-top: #0e1620;
  --bg-bottom: #101823;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Orbitron', sans-serif;
  background: linear-gradient(to bottom, var(--bg-top), var(--bg-bottom));
  color: var(--text-light);
  line-height: 1.6;
}

.main-header {
  background: #0e1620;
  padding: 12px 30px;
  border-bottom: 1px solid #1a1f29;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-overlay {
  position: relative;
  width: 90px;
  height: 90px;
}

.logo-overlay img {
  width: 100%;
  height: auto;
  display: block;
}

.logo-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 17px;
  font-weight: 700;
  color: #000;
  pointer-events: none;
  text-shadow: 0 0 4px rgba(255,255,255,0.4);
  font-family: 'Orbitron', sans-serif;
}

.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-menu a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  padding: 8px 12px;
  transition: 0.3s ease;
}

.nav-menu a:hover {
  color: var(--accent-blue);
}

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #10161f;
  border: 1px solid #2c3443;
  border-radius: 6px;
  min-width: 160px;
  padding: 10px 0;
  z-index: 1000;
}

.dropdown-content li {
  padding: 6px 16px;
}

.dropdown-content a {
  color: var(--text-light);
}

.dropdown:hover .dropdown-content {
  display: block;
}

.btn-primary,
.btn-secondary {
  text-decoration: none;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-block;
  margin: 5px;
}

.btn-primary {
  background: #009dff;
  color: white;
  box-shadow: 0 0 10px #2cbcff;
}

.btn-primary:hover {
  background: #1ab2ff;
  box-shadow: 0 0 20px #2cbcff;
}

.btn-secondary {
  background: #1a1f29;
  border: 1px solid #2c3443;
  color: #dbe4f0;
}

.btn-secondary:hover {
  border-color: #009dff;
  color: #009dff;
  box-shadow: 0 0 10px rgba(0, 157, 255, 0.2);
}

.button-group {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}


.hero.small-hero {
  text-align: center;
  padding: 60px 0;
}

.title {
  font-size: 3rem;
  color: var(--accent-blue);
  text-shadow: 0 0 15px var(--accent-glow);
}

.tagline {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-dim);
}

main {
  padding: 60px 10%;
  max-width: 1200px;
  margin: 0 auto;
}

main h2 {
  font-size: 2rem;
  color: var(--accent-blue);
  text-shadow: 0 0 10px var(--accent-glow);
  margin-bottom: 15px;
}

footer {
  text-align: center;
  padding: 40px 0;
  border-top: 1px solid #1c2430;
  background: #0b0f16;
  margin-top: 60px;
}

.footer-links {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--accent-blue);
  margin: 0 8px;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--accent-glow);
}

footer p {
  color: #7f8fa3;
  font-size: 0.9rem;
}
