/* ========== GLOBAL STYLES ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #000;
  color: white;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

/* ========== NAVBAR ========== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 5%;
  background-color: #000;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo img {
  height: 45px;
}

.menu {
  list-style: none;
  display: flex;
  gap: 30px;
}

.menu li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.menu li a:hover {
  color: #ff1500;
}

/* ========== HERO SECTION ========== */
.hero-section {
  position: relative;
}

.hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* ========== BUY TICKET BUTTON (Below Hero) ========== */
.ticket-button-wrapper {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.custom-ppv-button {
  background-color: rgb(242, 5, 5);
  color: white;
  padding: 16px 48px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  text-transform: uppercase;
}

.custom-ppv-button:hover {
  background-color: #ee3f00;
}

/* ========== COUNTDOWN ========== */
.countdown-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin: 40px 0;
  flex-wrap: wrap;
  margin-top: 60px;
}

.countdown-box {
  background-color: #fff;
  padding: 20px 10px;
  border-radius: 10px;
  min-width: 100px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.count-label {
  font-weight: bold;
  font-size: 0.8rem;
  color: #000;
  margin-bottom: 5px;
}

.count-number {
  font-size: 2.5rem;
  color: #ff3c00;
  font-weight: bold;
}

.separator {
  font-size: 2.5rem;
  color: #fff;
}

/* ========== FIGHT CARD ========== */
.fight-card {
  position: relative;
  width: 95%;
  max-width: 1440px;
  margin: 60px auto;
  background-color: #000;
  z-index: 1;
}

.fight-card::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: linear-gradient(to right, red, blue);
  z-index: -1;
  filter: blur(30px);
  opacity: 0.7;
  border-radius: 12px;
}

.fight-header {
  height: 15px;
  background: linear-gradient(to right, red 50%, blue 50%);
}

.fight-body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 5%;
  background-color: #000;
  flex-wrap: wrap;
}

.fighter {
  flex: 1 1 100%;
  text-align: center;
  margin-bottom: 20px;
}

/* ========== FIGHTER IMAGES ========== */
.fighter-image,
.fighter-image3,
.fighter-image4,
.fighter-image5,
.fighter-image6,
.fighter-image7,
.fighter-image8 {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.fighter-image3 { max-width: 175px; }
.fighter-image4 { max-width: 150px; }
.fighter-image5 { max-width: 125px; }
.fighter-image6 { max-width: 150px; }
.fighter-image7 { max-width: 100px; }
.fighter-image8 { max-width: 100px; }

.country {
  margin-top: 20px;
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
}

.fight-info {
  text-align: center;
}

.fight-title {
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #ffffff;
  margin-bottom: 40px;
}

.fighter-name-block .names {
  font-size: 30px;
  font-weight: 800;
  margin: 15px 0;
}

.vs {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin: 10px 0;
}

.discipline {
  font-size: 20px;
  font-weight: 700;
  color: #555;
  margin-top: 20px;
}

/* ========== FOOTER ========== */
.footer {
  background-color: #000;
  padding: 40px 20px;
  text-align: center;
  border-top: 1px solid #000;
  color: white;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.social-icon img {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.social-icon img:hover {
  transform: scale(1.2);
}

.footer-credit {
  font-size: 14px;
  color: #ccc;
}

/* ========== RESPONSIVE BREAKPOINTS ========== */
@media (min-width: 768px) {
  .fighter {
    flex: 1 1 28%;
  }

  .fight-info {
    flex: 1 1 40%;
  }
}

@media (max-width: 1024px) {
  .navbar {
    padding: 20px;
  }

  .menu {
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  .logo img {
    height: 20px;
  }

  .menu li a {
    font-size: 10px;
  }

  .countdown-wrapper {
    gap: 10px;
    padding: 0 10px;
    margin-top: 30px;
  }

  .countdown-box {
    padding: 10px 5px;
    min-width: 60px;
  }

  .count-number {
    font-size: 1.2rem;
  }

  .count-label {
    font-size: 0.6rem;
  }

  .separator {
    font-size: 1.5rem;
  }

  .fight-body {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }

  .fighter {
    flex: 1 1 10%;
  }

  .fight-info {
    flex: 1 1 40%;
    font-size: 1rem;
  }

  .fighter-image {
    height: 125px;
    width: auto;
  }

  .fighter-image3 { max-width: 90px; }
  .fighter-image4 { height: 120px; width: auto; }
  .fighter-image5 { height: 120px; width: auto; }
  .fighter-image6 { max-width: 90px; }
  .fighter-image7 { max-width: 60px; }
  .fighter-image8 { max-width: 70px; }

  .fight-title,
  .fighter-name-block .names,
  .vs,
  .discipline {
    font-size: 10px;
  }

  .country {
    font-size: 7px;
  }

  .custom-ppv-button {
    font-size: 0.8rem;
    padding: 0.6rem 1.5rem;
  }

  .footer-credit {
    font-size: 10px;
  }

  .social-icon img {
    width: 12px;
    height: 12px;
  }
}

@media (max-width: 600px) {
  .fighter-image {
    height: 76px;
    width: auto;
  }

  .fighter-image4 {
    height: 80px;
    width: auto;
  }

  .fighter-image5 {
    height: 90px;
    width: auto;
  }
}
