
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #000;
  color: #fff;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}




.site-header {
  background: #000;
  border-bottom: 2px solid #ff0000;
  padding: 15px 20px;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand img {
  height: 60px;
  border-radius: 50%;
}

.nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.nav a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  padding: 10px;
}

.actions {
  display: flex;
  gap: 10px;
}

.actions .btn {
  background: #ff0000;
  color: #fff;
  padding: 8px 14px;
  border-radius: 4px;
  text-decoration: none;
}




.hero-card {
  background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(30,30,30,0.8));
  padding: 40px 20px;
  margin: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 0 20px rgba(255,0,0,0.4);
}

.hero-title {
  font-size: 2.4rem;
}

.hero-sub {
  font-size: 1.2rem;
}

.event-slider {
  overflow: hidden;
  width: 100%;
  position: relative;
  margin: 30px auto;
}

.event-track {
  display: flex;
  gap: 20px;
  transition: 0.5s;
}

.event-card {
  background: #1a1a1a;
  border-radius: 10px;
  padding: 15px;
  min-width: 300px;
  max-width: 90%;
  margin: auto;
  box-shadow: 0 0 12px rgba(255,0,0,0.4);
}

.event-card img {
  border-radius: 8px;
  height: 200px;
  object-fit: cover;
}

.event-btn {
  position: absolute;
  top: 45%;
  font-size: 2rem;
  padding: 8px 12px;
  border-radius: 50%;
  background: rgba(255,0,0,0.9);
  border: none;
  color: #fff;
  cursor: pointer;
  z-index: 20;
}

.event-btn.prev { left: 10px; }
.event-btn.next { right: 10px; }


.fighter-grid {
  display: grid;
  gap: 25px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  padding: 20px;
}

.fighter-item {
  background: #1a1a1a;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 0 12px rgba(255,0,0,0.4);
}

.fighter-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}


.video-grid {
  display: grid;
  gap: 25px;
  padding: 20px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.video-card {
  background: #111;
  border-radius: 10px;
  padding: 15px;
}

.video-card iframe {
  width: 100%;
  border-radius: 10px;
  height: 200px;
}


.actus-grid {
  display: grid;
  gap: 25px;
  padding: 20px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.actus-card {
  background: #111;
  border-radius: 10px;
  overflow: hidden;
}



.hof-slider {
  overflow: hidden;
  position: relative;
  margin-top: 40px;
}

.hof-track {
  display: flex;
  gap: 25px;
  transition: 0.5s ease;
}

.hof-card {
  min-width: 280px;
  background: #111;
  border: 2px solid #ff0000;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
}

.section-alaune .top-grid {
  display: grid;
  gap: 30px;
  padding: 20px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}


.ticker-wrap {
  width: 100%;
  overflow: hidden;
  background: #111;
  border-top: 3px solid #e30613;
  border-bottom: 3px solid #e30613;
  padding: 12px 0;
}

.ticker-move {
  display: inline-block;
  white-space: nowrap;
  animation: tickerScroll 25s linear infinite;
}

.ticker-item {
  display: inline-block;
  margin: 0 50px;
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
}

@keyframes tickerScroll {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}


@media (max-width: 900px) {
  .hero-title { font-size: 2rem; }
  .nav { gap: 10px; }
}

@media (max-width: 600px) {
  .brand img { height: 50px; }

  .nav {
    flex-direction: column;
    align-items: center;
  }

  .hero-card {
    padding: 25px 15px;
  }

  .hero-title { font-size: 1.8rem; }

  .event-card {
    min-width: 90%;
  }

  .event-btn { display: none; } 
}
.fighter-img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  background: #000;
}
