

:root {
  --primary: #00cc66;
  --primary-dark: #00a352;
  --red-corner: #ff3333;
  --blue-corner: #007bff;
  --secondary: #1a1a1a;
  --accent: #ffcc00;
  --light: #f8f9fa;
  --dark: #121212;
  --glow: 0 0 15px rgba(0, 204, 102, 0.7);
  --glow-blue: 0 0 15px rgba(0, 123, 255, 0.7);
  --glow-red: 0 0 15px rgba(255, 51, 51, 0.7);
  --transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.container {
  max-width: 1200px;
  width: 100%;
}

.event-details-hero {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(0, 204, 102, 0.2);
}

.hero-content {
  display: flex;
  flex-wrap: wrap;
}

.text-content {
  flex: 1;
  min-width: 300px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.poster-container {
  flex: 1;
  min-width: 300px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 10, 0.7);
}

.event-poster {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 10px;
  box-shadow: var(--glow);
  transition: transform 0.3s ease;
}

.event-poster:hover {
  transform: scale(1.02);
}

.event-status-badge {
  background: rgba(0, 204, 102, 0.2);
  color: var(--primary);
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: bold;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 20px;
  box-shadow: var(--glow);
  font-size: 0.9rem;
}

.event-status-badge.live {
  background: rgba(255, 0, 0, 0.2);
  color: #ff3333;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.4);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(255, 0, 0, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
  }
}

h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  color: var(--light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.event-description {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: #ddd;
  line-height: 1.6;
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin: 20px 0;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.meta-icon {
  font-size: 1.8rem;
  color: var(--primary);
}

.meta-text {
  display: flex;
  flex-direction: column;
}

.meta-label {
  font-size: 0.9rem;
  color: #aaa;
  text-transform: uppercase;
}

.meta-value {
  font-size: 1.2rem;
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}

.btn {
  padding: 12px 25px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border-radius: 5px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
  box-shadow: var(--glow);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  box-shadow: 0 0 25px rgba(0, 204, 102, 0.9);
  transform: translateY(-3px);
}

.btn-outline {
  color: var(--primary);
  border: 2px solid var(--primary);
  background: transparent;
}

.btn-outline:hover {
  background-color: var(--primary);
  color: white;
  box-shadow: var(--glow);
  transform: translateY(-3px);
}

.btn-accent {
  background-color: var(--accent);
  color: var(--dark);
  box-shadow: 0 0 15px rgba(255, 204, 0, 0.7);
}

.btn-accent:hover {
  background-color: #e6b800;
  box-shadow: 0 0 25px rgba(255, 204, 0, 0.9);
  transform: translateY(-3px);
}

.fighter-preview {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  background: rgba(30, 30, 30, 0.7);
  border-radius: 10px;
  padding: 20px;
  border: 1px solid rgba(0, 204, 102, 0.2);
}

.fighter {
  text-align: center;
  width: 45%;
}



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

.fighter-name {
  font-weight: bold;
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.fighter-record {
  color: var(--primary);
  font-size: 0.9rem;
}

.vs-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-weight: bold;
  font-size: 1.4rem;
  text-shadow: 0 0 10px rgba(255, 204, 0, 0.7);
}

/* Responsive design */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column-reverse;
  }

  .text-content,
  .poster-container {
    padding: 25px;
  }

  h1 {
    font-size: 2.2rem;
  }

  .event-meta {
    flex-direction: column;
    gap: 15px;
  }

  .fighter-preview {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .vs-circle {
    padding: 10px 0;
    
  }
}

/* ===== BASE & VARIABLES ===== */
:root {
  --primary: #00cc66;
  --primary-dark: #00a352;
  --secondary: #1a1a1a;
  --secondary-light: #2a2a2a;
  --accent: #ffcc00;
  --accent-dark: #e6b800;
  --light: #f8f9fa;
  --dark: #121212;
  --glow: 0 0 15px rgba(0, 204, 102, 0.7);
  --glow-accent: 0 0 15px rgba(255, 204, 0, 0.7);
  --transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

body {
  font-family: "Roboto", sans-serif;
  background: linear-gradient(135deg, #0a0a0a 0%, #121212 100%);
  color: var(--light);
  overflow-x: hidden;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn {
  padding: 12px 28px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  border-radius: 5px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 1rem;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
  box-shadow: var(--glow);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  box-shadow: 0 0 25px rgba(0, 204, 102, 0.9);
  transform: translateY(-3px);
}

.btn-outline {
  color: var(--primary);
  border: 2px solid var(--primary);
  background: transparent;
}

.btn-outline:hover {
  background-color: var(--primary);
  color: white;
  box-shadow: var(--glow);
  transform: translateY(-3px);
}

.btn-accent {
  background-color: var(--accent);
  color: var(--dark);
  box-shadow: var(--glow-accent);
}

.btn-accent:hover {
  background-color: var(--accent-dark);
  box-shadow: 0 0 25px rgba(255, 204, 0, 0.9);
  transform: translateY(-3px);
}

/* ===== EVENT HERO SECTION ===== */
.event-details-hero {
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 1200px;
  position: relative;
  z-index: 2;
  padding: 20px;
  width: 100%;
}

.event-hero-content {
  max-width: 800px;
}

.event-hero-content h1 {
  font-size: 4.5rem;
  margin-bottom: 15px;
  text-shadow: 0 0 20px rgba(0, 204, 102, 0.8);
  line-height: 1.1;
}

.event-meta {
  display: flex;
  gap: 30px;
  margin: 20px 0;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.meta-icon {
  font-size: 1.8rem;
  color: var(--accent);
}

.meta-text {
  display: flex;
  flex-direction: column;
}

.meta-label {
  font-size: 0.9rem;
  color: #aaa;
  text-transform: uppercase;
}

.meta-value {
  font-size: 1.2rem;
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* ===== MAIN CONTENT SECTION ===== */
.event-details-section {
  padding: 80px 0;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 40px;
}

.main-content {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.section-title {
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.section-title h2 {
  font-size: 2.5rem;
  text-shadow: var(--glow);
  margin-bottom: 10px;
}

.section-title:after {
  content: "";
  position: absolute;
  bottom: 0;

  width: 80px;
  height: 4px;
  background: var(--primary);
  box-shadow: var(--glow);
  border-radius: 5px;
}

.event-description p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #ddd;
}

.fight-type{
  font-weight: bold;
  color: var(--primary);
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* FIGHT CARD SECTION */
.fight-card-section {
  background: rgba(30, 30, 30, 0.5);
  border-radius: 15px;
  padding-top: 30px;
  padding-bottom: 30px;
  border: 1px solid rgba(0, 204, 102, 0.2);
}

.fight-card-item {
  background: rgba(20, 20, 20, 0.8);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.fight-card-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 204, 102, 0.3);
}

.fight-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.fight-weight {
  color: var(--accent);
  font-weight: bold;
  font-size: 1.1rem;
  text-transform: uppercase;
}

.fight-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.fighter-detail {
  text-align: center;
  width: 45%;
}

.fighter-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 15px;
  border: 3px solid var(--primary);
  box-shadow: var(--glow);
  transition: var(--transition);
}


.red-corner {
  border: 3px solid var(--red-corner);
  box-shadow: var(--glow-red);
  text-align: left;

}


.blue-corner {
  border: 3px solid var(--blue-corner);
  box-shadow: var(--glow-blue);
  text-align: left;
}

.fighter-detail:hover .blue-corner  {
  border-color: var(--blue-corner);
  transform: scale(1.05);
}

.fighter-detail:hover .red-corner  {
  border-color: var(--red-corner);
  transform: scale(1.05);

}

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

.fighter-name {
  font-weight: bold;
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.fighter-record {
  color: var(--primary);
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.fighter-stats {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-weight: bold;
  font-size: 1.1rem;
  color: var(--accent);
}

.stat-label {
  font-size: 0.8rem;
  color: #aaa;
  text-transform: uppercase;
}



/* SIDEBAR */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar-card {
  background: rgba(30, 30, 30, 0.8);
  border-radius: 15px;
  padding: 25px;
  border: 1px solid rgba(0, 204, 102, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--accent);
  position: relative;
  padding-bottom: 10px;
}

.card-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--accent);
  box-shadow: var(--glow-accent);
}

.event-info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.info-icon {
  font-size: 1.4rem;
  color: var(--primary);
  min-width: 30px;
}

.info-text {
  flex: 1;
}

.info-label {
  font-size: 0.9rem;
  color: #aaa;
  margin-bottom: 5px;
}

.info-value {
  font-size: 1.1rem;
  font-weight: 500;
}

.ticket-card {
  background: linear-gradient(135deg, #0a2a0a 0%, #121212 100%);
  border: 1px solid var(--primary);
  box-shadow: var(--glow);
}

.ticket-options {
  margin: 20px 0;
}

.ticket-option {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ticket-type {
  font-weight: 500;
}

.ticket-price {
  color: var(--accent);
  font-weight: bold;
}

.ticket-note {
  font-size: 0.9rem;
  color: #aaa;
  margin-top: 15px;
  text-align: center;
}

/* RELATED EVENTS */
.related-events {
  padding: 60px 0;
  background: linear-gradient(to bottom, #0a0a0a 0%, #121212 100%);
  border-top: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 2.8rem;
  text-shadow: var(--glow);
  margin-bottom: 15px;
}

.section-header p {
  color: #aaa;
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

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

.event-card {
  background: var(--secondary);
  border-radius: 15px;
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(0, 204, 102, 0.1);
}

.event-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7), var(--glow);
  border-color: rgba(0, 204, 102, 0.3);
}

.event-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.event-card:hover .event-image img {
  transform: scale(1.1);
}

.event-date {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.8);
  padding: 8px 12px;
  border-radius: 5px;
  font-weight: bold;
  color: var(--primary);
  box-shadow: var(--glow);
}

.event-content {
  padding: 20px;
}

.event-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--accent);
}

.event-location {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
  color: #aaa;
  font-size: 0.95rem;
}

.event-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}

.event-status {
  background: rgba(0, 204, 102, 0.2);
  color: var(--primary);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: bold;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 991px) {
  .content-grid {
    grid-template-columns: 1fr;
  }

  .event-hero-content h1 {
    font-size: 3.5rem;
  }

  .sidebar {
    grid-row: 1;
  }
}

@media (max-width: 767px) {
  .navbar .container {
    flex-wrap: wrap;
  }

  .fight-card-section {
  background: rgba(30, 30, 30, 0.5);
  border-radius: 15px;
 
  border: 1px solid rgba(0, 204, 102, 0.2);
}

  .event-hero-content h1 {
    font-size: 2.8rem;
  }

  .event-meta {
    flex-direction: column;
    gap: 15px;
    display: none;
  }

  .hero-buttons {
    flex-direction: column;
  }
}

@media (max-width: 575px) {
  .event-hero-content h1 {
    font-size: 2.2rem;
  }

  .fighter-detail {
    width: 40%;
  }

  .fighter-image {
    width: 80px;
    height: 80px;
  }
}

  .fight-card-section {
  background: rgba(30, 30, 30, 0.5);
  border-radius: 15px;
 
  border: 1px solid rgba(0, 204, 102, 0.2);
}


.hero-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.event-hero-text,
.event-hero-image {
  flex: 1 1 100%;
}

@media (min-width: 768px) {
  .event-hero-text,
  .event-hero-image {
    flex: 1 1 48%;
  }
}


  .fight-card-section {
  background: rgba(30, 30, 30, 0.5);
  border-radius: 15px;
 
  border: 1px solid rgba(0, 204, 102, 0.2);
}



/* Hero Section Container */
.event-details-hero {
  background-color: #0f0f0f;
  color: #fff;
  padding: 20px 40px;
}

/* Flexbox Wrapper */
.hero-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

/* Text Column */
.hero-text {
  flex: 1 1 500px;
}

.hero-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 18px;
  line-height: 1.6;
}

.hero-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 24px;
  background-color: #28a745;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 0 10px #28a74570;
  transition: 0.3s;
}

.hero-btn:hover {
  background-color: #218838;
  box-shadow: 0 0 15px #28a745a0;
}

/* Image Column */
.hero-image {
  flex: 1 1 400px;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0, 255, 100, 0.2);
}
