:root {
  --primary: #00ffff;
  --bg-dark: #0a0f1a;
  --text-light: #dff;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --border: rgba(255, 255, 255, 0.1);
}

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

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg-dark) url('./assets/bg_wolfpack.png') no-repeat center center fixed;
  background-size: cover;
  color: var(--text-light);
  padding-top: 90px;
}

header {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.3);
  z-index: 10;
}

.logo {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
}

nav {
  display: flex;
  gap: 30px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

nav a:hover,
nav a.active {
  color: var(--primary);
  text-shadow: 0 0 6px var(--primary);
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: white;
}

.container {
  max-width: 960px;
  margin: auto;
  padding: 2rem;
  background: var(--glass-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.1);
}

h1 {
  text-align: center;
  font-size: 2.4rem;
  color: var(--primary);
  text-shadow: 0 0 20px var(--primary);
  margin-bottom: 2rem;
  animation: glowPulse 3s infinite ease-in-out;
}

h2 {
  color: var(--primary);
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
}

ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

ul li {
  line-height: 1.6;
  margin-bottom: 0.4rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background-color: rgba(255, 255, 255, 0.02);
}

table th, table td {
  padding: 0.8rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.chart-container {
  max-width: 400px;
  margin: 0 auto 20px;
  text-align: center;
}

@keyframes glowPulse {
  0% { text-shadow: 0 0 10px var(--primary); }
  50% { text-shadow: 0 0 35px var(--primary); }
  100% { text-shadow: 0 0 10px var(--primary); }
}

@media (max-width: 768px) {
  nav {
    display: none;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.85);
    position: absolute;
    top: 70px;
    right: 40px;
    padding: 15px 20px;
    border-radius: 8px;
  }

  nav.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

@media (max-width: 480px) {
  header {
    padding: 15px 20px;
  }

  .logo {
    font-size: 1rem;
  }

  h1 {
    font-size: 1.8rem;
  }
}
