* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;
  min-height: 100vh;
}

body {
  font-family: Arial, sans-serif;
  color: #fff;
  background: #000;
  position: relative;
  overflow-x: hidden;
}

/* Floating Particles */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      2px 2px at 20px 30px,
      rgba(138, 43, 226, 0.3),
      transparent
    ),
    radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.2), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(138, 43, 226, 0.4), transparent),
    radial-gradient(
      1px 1px at 130px 80px,
      rgba(255, 255, 255, 0.3),
      transparent
    ),
    radial-gradient(2px 2px at 160px 30px, rgba(138, 43, 226, 0.2), transparent);
  background-repeat: repeat;
  background-size: 200px 100px;
  animation: floatingParticles 20s linear infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes floatingParticles {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
  }
}

/* Subtle Glow Effect */
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(138, 43, 226, 0.02) 0%,
    transparent 70%
  );
  animation: subtleGlow 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}

@keyframes subtleGlow {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

/* Prevent any extra white space */
section {
  margin: 0;
  padding: 0;
}

section:last-child {
  margin-bottom: 0;
}

footer {
  margin: 0;
}

/* Navbar */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  border-bottom: 2px solid #8a2be2;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #8a2be2;
  letter-spacing: 2px;
}

.logo img {
  height: 60px;
  width: auto;
  filter: brightness(1.2);
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.1);
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  padding: 10px 0;
  transition: all 0.3s ease;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links a:hover {
  color: #8a2be2;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #8a2be2;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: heroImageLoad 2s ease-out;
}

.hero::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30vw;
  height: 30vw;
  background: url("../Images/Logo.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  filter: drop-shadow(0 0 20px rgba(138, 43, 226, 0.8))
    drop-shadow(0 0 40px rgba(138, 43, 226, 0.4));
  animation: heroLogoGlow 3s ease-in-out infinite;
  z-index: 1;
}

@keyframes heroLogoGlow {
  0%,
  100% {
    filter: drop-shadow(0 0 20px rgba(138, 43, 226, 0.8))
      drop-shadow(0 0 40px rgba(138, 43, 226, 0.4));
    opacity: 0.8;
  }
  50% {
    filter: drop-shadow(0 0 30px rgba(138, 43, 226, 1))
      drop-shadow(0 0 60px rgba(138, 43, 226, 0.8));
    opacity: 1;
  }
}

@keyframes heroImageLoad {
  0% {
    opacity: 0;
    transform: scale(1.02);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.hero h1 {
  display: none !important;
  visibility: hidden;
  opacity: 0;
}

@keyframes glow {
  0%,
  100% {
    text-shadow: 0 0 20px rgba(138, 43, 226, 0.8),
      0 0 40px rgba(138, 43, 226, 0.5);
  }
  50% {
    text-shadow: 0 0 30px rgba(138, 43, 226, 1),
      0 0 60px rgba(138, 43, 226, 0.8);
  }
}

.hero h2 {
  display: none !important;
  visibility: hidden;
  opacity: 0;
}

.hero-apply-btn {
  position: absolute;
  top: 70%;
  left: 49%;
  transform: translateX(-50%);
  z-index: 10;
  display: inline-block;
  padding: 12px 35px;
  background: #000;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  border: 2px solid #8a2be2;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 10px 30px rgba(138, 43, 226, 0.3);
}

.hero-apply-btn:hover {
  background: #000;
  border-color: #9370db;
}

/* Recent Fights Section */
.features {
  padding: 100px 50px;
  position: relative;
  background: #000;
  overflow: hidden;
}

.features h2 {
  text-align: center;
  font-size: 48px;
  color: #8a2be2;
  margin-bottom: 60px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

/* Scroll Animations */
.animate-element {
  opacity: 0;
  transform: translateY(100px) rotate(5deg);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-element.animate-in {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
}

.feature-card.animate-element {
  transform: translateY(150px) rotate(-10deg) scale(0.8);
}

.feature-card.animate-in {
  transform: translateY(0) rotate(0deg) scale(1);
  transition: all 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.event-card.animate-element {
  transform: translateX(-100px) translateY(80px) rotate(3deg);
}

.event-card.animate-in {
  transform: translateX(0) translateY(0) rotate(0deg);
  transition: all 0.9s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.story-card.animate-element {
  transform: translateY(120px) rotate(-5deg) scale(0.9);
}

.story-card.animate-in {
  transform: translateY(0) rotate(0deg) scale(1);
  transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.partner-logo.animate-element {
  transform: translateY(60px) rotate(10deg);
}

.partner-logo.animate-in {
  transform: translateY(0) rotate(0deg);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sponsor-cta.animate-element {
  transform: translateY(100px) scale(0.95);
}

.sponsor-cta.animate-in {
  transform: translateY(0) scale(1);
  transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  width: 100%;
  position: relative;
  z-index: 1;
}

.feature-card {
  background: #000;
  padding: 0;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(138, 43, 226, 0.2);
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
}

.feature-card:last-child {
  border-right: none;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(138, 43, 226, 0.6);
  box-shadow: 0 15px 40px rgba(138, 43, 226, 0.4);
}

.feature-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
  border-radius: 15px 15px 0 0;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(138, 43, 226, 0.8);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(138, 43, 226, 0.6);
}

.feature-card:hover .feature-image img {
  transform: scale(1.1);
}

.feature-card:hover .play-overlay {
  transform: translate(-50%, -50%) scale(1.2);
  background: #8a2be2;
  box-shadow: 0 0 30px rgba(138, 43, 226, 0.8);
}

.feature-card h3 {
  font-size: 24px;
  color: #8a2be2;
  margin: 20px 20px 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.feature-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #ccc;
  margin: 0 20px 20px;
}

/* Event Section */
.event-section {
  padding: 100px 50px;
  background: #000;
  position: relative;
  overflow: hidden;
}

.event-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at center,
    rgba(138, 43, 226, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 1;
}

.event-section h2 {
  text-align: center;
  font-size: 48px;
  color: #8a2be2;
  margin-bottom: 60px;
  text-transform: uppercase;
  letter-spacing: 3px;
  position: relative;
  z-index: 2;
}

.event-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}

.event-card {
  background: rgba(10, 10, 10, 0.8);
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(138, 43, 226, 0.2);
  transition: all 0.4s ease;
  position: relative;
}

.event-card:hover {
  transform: translateY(-10px);
  border-color: rgba(138, 43, 226, 0.5);
  box-shadow: 0 20px 40px rgba(138, 43, 226, 0.3);
}

.event-image {
  width: 100%;
  height: 350px;
  overflow: hidden;
  position: relative;
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.event-card:hover .event-image img {
  transform: scale(1.1);
}

.event-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
}

.event-date {
  background: rgba(138, 43, 226, 0.95);
  color: #fff;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 1px;
  backdrop-filter: blur(10px);
}

.event-details {
  padding: 30px;
}

.event-details h3 {
  font-size: 22px;
  color: #8a2be2;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.event-details p {
  font-size: 15px;
  line-height: 1.7;
  color: #ccc;
}

/* Partners Section */
.partners {
  padding: 100px 50px;
  background: #000;
  position: relative;
  overflow: hidden;
}

.partners h2 {
  text-align: center;
  font-size: 48px;
  color: #8a2be2;
  margin-bottom: 60px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.partner-logo {
  background: #000;
  padding: 40px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  cursor: pointer;
  border: 1px solid rgba(138, 43, 226, 0.3);
  height: 150px;
}

.partner-logo:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(138, 43, 226, 0.3);
  border-color: rgba(138, 43, 226, 0.5);
}

.partner-logo span {
  font-size: 20px;
  color: #888;
  font-weight: bold;
}

.partner-logo img {
  max-width: 100%;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.8) contrast(1.1);
  transition: all 0.3s;
}

.partner-logo:hover img {
  filter: grayscale(0%) brightness(1) contrast(1.2);
  transform: scale(1.05);
}

/* Our Story Section - Timeline */
.story {
  padding: 100px 50px;
  background: #000;
}

.story h2 {
  text-align: center;
  font-size: 48px;
  color: #8a2be2;
  margin-bottom: 80px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.timeline {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.timeline-item {
  margin-bottom: 80px;
  position: relative;
}

.timeline-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.timeline-image {
  width: 100%;
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(138, 43, 226, 0.25);
  transition: all 0.3s ease;
}

.timeline-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.timeline-item:hover .timeline-image {
  border-color: rgba(138, 43, 226, 0.5);
  box-shadow: 0 10px 30px rgba(138, 43, 226, 0.3);
}

.timeline-item:hover .timeline-image img {
  transform: scale(1.05);
}

.timeline-badge {
  display: inline-block;
  background: #8a2be2;
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.timeline-info h3 {
  font-size: 36px;
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.timeline-info p {
  font-size: 18px;
  line-height: 1.8;
  color: #ccc;
}

@media (max-width: 768px) {
  .timeline-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .timeline-image {
    height: 300px;
    order: 1;
  }

  .timeline-info {
    order: 2;
  }

  .timeline-info h3 {
    font-size: 28px;
  }

  .timeline-info p {
    font-size: 16px;
  }
}

.book-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.book {
  display: flex;
  gap: 60px;
  width: fit-content;
  transition: transform 0.5s ease;
}

.page {
  min-width: 1400px;
  background: #000;
  border-radius: 20px;
  padding: 50px;
  border: 2px solid rgba(138, 43, 226, 0.5);
  box-shadow: 0 10px 40px rgba(138, 43, 226, 0.3);
  transition: all 0.3s ease;
}

.page:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(138, 43, 226, 0.5);
  border-color: rgba(138, 43, 226, 0.8);
}

.page-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.story-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.story-images img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid rgba(138, 43, 226, 0.4);
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(138, 43, 226, 0.3);
}

.story-images img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(138, 43, 226, 0.7);
  border-color: rgba(138, 43, 226, 0.8);
}

.story-text h3 {
  font-size: 32px;
  color: #8a2be2;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.story-text p {
  font-size: 18px;
  line-height: 1.8;
  color: #ddd;
}

/* iPad Pro 12.9" (1024px) */
@media (max-width: 1024px) {
  .page {
    min-width: 900px;
    padding: 40px;
  }

  .story-images img {
    height: 200px;
  }
}

/* iPad Air & iPad Mini (820px - 768px) */
@media (max-width: 820px) {
  .page {
    min-width: 700px;
    padding: 30px;
  }

  .page-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .story-images {
    grid-template-columns: 1fr 1fr;
  }

  .story-images img {
    height: 180px;
  }

  .story-text h3 {
    font-size: 28px;
  }

  .story-text p {
    font-size: 16px;
  }
}

/* Mobile (below 768px) */
@media (max-width: 767px) {
  .page {
    min-width: calc(100vw - 40px);
    padding: 20px;
  }

  .page-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .story-images {
    grid-template-columns: 1fr;
  }

  .story-images img {
    height: 200px;
  }

  .story-text h3 {
    font-size: 24px;
  }

  .story-text p {
    font-size: 16px;
  }

  .book-controls {
    gap: 20px;
  }

  .prev-page,
  .next-page {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}

.book-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

.navigation-belt {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}

.prev-page,
.next-page {
  background: #000;
  border: 2px solid rgba(138, 43, 226, 0.4);
  color: #fff;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  font-size: 28px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.prev-page:hover,
.next-page:hover {
  transform: scale(1.1);
  background: #000;
  border-color: #8a2be2;
  box-shadow: 0 8px 25px rgba(138, 43, 226, 0.4);
}

.prev-page:active,
.next-page:active {
  transform: scale(1.05);
}

.page-indicator {
  background: #000;
  border: 2px solid rgba(138, 43, 226, 0.4);
  padding: 15px 40px;
  border-radius: 50px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.page-indicator #current-page {
  color: #8a2be2;
  font-size: 24px;
}

.progress-dots {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.progress-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #000;
  border: 2px solid rgba(138, 43, 226, 0.3);
  transition: all 0.4s ease;
  cursor: pointer;
}

.progress-dot.active {
  background: #8a2be2;
  border-color: #8a2be2;
  box-shadow: 0 0 15px rgba(138, 43, 226, 0.5);
  transform: scale(1.3);
}

.progress-dot:hover {
  border-color: rgba(138, 43, 226, 0.6);
  transform: scale(1.2);
}

/* Sponsor CTA Section */
.sponsor-cta {
  padding: 100px 50px;
  background: #000;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Championship Belt Shine */
.sponsor-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 215, 0, 0.3) 50%,
    transparent 100%
  );
  animation: beltShine 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes beltShine {
  0% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: -100%;
  }
}

.sponsor-cta h2 {
  font-size: 48px;
  color: #8a2be2;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.sponsor-cta p {
  font-size: 20px;
  color: #ccc;
  margin-bottom: 40px;
}

.sponsor-btn {
  display: inline-block;
  padding: 20px 60px;
  background: #000;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  border: 2px solid #8a2be2;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 5px 20px rgba(138, 43, 226, 0.3);
}

.sponsor-btn:hover {
  background: #8a2be2;
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(138, 43, 226, 0.7);
  border-color: #8a2be2;
}

/* Footer */
footer {
  background: #000;
  border-top: 1px solid rgba(138, 43, 226, 0.3);
  margin: 0;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(138, 43, 226, 0.6),
    transparent
  );
  animation: footerGlow 3s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes footerGlow {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

.footer-content {
  text-align: center;
  padding: 50px 50px 30px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.footer-nav a {
  color: #ddd;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  padding: 10px 20px;
  border: 2px solid transparent;
  border-radius: 30px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-nav a:hover {
  color: #8a2be2;
  border-color: #8a2be2;
  background: rgba(138, 43, 226, 0.1);
  transform: translateY(-2px);
}

.footer-copyright {
  color: #888;
  font-size: 14px;
  margin-top: 40px;
  font-weight: 400;
  white-space: nowrap;
}

.footer-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(138, 43, 226, 0.1),
    transparent
  );
  transition: left 0.6s;
}

.footer-section:hover::before {
  left: 100%;
}

.footer-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(138, 43, 226, 0.2);
  border-color: rgba(138, 43, 226, 0.4);
}

.footer-section h3 {
  color: #8a2be2;
  font-size: 22px;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(138, 43, 226, 0.3);
  position: relative;
}

.footer-section h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #8a2be2, #9370db);
  border-radius: 2px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 20px;
}

.footer-section ul li::before {
  content: "▶";
  position: absolute;
  left: 0;
  color: #8a2be2;
  font-size: 10px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s;
}

.footer-section ul li:hover::before {
  transform: translateY(-50%) translateX(3px);
}

.footer-section ul li a {
  color: #ddd;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  font-weight: 500;
  position: relative;
}

.footer-section ul li a:hover {
  color: #8a2be2;
  padding-left: 5px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin: 20px 0;
}

.social-links a {
  color: #ccc;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 20px;
  border-radius: 50%;
  background: rgba(138, 43, 226, 0.1);
  border: 1px solid rgba(138, 43, 226, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-links a svg {
  width: 32px;
  height: 32px;
}

.social-links a:hover {
  color: #8a2be2;
  transform: scale(1.2) rotate(5deg);
  background: rgba(138, 43, 226, 0.2);
  border-color: rgba(138, 43, 226, 0.5);
  box-shadow: 0 5px 15px rgba(138, 43, 226, 0.3);
}

.footer-section p {
  color: #ddd;
  line-height: 1.8;
  margin-bottom: 10px;
  font-weight: 400;
}

.footer-section p a {
  color: #ddd;
  text-decoration: none;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
}

.footer-section p a:hover {
  color: #8a2be2;
  border-bottom-color: #8a2be2;
}

.footer-bottom {
  text-align: center;
  padding: 30px 50px;
  border-top: 1px solid rgba(138, 43, 226, 0.3);
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 10;
}

.footer-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #8a2be2, transparent);
  animation: bottomGlow 3s ease-in-out infinite;
}

@keyframes bottomGlow {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}

.footer-bottom p {
  color: #aaa;
  font-size: 16px;
  margin: 0;
  font-weight: 500;
  letter-spacing: 1px;
}

/* Large Tablet/Small Desktop Styles */
@media (max-width: 1200px) and (min-width: 1025px) {
  .hero::before {
    width: 32vw;
    height: 32vw;
  }
  
  .hero-apply-btn {
    font-size: 13px;
    padding: 11px 32px;
  }
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }

  .event-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 600px;
  }
}

/* iPad Pro Landscape (1024x1366) */
@media (max-width: 1366px) and (min-width: 1024px) and (orientation: landscape) {
  nav {
    padding: 20px 40px;
  }

  .hero h1 {
    font-size: 70px;
  }

  .hero h2 {
    font-size: 32px;
  }
  
  .hero::before {
    width: 33vw;
    height: 33vw;
  }
  
  .hero-apply-btn {
    top: 68%;
  }

  .features,
  .event-section,
  .partners,
  .story,
  .sponsor-cta,
  .contact {
    padding: 90px 40px;
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .feature-image {
    height: 280px;
  }

  .feature-card h3 {
    font-size: 26px;
  }

  .event-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .event-image {
    height: 400px;
  }

  .partners-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
  }

  .partner-logo {
    height: 160px;
    padding: 35px;
  }

  .story {
    padding: 90px 50px;
  }

  .book {
    height: 650px;
  }

  .page {
    padding: 50px 40px;
  }

  .story-images img {
    height: 260px;
  }

  .story-text h3 {
    font-size: 28px;
  }

  .story-text p {
    font-size: 17px;
  }

  .contact-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
  }
}

/* iPad Air Portrait (820x1180) */
@media (max-width: 834px) and (min-width: 768px) and (orientation: portrait) {
  nav {
    padding: 20px 35px;
  }

  .hero h1 {
    font-size: 65px;
  }

  .hero h2 {
    font-size: 30px;
  }
  
  .hero::before {
    width: 40vw;
    height: 40vw;
  }

  .features,
  .event-section,
  .partners,
  .sponsor-cta,
  .contact {
    padding: 85px 35px;
  }

  .story {
    padding: 100px 40px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    max-width: 700px;
    margin: 0 auto;
  }

  .feature-card {
    border-right: none;
    border: 1px solid rgba(138, 43, 226, 0.2);
    border-radius: 15px;
    padding: 60px 40px;
  }

  .feature-card p {
    font-size: 21px !important;
  }

  .feature-image {
    height: 450px !important;
  }

  .event-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .event-image {
    height: 450px;
  }

  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }

  .partner-logo {
    height: 170px;
  }

  .book {
    height: 900px;
  }

  .page {
    padding: 50px 35px;
  }

  .page-content {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .story-images {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 20px;
  }

  .story-images img {
    height: 300px !important;
  }

  .story-text h3 {
    font-size: 30px;
  }

  .story-text p {
    font-size: 17px;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 650px;
    margin: 0 auto;
  }
}

/* iPad Pro 12.9" Portrait (1024x1366) */
@media (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
  nav {
    padding: 20px 35px;
  }

  .hero h1 {
    font-size: 65px;
  }

  .hero h2 {
    font-size: 30px;
  }
  
  .hero::before {
    width: 38vw;
    height: 38vw;
  }

  .features,
  .event-section,
  .partners,
  .sponsor-cta,
  .contact {
    padding: 85px 35px;
  }

  .story {
    padding: 100px 40px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    max-width: 700px;
    margin: 0 auto;
  }

  .feature-card {
    border-right: none;
    border: 1px solid rgba(138, 43, 226, 0.2);
    border-radius: 15px;
    padding: 50px 40px;
  }

  .feature-card p {
    font-size: 20px !important;
  }

  .feature-image {
    height: 400px !important;
  }

  .event-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .event-image {
    height: 500px;
  }

  .event-details p {
    font-size: 17px;
  }

  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }

  .partner-logo {
    height: 170px;
  }

  .book {
    height: 1100px;
  }

  .page {
    padding: 50px 40px;
  }

  .page-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-images {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
  }

  .story-images img {
    height: 400px !important;
  }

  .story-text h3 {
    font-size: 28px !important;
  }

  .story-text p {
    font-size: 20px !important;
  }

  .sponsor-cta p {
    font-size: 20px !important;
  }

  .contact-card p {
    font-size: 20px !important;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 650px;
    margin: 0 auto;
  }
}

/* Tablet Portrait 921x1368 */
@media (max-width: 921px) and (min-width: 901px) {
  .hero::before {
    width: 42vw;
    height: 42vw;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .event-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Standard Tablet Styles (below iPad Pro) */
@media (max-width: 900px) {
  nav {
    padding: 20px 30px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero h1 {
    font-size: 55px;
  }

  .hero h2 {
    font-size: 28px;
  }
  
  .hero::before {
    width: 45vw;
    height: 45vw;
  }

  .features,
  .event-section,
  .partners,
  .story,
  .sponsor-cta,
  .contact {
    padding: 75px 30px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .feature-card {
    border-right: none;
    border: 1px solid rgba(138, 43, 226, 0.2);
    border-radius: 15px;
    padding: 45px 30px;
  }

  .feature-image {
    height: 280px;
  }

  .event-content {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .event-image {
    height: 350px;
  }

  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-content {
    grid-template-columns: 1fr;
    gap: 25px;
    text-align: center;
  }

  .story-images {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 15px;
  }

  .story-images img {
    height: 220px;
    width: 100%;
  }

  .contact-container {
    grid-template-columns: 1fr;
  }
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
}

.close-btn {
  display: none;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #8a2be2;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.menu-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.menu-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.98) 0%,
    rgba(10, 0, 0, 0.95) 100%
  );
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
}

.mobile-menu.active .menu-content {
  transform: translateY(0);
}

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  border-bottom: 1px solid rgba(255, 0, 0, 0.2);
}

.menu-logo {
  height: 50px;
  filter: drop-shadow(0 0 10px rgba(138, 43, 226, 0.5));
}

.close-btn {
  background: none;
  border: none;
  color: #8a2be2;
  font-size: 30px;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.close-btn:hover {
  background: rgba(138, 43, 226, 0.1);
  transform: rotate(90deg);
}

.menu-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 30px;
  gap: 30px;
}

.menu-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 28px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  transform: translateX(-50px);
  opacity: 0;
}

.mobile-menu.active .menu-nav a {
  transform: translateX(0);
  opacity: 1;
}

.mobile-menu.active .menu-nav a:nth-child(1) {
  transition-delay: 0.1s;
}
.mobile-menu.active .menu-nav a:nth-child(2) {
  transition-delay: 0.2s;
}
.mobile-menu.active .menu-nav a:nth-child(3) {
  transition-delay: 0.3s;
}
.mobile-menu.active .menu-nav a:nth-child(4) {
  transition-delay: 0.4s;
}
.mobile-menu.active .menu-nav a:nth-child(5) {
  transition-delay: 0.5s;
}

.menu-nav a:hover {
  color: #8a2be2;
  border-color: #8a2be2;
  padding-left: 20px;
  text-shadow: 0 0 10px rgba(138, 43, 226, 0.5);
}

/* Mobile and Small Tablet Styles */
@media (max-width: 767px) {
  nav {
    padding: 15px 20px;
    flex-direction: row;
    justify-content: space-between;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero::before {
    width: 50vw;
    height: 50vw;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 50px 20px 30px;
  }

  .footer-section {
    padding: 20px;
  }

  .footer-section h3 {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .social-links {
    justify-content: center;
    gap: 15px;
  }

  .footer-bottom {
    padding: 25px 20px;
  }

  .hero {
    padding: 0 20px;
    background-attachment: scroll;
  }

  .hero h1 {
    font-size: 40px;
    letter-spacing: 2px;
  }

  .hero h2 {
    font-size: 20px;
    letter-spacing: 1px;
  }

  .features,
  .event-section,
  .partners,
  .story,
  .sponsor-cta {
    padding: 60px 20px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .feature-card {
    border-right: none;
    border: 1px solid #8a2be2;
    border-radius: 15px;
    padding: 40px;
  }

  .feature-card:last-child {
    border-bottom: 1px solid #8a2be2;
  }

  .feature-card {
    padding: 30px 20px;
  }

  .features h2 {
    font-size: 28px;
  }

  .event-section h2,
  .partners h2,
  .story h2,
  .sponsor-cta h2 {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .event-content {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .event-image {
    height: 300px;
  }

  .event-details {
    padding: 25px 20px;
  }

  .event-details h3 {
    font-size: 20px;
  }

  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .book-container {
    max-width: 95%;
  }

  .book {
    height: 650px;
  }

  .page {
    padding: 30px 20px;
  }

  .page-content {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .story-images img {
    height: 180px;
  }

  .story-text h3 {
    font-size: 24px;
  }

  .story-text p {
    font-size: 16px;
  }

  .book-controls {
    gap: 20px;
    margin-top: 20px;
  }

  .prev-page,
  .next-page {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .page-indicator {
    font-size: 16px;
  }

  .sponsor-cta h2 {
    font-size: 28px;
  }

  .sponsor-cta p {
    font-size: 16px;
  }

  .sponsor-btn {
    padding: 15px 40px;
    font-size: 16px;
  }

  .footer-content {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 20px 20px 0;
  }

  .footer-section h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .footer-section ul li {
    margin-bottom: 5px;
  }

  .footer-section ul li a {
    font-size: 14px;
  }

  .footer-section p {
    font-size: 12px;
    margin-bottom: 4px;
  }

  .social-links {
    justify-content: center;
  }

  .social-links a {
    padding: 6px;
  }

  .footer-logo img {
    height: 60px !important;
  }
  
  .footer-logo {
    margin-bottom: 10px !important;
  }
  
  .footer-copyright {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
  }

  .footer-bottom {
    padding: 15px 20px;
  }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
  .nav-links {
    font-size: 12px;
    gap: 10px;
  }

  .hero h1 {
    font-size: 28px;
    letter-spacing: 1px;
  }

  .hero h2 {
    font-size: 16px;
  }

  .features,
  .event-section,
  .partners,
  .story,
  .sponsor-cta {
    padding: 40px 15px;
  }

  .feature-card {
    padding: 25px 15px;
  }

  .feature-card h3 {
    font-size: 22px;
  }

  .event-section h2,
  .partners h2,
  .story h2 {
    font-size: 24px;
  }

  .event-image {
    height: 250px;
  }

  .event-details h3 {
    font-size: 18px;
  }

  .event-details p {
    font-size: 14px;
  }

  .partners-grid {
    grid-template-columns: 1fr;
  }

  .partner-logo {
    height: 120px;
    padding: 30px;
  }

  .book {
    height: 550px;
  }

  .page {
    padding: 20px 15px;
  }

  .story-images img {
    height: 140px;
  }

  .story-text h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .story-text p {
    font-size: 14px;
    line-height: 1.6;
  }

  .prev-page,
  .next-page {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }

  .page-indicator {
    font-size: 14px;
  }

  .book-controls {
    gap: 15px;
    margin-top: 15px;
  }

  .sponsor-cta h2 {
    font-size: 24px;
  }

  .sponsor-btn {
    padding: 12px 30px;
    font-size: 14px;
  }

  .footer-content {
    padding: 20px 15px 10px;
  }

  .footer-bottom {
    padding: 10px 15px;
  }
}
/* Contact Section */
.contact {
  padding: 100px 50px;
  background: #000;
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 30% 70%,
      rgba(138, 43, 226, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 30%,
      rgba(138, 43, 226, 0.08) 0%,
      transparent 40%
    );
  animation: contactGlow 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes contactGlow {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

.contact h2 {
  text-align: center;
  font-size: 48px;
  color: #8a2be2;
  margin-bottom: 60px;
  text-transform: uppercase;
  letter-spacing: 3px;
  position: relative;
  z-index: 10;
}

.contact-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.contact-card {
  background: #000;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  border: 2px solid rgba(138, 43, 226, 0.4);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(138, 43, 226, 0.1),
    transparent
  );
  transition: left 0.6s;
}

.contact-card:hover::before {
  left: 100%;
}

.contact-card:hover {
  transform: translateY(-10px);
  border-color: rgba(138, 43, 226, 0.8);
  box-shadow: 0 15px 40px rgba(138, 43, 226, 0.5);
}

.contact-icon {
  font-size: 48px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 10px rgba(138, 43, 226, 0.3));
}

.contact-card h3 {
  color: #8a2be2;
  font-size: 24px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}

.contact-card p {
  color: #ddd;
  font-size: 16px;
  line-height: 1.6;
}

.contact-card a {
  color: #ddd;
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.contact-card a:hover {
  color: #8a2be2;
  border-bottom-color: #8a2be2;
}

@media (max-width: 768px) {
  .contact {
    padding: 80px 20px;
  }

  .contact h2 {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-card {
    padding: 30px 20px;
  }

  .contact-icon {
    font-size: 40px;
  }

  .contact-card h3 {
    font-size: 20px;
  }

  .footer-copyright {
    display: block !important;
    visibility: visible !important;
    font-size: 12px;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 30px;
  }

  footer {
    padding-bottom: 0;
  }
}
.contact-icon svg {
  transition: all 0.3s ease;
}

.contact-card:hover .contact-icon svg {
  transform: scale(1.1);
  filter: drop-shadow(0 0 15px rgba(138, 43, 226, 0.5));
}
.footer-logo {
  text-align: center;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 80px;
  width: auto;
  filter: drop-shadow(0 0 20px rgba(138, 43, 226, 0.8))
    drop-shadow(0 0 40px rgba(138, 43, 226, 0.4));
  animation: footerLogoGlow 3s ease-in-out infinite;
  transition: all 0.3s ease;
}

@keyframes footerLogoGlow {
  0%,
  100% {
    filter: drop-shadow(0 0 20px rgba(138, 43, 226, 0.8))
      drop-shadow(0 0 40px rgba(138, 43, 226, 0.4));
    opacity: 0.8;
  }
  50% {
    filter: drop-shadow(0 0 30px rgba(138, 43, 226, 1))
      drop-shadow(0 0 60px rgba(138, 43, 226, 0.8));
    opacity: 1;
  }
}

/* Modern Fights Layout */
.fights-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.featured-fight {
  background: #000;
  border: 1px solid rgba(138, 43, 226, 0.3);
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  display: block;
  transition: all 0.4s ease;
}

.featured-fight:hover {
  transform: translateY(-10px);
  border-color: rgba(138, 43, 226, 0.6);
  box-shadow: 0 20px 50px rgba(138, 43, 226, 0.4);
}

.featured-fight .fight-image {
  height: 400px;
  position: relative;
  overflow: hidden;
}

.fight-image {
  position: relative;
  overflow: hidden;
}

.fight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.featured-fight:hover .fight-image img,
.fight-card:hover .fight-image img {
  transform: scale(1.1);
}

.fight-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #8a2be2;
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 1px;
}

.fight-info {
  padding: 30px;
}

.fight-info h3 {
  font-size: 28px;
  color: #8a2be2;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.fight-info p {
  color: #ccc;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.watch-now {
  color: #8a2be2;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.featured-fight:hover .watch-now {
  letter-spacing: 2px;
}

.fights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.fight-card {
  background: #000;
  border: 1px solid rgba(138, 43, 226, 0.2);
  border-radius: 15px;
  overflow: hidden;
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
}

.fight-card:hover {
  transform: translateY(-5px);
  border-color: rgba(138, 43, 226, 0.5);
  box-shadow: 0 10px 30px rgba(138, 43, 226, 0.3);
}

.fight-card .fight-image {
  height: 200px;
}

.fight-card h4 {
  padding: 20px;
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

@media (max-width: 1024px) {
  .fights-container {
    grid-template-columns: 1fr;
  }

  .fights-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .fights-grid {
    grid-template-columns: 1fr;
  }

  .featured-fight .fight-image {
    height: 300px;
  }

  .fight-card .fight-image {
    height: 250px;
  }
}
