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

:root {
  --bg-color: #0f0a1a;
  --accent-color: #7c3aed;
  --accent-glow: rgba(124, 58, 237, 0.3);
  --text-primary: #e2e8f0;
  --text-secondary: #94a3b8;
  --card-bg: rgba(30, 27, 46, 0.7);
  --border-color: rgba(124, 58, 237, 0.2);
  --nav-height: 70px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-color);
  color: var(--text-primary);
  font-family: "Rajdhani", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* Background Pattern */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
    circle at 2px 2px,
    rgba(124, 58, 237, 0.05) 1px,
    transparent 0
  );
  background-size: 40px 40px;
  z-index: -1;
}

/* Navigation */
nav {
  height: var(--nav-height);
  background: rgba(15, 10, 26, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
}

.logo {
  font-family: "Orbitron", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a:hover {
  color: var(--accent-color);
  text-shadow: 0 0 10px var(--accent-glow);
}

.burger {
  display: none;
  cursor: pointer;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: var(--text-primary);
  margin: 5px;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 10%;
  background:
    linear-gradient(to bottom, rgba(15, 10, 26, 0.5), var(--bg-color)),
    url("./img/hero-bg.png") center/cover no-repeat;
  position: relative;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  background: linear-gradient(to right, #fff, var(--accent-color));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInDown 1s ease-out;
}

.hero-content {
  max-width: 900px;
  background: var(--card-bg);
  padding: 40px;
  border-radius: 15px;
  border: 1px solid var(--border-color);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease-out;
}

/* Sections */
section {
  padding: 100px 10%;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
  font-size: 2.5rem;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--accent-color);
  box-shadow: 0 0 15px var(--accent-glow);
}

/* Meta Analysis Grid */
.meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.meta-card {
  background: var(--card-bg);
  padding: 30px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease;
}

.meta-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-color);
}

.meta-card h3 {
  color: var(--accent-color);
  margin-bottom: 15px;
}

.meta-stats {
  margin-top: 15px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Team Compositions */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
}

.team-card {
  background: linear-gradient(
    145deg,
    rgba(30, 27, 46, 0.9),
    rgba(15, 10, 26, 0.9)
  );
  padding: 40px;
  border-radius: 20px;
  border-left: 5px solid var(--accent-color);
}

.team-roles {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

.role-tag {
  background: rgba(124, 58, 237, 0.1);
  color: var(--accent-color);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  border: 1px solid var(--border-color);
}

/* Counter Strategies */
.counter-list {
  max-width: 1000px;
  margin: 0 auto;
}

.counter-item {
  background: var(--card-bg);
  margin-bottom: 20px;
  padding: 30px;
  border-radius: 10px;
  display: flex;
  gap: 30px;
  align-items: center;
}

.counter-icon {
  font-size: 2.5rem;
  color: var(--accent-color);
}

/* Pro Tips */
.tips-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.tip-card {
  background: rgba(124, 58, 237, 0.05);
  padding: 25px;
  border-radius: 5px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.tip-card:hover {
  background: rgba(124, 58, 237, 0.1);
  border-color: var(--accent-color);
}

.tip-number {
  font-family: "Orbitron", sans-serif;
  color: var(--accent-color);
  font-size: 1.2rem;
  margin-bottom: 10px;
  display: block;
}

/* Footer */
footer {
  background: #080510;
  padding: 60px 10% 20px;
  border-top: 1px solid var(--border-color);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .burger {
    display: block;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .counter-item {
    flex-direction: column;
    text-align: center;
  }
}

/* Utility */
.accent {
  color: var(--accent-color);
}
.mt-20 {
  margin-top: 20px;
}
