:root {
  --primary: #ff005c;
  --secondary: #8700ff;
  --bg-dark: #0f0f0f;
  --bg-light: #1f1f1f;
  --text: #f5f5f5;
  --card-bg: #222;
}

body {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
  color: var(--text-light);
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 2rem;
}

header {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  padding: 20px;
  position: sticky;
  top: 0;
  z-index: 999;
}

header h1 {
  margin: 0;
  font-size: 1.8em;
}

nav {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover,
nav a.active {
  text-decoration: underline;
}

#hero {
  text-align: center;
  padding: 60px 20px;
  background: var(--bg-light);
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: var(--primary);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  user-select: none;
}

.btn-fragpunk {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border: none;
  padding: 12px 24px;
  color: white;
  border-radius: 40px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 0 12px var(--accent);
  transition: background 0.3s ease;
}

.btn-fragpunk:hover {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  cursor: pointer;
}

.btn:hover {
  background: #e6004f;
}

.ripple {
  position: absolute;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: scale(0);
  animation: ripple 0.6s linear;
  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

section {
  padding: 40px 20px;
  max-width: 900px;
  margin: auto;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

section.visible {
  opacity: 1;
  transform: translateY(0);
}

iframe {
  display: block;
  margin: 0 auto;
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #111;
  font-size: 0.8em;
}

.burger {
  display: none;
  cursor: pointer;
  font-size: 24px;
  color: white;
}

@media (max-width: 600px) {
  nav {
    display: none;
    flex-direction: column;
    align-items: center;
    background: #111;
    padding: 10px 0;
  }
  nav.active {
    display: flex;
  }
  .burger {
    display: block;
    text-align: right;
  }
}

/* STAFF LIST */

.staff-list-centered {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
}

.staff-card-centered {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  border: 3px solid var(--primary);
  box-shadow: 0 0 15px rgba(255, 0, 92, 0.6), 0 0 8px rgba(255, 0, 92, 0.4);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.staff-card-centered:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(255, 0, 92, 0.3);
}

.staff-avatar-centered {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 3px solid var(--primary);
  margin-bottom: 12px;
}

.staff-card-centered h3 {
  margin: 0;
  font-size: 1.2rem;
}

.staff-card-centered .roles {
  font-size: 0.9rem;
  color: #ccc;
  margin: 5px 0 10px;
}

.social-links {
  margin-top: 8px;
}

.social-links a {
  margin: 0 8px;
  color: #ccc;
  font-size: 1.3rem;
  transition: color 0.3s ease;
}

.social-links a.discord:hover {
  color: #5865F2;
}

.social-links a.twitter:hover {
  color: #1DA1F2;
}

.social-links a.instagram:hover {
  color: #E1306C;
}