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

body, html {
  font-family: 'Arial', sans-serif;
  color: #fff;
  background: #111;
}

/* Navigation */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background: rgba(0,0,0,0.7);
  position: fixed;
  width: 100%;
  z-index: 1000;
}

nav .logo {
  font-size: 28px;
  font-weight: bold;
  color: #FF4500;
}

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

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

nav ul li a:hover {
  color: #00BFFF;
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(60%);
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.hero-text h1 {
  font-size: 70px;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 24px;
  margin-bottom: 30px;
}

.btn {
  padding: 15px 30px;
  background: #FF4500;
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
}

.btn:hover {
  background: #00BFFF;
}

/* Sports Section */
.sports {
  padding: 100px 50px;
  text-align: center;
}

.sports h2 {
  font-size: 36px;
  margin-bottom: 50px;
}

.sports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
}

.sports-grid div {
  background: rgba(255,69,0,0.3);
  padding: 30px 10px;
  border-radius: 10px;
  font-weight: bold;
  transition: 0.3s;
}

.sports-grid div:hover {
  background: rgba(0,191,255,0.3);
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: #000;
}

/* Responsive */
@media(max-width:768px){
  .hero-text h1{
    font-size: 48px;
  }
  .hero-text p{
    font-size: 18px;
  }
}