:root {
  --primary-color: #1e3a8a;
  --secondary-color: #f59e0b;
  --accent-color: #3b82f6;
  --success-color: #10b981;
  --warning-color: #f97316;
  --error-color: #dc2626;
  --light-bg: #f9fafb;
  --card-bg: #ffffff;
  --section-bg: #f3f4f6;
  --dark-text: #111827;
  --secondary-text: #6b7280;
  --muted-text: #9ca3af;
  --border-color: #e5e7eb;

  --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --dark-overlay: rgba(0, 0, 0, 0.7);

  /* Gymnastics Apparatus Colors */
  --floor-color: #8b5cf6;
  --vault-color: #f97316;
  --bars-color: #14b8a6;
  --beam-color: #ec4899;
  --rings-color: #dc2626;
  --parallel-bars-color: #3b82f6;
}

* {
  font-family: "Poppins", sans-serif;
}

body {
  line-height: 1.6;
  color: var(--dark-text);
  background-color: var(--light-bg);
}

.navbar {
  background-color: var(--card-bg) !important;
  border-bottom: 1px solid var(--border-color);
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-color) !important;
}

.nav-link {
  color: var(--secondary-text) !important;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-color) !important;
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--warning-color)
  );
  border: none;
  color: white;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(
    135deg,
    var(--warning-color),
    var(--secondary-color)
  );
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
  color: white;
}

.btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: white;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  background: transparent;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  color: white;
  transform: translateY(-2px);
}

.btn-outline-primary {
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  background: transparent;
  font-weight: 600;
  border-radius: 50px;
  padding: 12px 30px;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background: var(--accent-color);
  color: white;
  transform: translateY(-2px);
}

.feature-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 40px rgba(30, 58, 138, 0.1);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(30, 58, 138, 0.15);
  border-color: var(--accent-color);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: white;
}

.event-card {
  background: var(--card-bg);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(30, 58, 138, 0.1);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  border-top: 3px solid var(--secondary-color);
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(30, 58, 138, 0.15);
  border-top-color: var(--accent-color);
}

.event-badge {
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-block;
  color: white;
}

.event-badge.upcoming {
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--warning-color)
  );
}

.event-badge.ongoing {
  background: linear-gradient(135deg, var(--success-color),  #22c55e);
}

.event-badge:not(.upcoming):not(.ongoing) {
  background: linear-gradient(135deg, var(--success-color), #22c55e);
}

.stats-section {
  background: var(--section-bg);
  padding: 80px 0;
}

.stat-item {
  text-align: center;
  padding: 20px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--secondary-text);
  margin-top: 5px;
}

.testimonial-card {
  background: var(--card-bg);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 25px rgba(30, 58, 138, 0.1);
  border: 1px solid var(--border-color);
  margin: 15px 0;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--accent-color),
    var(--primary-color)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 1.2rem;
}

.cta-section {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--accent-color) 100%
  );
  color: white;
  padding: 80px 0;
  text-align: center;
}

.footer {
  background: var(--primary-color);
  color: white;
  padding: 60px 0 30px;
}

.footer-link {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--secondary-color);
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--secondary-color);
  color: white;
  transform: translateY(-2px);
}

.pulse-btn {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

/* Score Display Colors */
.score-high {
  background: linear-gradient(135deg, var(--success-color), #22c55e);
  color: white;
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 600;
}

.score-medium {
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--warning-color)
  );
  color: white;
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 600;
}

.score-low {
  background: linear-gradient(135deg, var(--error-color), #f87171);
  color: white;
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 600;
}

/* Apparatus Event Colors */
.event-floor {
  border-left: 4px solid var(--floor-color);
}

.event-vault {
  border-left: 4px solid var(--vault-color);
}

.event-bars {
  border-left: 4px solid var(--bars-color);
}

.event-beam {
  border-left: 4px solid var(--beam-color);
}

.event-rings {
  border-left: 4px solid var(--rings-color);
}

.event-parallel {
  border-left: 4px solid var(--parallel-bars-color);
}

/* Live Results Card */
.live-results-card {
  background: var(--card-bg);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(30, 58, 138, 0.1);
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.live-results-header {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  color: white;
  padding: 20px;
  position: relative;
}

.live-results-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20" fill="white" opacity="0.1"><circle cx="10" cy="10" r="1"><animate attributeName="opacity" values="1;0;1" dur="1s" repeatCount="indefinite"/></circle><circle cx="30" cy="10" r="1"><animate attributeName="opacity" values="1;0;1" dur="1s" begin="0.2s" repeatCount="indefinite"/></circle><circle cx="50" cy="10" r="1"><animate attributeName="opacity" values="1;0;1" dur="1s" begin="0.4s" repeatCount="indefinite"/></circle></svg>');
  background-repeat: repeat-x;
}

.live-results-header h5 {
  position: relative;
  z-index: 2;
}

.table-hover tbody tr:hover {
  background-color: rgba(59, 130, 246, 0.05);
}

.rank-badge {
  padding: 4px 8px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: white;
  display: inline-block;
}

.rank-1 {
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--warning-color)
  );
}

.rank-2 {
  background: linear-gradient(135deg, var(--secondary-text), #94a3b8);
}

.rank-3 {
  background: linear-gradient(135deg, #cd7f32, #d97706);
}

.rank-other {
  background: linear-gradient(135deg, var(--muted-text), #9ca3af);
}

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0;
  }

  .hero-section h1 {
    font-size: 2.5rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .feature-card {
    padding: 30px 20px;
  }
}

.hero-section {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--accent-color) 100%
  );
  color: white;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
  background-size: cover;
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
}

.text-warning {
  color: #ffc107 !important;
}

.pulse-btn {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Carousel Improvements */
.carousel-container {
  position: relative;
  z-index: 2;
  margin-top: -40px; /* Move carousel up */
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}

.event-poster {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  position: relative;
}

.event-poster:hover {
  transform: translateY(-10px);
}

.poster-image {
  width: 100%;
  height: 400px; /* Square-ish aspect ratio */
  object-fit: cover;
  object-position: center;
}

.poster-overlay {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.register-btn {
  background: #ffc107;
  color: #000;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.register-btn:hover {
  background: #ffca28;
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

.event-status {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #28a745;
  color: white;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: bold;
}

.event-status.featured {
  background: #ffc107;
  color: #000;
}

/* Carousel Controls - Fixed positioning */
.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.2);
}

.carousel-control-prev {
  left: -70px; /* Move further left to avoid text overlap */
}

.carousel-control-next {
  right: -70px; /* Move further right */
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 20px;
  height: 20px;
}

/* Carousel Indicators */
.carousel-indicators {
  bottom: -60px;
  margin-bottom: 0;
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  margin: 0 5px;
  border: none;
  transition: all 0.3s ease;
}

.carousel-indicators button.active {
  background: #ffc107;
  transform: scale(1.2);
}

.carousel-indicators button:hover {
  background: rgba(255, 255, 255, 0.8);
}

/* Mobile Responsive */
@media (max-width: 1200px) {
  .carousel-control-prev {
    left: -60px;
  }

  .carousel-control-next {
    right: -60px;
  }
}

@media (max-width: 992px) {
  .carousel-container {
    margin-top: 40px;
    max-width: 400px;
  }

  .poster-image {
    height: 350px;
  }

  .carousel-control-prev {
    left: -50px;
  }

  .carousel-control-next {
    right: -50px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: auto;
    padding: 60px 0;
  }

  .hero-content {
    text-align: center;
    margin-bottom: 40px;
  }

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

  .carousel-container {
    margin-top: 0;
    max-width: 320px;
  }

  .poster-image {
    height: 320px; /* Square on mobile */
  }

  .carousel-control-prev,
  .carousel-control-next {
    display: none; /* Hide arrows on mobile */
  }

  .carousel-indicators {
    bottom: -40px;
  }

  .d-flex.gap-3 {
    flex-direction: column;
    gap: 15px !important;
  }

  .btn-lg {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding: 40px 0;
  }

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

  .carousel-container {
    max-width: 280px;
  }

  .poster-image {
    height: 280px;
  }

  .carousel-indicators {
    bottom: -30px;
  }

  .register-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

/* Additional spacing for better layout */
.hero-section .row {
  align-items: center;
}

.hero-section .col-lg-6:first-child {
  padding-right: 40px;
}

@media (max-width: 991px) {
  .hero-section .col-lg-6:first-child {
    padding-right: 15px;
  }
}

/* Event Detail Specific Styles */
.event-header {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--accent-color) 100%
  );
  color: white;
  padding: 20px 0;
  position: relative;
  overflow: hidden;
}

.event-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
  background-size: cover;
  opacity: 0.3;
}

.event-header-content {
  position: relative;
  z-index: 2;
}

.event-poster-large {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  height: 500px;
  position: relative;
}

.event-poster-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-details-section {
  padding: 80px 0;
  background: var(--card-bg);
}

.detail-card {
  background: var(--card-bg);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 25px rgba(30, 58, 138, 0.1);
  border: 1px solid var(--border-color);

  margin-bottom: 30px;
}

.detail-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(
      135deg,
      var(--accent-color),
      var(--primary-color)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 400;
    font-size: 0.75rem; /* Smaller font for small container */
    line-height: 1;      /* Prevent vertical misalignment */
    margin-bottom: 15px;
    margin-right: 5px;
}


.apparatus-list {
  list-style: none;
  padding: 0;
}

.apparatus-item {
  display: flex;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
}

.apparatus-item:last-child {
  border-bottom: none;
}

.apparatus-color {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-right: 15px;
}

.apparatus-color.floor {
  background: var(--floor-color);
}
.apparatus-color.vault {
  background: var(--vault-color);
}
.apparatus-color.bars {
  background: var(--bars-color);
}
.apparatus-color.beam {
  background: var(--beam-color);
}
.apparatus-color.rings {
  background: var(--rings-color);
}
.apparatus-color.parallel {
  background: var(--parallel-bars-color);
}

.registration-section {
  padding: 80px 0;
  background: var(--section-bg);
}

.registration-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(30, 58, 138, 0.1);
  border: 1px solid var(--border-color);
}

.price-tag {
  background: linear-gradient(135deg, var(--success-color), #22c55e);
  color: white;
  padding: 15px 25px;
  border-radius: 15px;
  font-size: 1.5rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 20px;
}

.countdown-timer {
  background: linear-gradient(135deg, var(--error-color), var(--warning-color));
  color: white;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  margin-bottom: 30px;
}

.countdown-item {
  display: inline-block;
  margin: 0 10px;
  text-align: center;
}

.countdown-number {
  font-size: 2rem;
  font-weight: 700;
  display: block;
}

.countdown-label {
  font-size: 0.9rem;
  opacity: 0.9;
}

.organizer-info {
  background: var(--card-bg);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 25px rgba(30, 58, 138, 0.1);
  border: 1px solid var(--border-color);
}

.organizer-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--accent-color),
    var(--primary-color)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .event-header {
    padding: 60px 0;
  }

  .event-poster-large {
    height: 350px;
    margin-bottom: 30px;
  }

  .detail-card {
    padding: 20px;
  }

  .registration-card {
    padding: 30px 20px;
  }
}
.tblresult {
  background: #ffffff;
  width: 100%;
  border: 1;
  border-width: 1px;
}
.tblresult th {
  text-align: left;
  padding: 15px 7px;
}
.tblresult td {
  text-align: left;
  padding: 1px 2px;
  padding-left: 10px;
  height: 60px !important;
  font-size: 16px;
  font-weight: 400;
}

.tblresult tr {
  font-size: 10px;
  font-weight: 400;
  border-bottom: 1px;
}
ul {
  text-align: left;
  list-style-position: inside; /* brings bullets inside padding */
  padding-left: 0;
}


.events-section {
  padding: 40px 0;
  position: relative;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.eventlist-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: all 0.4s ease;
  border: none;
  position: relative;
  height: 100%;
}

.eventlist-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.event-image {
  height: 250px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.event-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(102,126,234,0.8), rgba(118,75,162,0.8));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.eventlist-card:hover .event-image::before {
  opacity: 1;
}

.event-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--secondary-gradient);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 3;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.event-date {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(255,255,255,0.95);
  color: #333;
  padding: 10px 15px;
  border-radius: 15px;
  text-align: center;
  min-width: 70px;
  z-index: 3;
  backdrop-filter: blur(10px);
}

.event-date .day {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.event-date .month {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  opacity: 0.8;
}

.event-body {
  padding: 30px;
}

.event-title {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 15px;
  color: #2c3e50;
  line-height: 1.3;
}

.event-description {
  font-size: .75rem;
  color: #6c757d;
  margin-bottom: 20px;
  line-height: 1.6;
}

.event-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: #6c757d;
}

.event-meta i {
  color: #667eea;
  margin-right: 5px;
}

.event-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: #667eea;
  margin-bottom: 20px;
}

.event-price .currency {
  font-size: 0.9rem;
  opacity: 0.8;
}

.btn-event {
  background: var(--accent-gradient);
  border: none;
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.btn-event:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(79,172,254,0.3);
  color: white;
}

.filter-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-btn {
  background: white;
  border: 2px solid #e9ecef;
  color: #6c757d;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-gradient);
  border-color: transparent;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102,126,234,0.3);
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, rgba(102,126,234,0.1), rgba(118,75,162,0.1));
  animation: float 6s ease-in-out infinite;
}

.floating-shape:nth-child(1) {
  width: 80px;
  height: 80px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.floating-shape:nth-child(2) {
  width: 120px;
  height: 120px;
  top: 60%;
  right: 10%;
  animation-delay: 2s;
}

.floating-shape:nth-child(3) {
  width: 60px;
  height: 60px;
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

@media (max-width: 768px) {
  .hero-title {
      font-size: 2.5rem;
  }
  
  .section-title {
      font-size: 2rem;
  }
  
  .event-meta {
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
  }
  
  .filter-tabs {
      flex-direction: column;
      align-items: center;
  }
}
