/* =====================
   JETS THEME VARIABLES
===================== */
:root {
  --bg-main: #000000;
  --bg-secondary: #111111;
  --card-bg: rgba(255,255,255,0.05);
  --border: rgba(255,255,255,0.1);

  --text-main: #ffffff;
  --text-secondary: #aaaaaa;

  --accent: #FFD700;
  --accent-hover: #ffcc00;
}

/* =====================
   GLOBAL
===================== */
body {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  background: linear-gradient(180deg, #0a0a0a, #000);
  color: var(--text-main);
  text-align: center;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  top: 50%;
  left: 50%;
  width: 700px;
  height: 700px;
  background: url("images/logo.png") no-repeat center;
  background-size: contain;
  transform: translate(-50%, -50%);
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}

.hero, .section, .socials, .container, .card, .header, .roster-container, .legal {
  position: relative;
  z-index: 1;
}

/* =====================
   HERO (UPDATED)
===================== */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 1;
  animation: heroZoom 20s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), #000);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
}

.hero h1 {
  font-size: 56px;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.hero p {
  color: var(--text-secondary);
  font-size: 16px;
}

/* ANIMATION */
@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

/* =====================
   BUTTONS
===================== */
.btn {
  margin-top: 20px;
  padding: 14px 28px;
  background: var(--accent);
  color: black;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  display: inline-block;
  transition: 0.3s;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.btn:hover {
  background: var(--accent-hover);
  transform: scale(1.05);
}

/* =====================
   SECTIONS
===================== */
.section {
  padding: 60px 20px;
}

.section h2 {
  letter-spacing: 2px;
}

/* =====================
   HEADER
===================== */
.header {
  padding: 20px;
  border-bottom: 2px solid var(--accent);
}

/* =====================
   SOCIAL LINKS
===================== */
.socials {
  padding: 30px;
}

.socials a {
  margin: 0 10px;
  color: var(--text-main);
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.socials a:hover {
  color: var(--accent);
}

/* =====================
   LEGAL LINKS
===================== */
.legal {
  margin-top: 10px;
  padding-bottom: 30px;
}

.legal a {
  margin: 0 10px;
  font-size: 12px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: 0.3s;
}

.legal a:hover {
  color: var(--accent);
}

/* =====================
   MOBILE
===================== */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
  }

  body::before {
    width: 400px;
    height: 400px;
  }
}

/* SOCIAL ICONS */
.social-icons {
  margin-top: 15px;
}

.social-icons a {
  margin: 0 10px;
  font-size: 20px;
  color: white;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #FFD700;
  transform: scale(1.2);
}