/* === Retro Modern Theme: Purple + Black === */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500&family=Poppins:wght@300;500&display=swap');

:root {
  --purple-dark: #1a001f;
  --purple: #7a00ff;
  --purple-light: #c89eff;
  --black: #0a0a0a;
  --text: #eee;
  --accent-glow: 0 0 15px rgba(122, 0, 255, 0.8);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(180deg, var(--black), var(--purple-dark));
  color: var(--text);
  text-align: center;
  line-height: 1.6;
}

/* --- Hero --- */
.hero {
  background: url('https://frutigeraeroarchive.org/images/wallpapers/miscellaneous/miscellaneous_29.jpg') center/cover no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-shadow: var(--accent-glow);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(5, 0, 10, 0.75);
  backdrop-filter: blur(2px);
}

.hero .overlay {
  position: relative;
  z-index: 1;
  background: rgba(25, 0, 50, 0.6);
  padding: 2rem 3rem;
  border: 2px solid var(--purple);
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(122, 0, 255, 0.4);
}

.hero h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  color: var(--purple-light);
  text-transform: uppercase;
}

.hero p {
  margin: 1rem 0 2rem;
  font-size: 1.1rem;
  color: var(--text);
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  background: var(--purple);
  color: #fff;
  padding: 0.8rem 1.8rem;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: var(--accent-glow);
  transition: all 0.2s ease-in-out;
}

.btn:hover {
  transform: translateY(-3px);
  background: var(--purple-light);
  color: #000;
}

/* --- Sections --- */
.section {
  padding: 4rem 1rem;
  max-width: 800px;
  margin: auto;
}

.section h2 {
  font-family: 'Orbitron', sans-serif;
  color: var(--purple-light);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: var(--accent-glow);
}

.section p {
  color: #ddd;
}

/* --- Info Box --- */
.info-box {
  background: rgba(20, 0, 40, 0.6);
  border: 2px solid var(--purple);
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 0 20px rgba(122, 0, 255, 0.2);
}

.highlight {
  color: var(--purple-light);
  font-weight: bold;
}

/* --- Rules --- */
.rules ul {
  list-style: none;
  padding: 0;
  color: #ccc;
}

.rules li {
  margin: 0.8rem 0;
  padding: 0.5rem;
  border-left: 3px solid var(--purple);
}

/* --- Footer --- */
footer {
  background: #0a0010;
  padding: 1.5rem;
  font-size: 0.9rem;
  border-top: 2px solid var(--purple);
  color: var(--purple-light);
  text-shadow: var(--accent-glow);
}
.counter {
  margin-top: 1rem;
  color: var(--purple-light);
  font-family: 'Orbitron', sans-serif;
  text-shadow: var(--accent-glow);
  font-size: 0.95rem;
}
