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

body {
  font-family:
    'Montserrat',
    'Segoe UI',
    system-ui,
    -apple-system,
    sans-serif;
  background: #0a0a0a;
  color: #fff;
  line-height: 1.6;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  background:
    linear-gradient(135deg, rgba(10, 10, 10, 0.7), rgba(0, 0, 0, 0.8)),
    url('../data/images/backgorund.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(230, 126, 34, 0.3),
    rgba(211, 84, 0, 0.3)
  );
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.15;
  animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 100px 100px;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  padding: 0 20px;
}

.logo-hero {
  width: 200px;
  height: 200px;
  margin: 0 auto 30px;
  background: white;
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

.hero h1 {
  font-size: 5em;
  font-weight: 900;
  letter-spacing: -2px;
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease;
}

.hero p {
  font-size: 1.5em;
  opacity: 0.95;
  margin-bottom: 40px;
  animation: fadeInUp 1s ease 0.2s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  z-index: 2;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  40% {
    transform: translateX(-50%) translateY(-10px);
  }

  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  z-index: 1000;
  border-bottom: 1px solid rgba(230, 126, 34, 0.2);
  transition: all 0.3s;
}

nav.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

nav .nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
}

.nav-logo {
  font-size: 1.5em;
  font-weight: 900;
  color: #e67e22;
  letter-spacing: -1px;
  text-decoration: none;
  transition: all 0.3s;
}

.nav-logo:hover {
  opacity: 0.8;
  transform: scale(1.02);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 40px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95em;
  transition: all 0.3s;
  padding: 8px 16px;
  border-radius: 8px;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #e67e22;
  transition: all 0.3s;
  transform: translateX(-50%);
}

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

nav a:hover {
  color: #e67e22;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.hamburger span {
  width: 30px;
  height: 3px;
  background: #e67e22;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(9px, 9px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-header h2 {
  font-size: 3.5em;
  font-weight: 900;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #e67e22, #d35400);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -2px;
}

.section-header p {
  font-size: 1.2em;
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin: 0 auto;
}

/* Live Stream Section */
.live-section {
  background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
  position: relative;
  overflow: hidden;
}

/* Roster Section */
.roster-section {
  background: #0a0a0a;
}

/* Sponsors Section */
.sponsors-section {
  background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
  position: relative;
  overflow: hidden;
}

.sponsors-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(230,126,34,0.03)" stroke-width="1"/></svg>');
  background-size: 200px;
  opacity: 0.5;
}

.sponsor-tier {
  text-align: center;
  position: relative;
  z-index: 2;
}

.sponsor-tier h3 {
  color: #e67e22;
  font-size: 1.8em;
  margin-bottom: 30px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Contact Section */
.contact-section {
  background: #0a0a0a;
  padding-bottom: 0px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-grid-full {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1000px;
  margin: 40px auto 0;
}

/* Video Container */
.video-container {
  position: relative;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding-bottom: 56.25%;
  /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Footer */
footer {
  background: #000;
  padding: 60px 40px;
  text-align: center;
  border-top: 1px solid rgba(230, 126, 34, 0.2);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-logo {
  font-size: 2em;
  font-weight: 900;
  color: #e67e22;
  margin-bottom: 20px;
}

footer p {
  color: rgba(255, 255, 255, 0.6);
  margin: 10px 0;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 3em;
  }

  .hero p {
    font-size: 1.2em;
  }

  .logo-hero {
    width: 150px;
    height: 150px;
  }

  /* Mobile Navigation */
  .hamburger {
    display: flex;
  }

  nav ul {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    gap: 0;
    padding: 20px 0;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    border-bottom: 2px solid #e67e22;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  }

  nav ul.active {
    transform: translateX(0);
  }

  nav ul li {
    width: 100%;
    text-align: center;
    padding: 0;
  }

  nav a {
    display: block;
    padding: 15px 20px;
    font-size: 1.1em;
    width: 100%;
  }

  nav a::after {
    display: none;
  }

  nav a:hover {
    background: rgba(230, 126, 34, 0.1);
  }

  .section-header h2 {
    font-size: 2.5em;
  }

  .container {
    padding: 0 20px;
  }

  .nav-container {
    padding: 15px 20px;
  }

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

  .contact-grid-full {
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.2em;
  }

  .hero p {
    font-size: 1em;
  }

  .logo-hero {
    width: 120px;
    height: 120px;
  }

  .section-header h2 {
    font-size: 2em;
  }

  .nav-logo {
    font-size: 1.2em;
  }
}
