/* ===============================
   WOLFS ESPORTS – DARK STYLE
   =============================== */

:root {
  --bg: #000000;
  --card: #070c12;
  --accent: #e10600;
  --accent-soft: rgba(225, 6, 0, 0.15);
  --text: #f1f1f1;
  --muted: #9aa3ad;
  --border: #1a1a1a;
}

/* ===============================
   GLOBAL
   =============================== */

* {
  box-sizing: border-box;
}

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

/* ===============================
   BACKGROUND EFFECTS
   =============================== */

/* Subtle red energy glow */
.energy-glow {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 30%, rgba(225,6,0,0.10), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(225,6,0,0.08), transparent 50%);
  animation: moveEnergy 18s ease-in-out infinite alternate;
}

@keyframes moveEnergy {
  0% {
    background-position: 20% 30%, 80% 70%;
  }
  100% {
    background-position: 30% 40%, 70% 60%;
  }
}

/* Diagonal subtle accent lines */
.accent-lines {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image: linear-gradient(
    60deg,
    transparent 49%,
    rgba(225,6,0,0.04) 50%,
    transparent 51%
  );
  background-size: 300px 300px;
  animation: moveLines 14s linear infinite;
}

@keyframes moveLines {
  from { background-position: 0 0; }
  to { background-position: 300px 300px; }
}

/* Optional subtle noise texture */
.noise {
  position: fixed;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  opacity: 0.02;
}

/* ===============================
   HEADER
   =============================== */

header {
  position: sticky;
  top: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 18px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

header h1 {
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--accent);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
}

/* ===============================
   NAVIGATION
   =============================== */

nav a {
  color: var(--muted);
  margin-left: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.25s ease;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: -6px;
  background: var(--accent);
  transition: 0.25s ease;
}

nav a:hover {
  color: var(--text);
}

nav a:hover::after {
  width: 100%;
}

/* ===============================
   HERO SECTION
   =============================== */

.hero {
  padding: 120px 20px;
  display: flex;
  justify-content: center;
}

.hero-card {
  background: linear-gradient(135deg,#140000,#050000);
  border-radius: 24px;
  padding: 64px;
  border: 1px solid var(--border);
  max-width: 900px;
  text-align: center;
  transition: 0.4s ease;
}

.hero-card:hover {
  box-shadow: 0 0 60px var(--accent-soft);
  transform: translateY(-5px);
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  color: var(--muted);
  font-size: 1.1rem;
}

/* ===============================
   CARDS / SECTIONS
   =============================== */

.section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: auto;
}

.card {
  background: var(--card);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid var(--border);
  transition: 0.3s ease;
}

.card:hover {
  border-color: var(--accent);
  box-shadow: 0 0 40px var(--accent-soft);
  transform: translateY(-4px);
}

/* ===============================
   BUTTONS
   =============================== */

.button {
  display: inline-block;
  padding: 12px 28px;
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.button:hover {
  background: #ff1c1c;
  box-shadow: 0 0 20px var(--accent-soft);
}

/* ===============================
   FOOTER
   =============================== */

footer {
  padding: 40px 20px;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--muted);
}

/* ===============================
   RESPONSIVE
   =============================== */

@media(max-width: 768px) {
  header {
    flex-direction: column;
    gap: 15px;
  }

  nav a {
    margin: 0 15px;
  }

  .hero-card {
    padding: 40px 20px;
  }

  .hero h2 {
    font-size: 2rem;
  }
}
