 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Arial', sans-serif;
    }

    body {
      background-color: #111;
      color: #f5f5f5;
      overflow-x: hidden;
      scroll-behavior: smooth;
    }

    html {
      scroll-behavior: smooth;
    }

    .navbar {
      position: fixed;
      top: 0;
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 50px;
      background-color: rgba(0, 0, 0, 0.8);
      z-index: 1000;
      transition: transform 0.3s ease-in-out;
    }
    .navbar li a{
        font-weight: bold;
        font-size: 15px;
    }

    .logo {
      height: 40px;
    }

    .nav-links {
      display: flex;
      list-style: none;
      align-items: center;
    }

    .nav-links li {
      margin-left: 30px;
    }

    .nav-links a {
      color: #ddd;
      text-decoration: none;
      font-size: 16px;
      font-weight: 500;
      position: relative;
      padding-bottom: 5px;
      transition: 0.3s;
    }

    .nav-links a:hover {
      color: #fff;
    }

    .nav-links a.active {
      color: #fff;
    }

    .nav-links a.active::after {
      content: '';
      position: absolute;
      width: 100%;
      height: 2px;
      background-color: #fff;
      bottom: 0;
      left: 0;
    }

    .login-btn {
      background-color: #bb0000;
      color: #fff;
      padding: 8px 15px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: 600;
      text-transform: uppercase;
      font-size: 14px;
      letter-spacing: 1px;
      transition: 0.3s;
      border: none;
      cursor: pointer;
    }

    .login-btn:hover {
      background-color: #990000;
      transform: translateY(-3px);
    }

    .hamburger {
      display: none;
      cursor: pointer;
    }

    .hamburger .bar {
      display: block;
      width: 25px;
      height: 3px;
      margin: 5px 0;
      background-color: #fff;
      transition: 0.3s;
    }

    .hero {
      position: relative;
      height: 100vh;
      width: 100%;
      overflow: hidden;
    }

    .hero video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(50%);
    }

    .hero-content {
      position: relative;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: #fff;
      padding: 0 20px;
      z-index: 1;
    }

    .hero-content h1 {
      font-size: 52px;
      font-weight: 800;
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 3px;
    }

    .hero-content p {
      font-size: 20px;
      margin-bottom: 30px;
      max-width: 700px;
    }

    .btn {
      display: inline-block;
      background-color: #bb0000;
      color: #fff;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      transition: 0.3s;
      border: none;
    }

    .btn:hover {
      background-color: #990000;
      transform: translateY(-3px);
    }

    .section {
      padding: 100px 50px;
    }

    .section-title {
      text-align: center;
      margin-bottom: 50px;
      font-size: 36px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
    }


    .fight-card {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
    }

    .fight {
      background-color: #1c1c1c;
      border-radius: 8px;
      overflow: hidden;
      width: 100%;
      max-width: 350px;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
      transition: 0.3s;
    }

    .fight:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    }

    .fight-header {
      background-color: #bb0000;
      color: #fff;
      text-align: center;
      padding: 15px;
    }

    .fight-header h3 {
      font-size: 18px;
      font-weight: 600;
    }

    .fighters {
      display: flex;
      justify-content: space-between;
      padding: 20px;
    }

    .fighter {
      text-align: center;
      width: 45%;
    }

    .fighter img {
      width: 100px;
      height: 100px;
      object-fit: cover;
      border-radius: 50%;
      margin-bottom: 10px;
    }

    .fighter h4 {
      font-size: 16px;
      margin-bottom: 5px;
    }

    .fighter p {
      font-size: 14px;
      color: #aaa;
    }

    .vs {
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      font-weight: 700;
      color: #bb0000;
    }

    .fight-footer {
      background-color: #333;
      padding: 15px;
      text-align: center;
    }

    .fight-footer p {
      margin: 5px 0;
      font-size: 14px;
    }


    .events {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
    }

    .event {
      background-color: #1c1c1c;
      border-radius: 8px;
      overflow: hidden;
      width: 100%;
      max-width: 350px;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
      transition: 0.3s;
    }

    .event:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    }

    .event-image {
      height: 200px;
      width: 100%;
      object-fit: cover;
      max-width: 100%;
    }

    .event-content {
      padding: 20px;
    }

    .event-date {
      font-size: 14px;
      color: #bb0000;
      margin-bottom: 10px;
    }

    .event-title {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .event-location {
      font-size: 14px;
      color: #aaa;
      margin-bottom: 15px;
    }

    .event-description {
      font-size: 14px;
      color: #ddd;
      margin-bottom: 20px;
    }

    .contact-form {
      max-width: 600px;
      margin: 0 auto;
      background-color: #1c1c1c;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    }

    .form-group {
      margin-bottom: 20px;
    }

    .form-group label {
      display: block;
      margin-bottom: 10px;
      font-weight: 500;
    }

    .form-control {
      width: 100%;
      padding: 12px 15px;
      border: none;
      border-radius: 5px;
      background-color: #333;
      color: #fff;
      font-size: 16px;
    }

    .form-control:focus {
      outline: none;
      box-shadow: 0 0 0 2px #bb0000;
    }

    select.form-control {
      appearance: none;
      background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
      background-repeat: no-repeat;
      background-position: right 15px center;
      background-size: 15px;
    }

    textarea.form-control {
      resize: vertical;
      min-height: 150px;
    }


    .modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.7);
      justify-content: center;
      align-items: center;
      z-index: 2000;
    }

    .modal-content {
      background-color: #222;
      border-radius: 8px;
      padding: 30px;
      width: 90%;
      max-width: 400px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
      position: relative;
    }

.close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 30px;
  color: #777;
  cursor: pointer;
  transition: 0.3s;
}

.close-modal:hover {
  color: #fff;
  transform: rotate(180deg);
}

    .modal-title {
      font-size: 24px;
      font-weight: 600;
      margin-bottom: 20px;
      text-align: center;
      color: #fff;
    }

    .login-link{
      display: block;
      text-align: center;
      margin-top: 15px;
      color: #777;
      text-decoration: none;
      font-size: 14px;
      transition: 0.3s;
    }

    .login-link:hover {
      color: #bb0000;
    }

    .register-link {
      display: block;
      text-align: center;
      margin-top: 15px;
      color: #777;
      text-decoration: none;
      font-size: 14px;
      transition: 0.3s;
    }

    .register-link:hover {
      color: #bb0000;
    }

    .footer {
      background-color: #0a0a0a;
      text-align: center;
      padding: 30px 20px;
    }

    .footer p {
      color: #777;
      font-size: 14px;
    }

    .social-links {
      margin-top: 20px;
    }

    .social-links a {
      color: #777;
      font-size: 20px;
      margin: 0 10px;
      transition: 0.3s;
    }

    .social-links a:hover {
      color: #fff;
    }

    .description-card{
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      width: 100%;
      max-width: 600px;
      margin: 0 auto;
    }

    .description{
        text-align: center;
        padding: 20px;
    }

    .description h2
    {
        font-size: 20px;
        font-weight: normal;
    }

.container {
    display: flex;
    justify-content: center;
}


    @media (max-width: 768px) {
      .navbar {
        padding: 15px 20px;
      }

      .logo {
        height: 30px;
      }

      .nav-links {
        position: fixed;
        right: -100%;
        top: 60px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.9);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 20px 0;
      }

      .nav-links.active {
        right: 0;
      }

      .nav-links li {
        margin: 15px 0;
      }

      .hamburger {
        display: block;
      }

      .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
      }

      .hamburger.active .bar:nth-child(2) {
        opacity: 0;
      }

      .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
      }

      .section {
        padding: 60px 15px;
      }

      .hero-content h1 {
        font-size: 28px;
        letter-spacing: 2px;
      }

      .hero-content p {
        font-size: 16px;
      }

      .section-title {
        font-size: 24px;
        margin-bottom: 30px;
      }
      
      .description-card {
        max-width: 100%;
      }
      
      .fight {
        max-width: 100%;
      }
      
      .event {
        max-width: 100%;
      }

      .events, .fight-card {
        padding: 0 10px;
      }
      
      .contact-form {
        padding: 20px 15px;
      }
      
      .btn {
        border-radius: 5px;
        padding: 12px 20px;
        font-size: 14px;
      }

      .modal-content {
        padding: 20px 15px;
      }
    }
    
    @media (max-width: 480px) {
      .hero-content h1 {
        font-size: 24px;
      }
      
      .hero-content p {
        font-size: 14px;
      }
      
      .btn {
        border-radius: 5px;
        padding: 10px 15px;
        font-size: 12px;
      }
      
      .section-title {
        font-size: 20px;
      }
    }