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

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #000;
  color: #fff;
  line-height: 1.6;
  scroll-behavior: smooth;
}

a {
  color: inherit;
  text-decoration: none;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #000;
  z-index: 10000;
  box-shadow: 0 2px 10px rgba(255, 255, 255, 0.05);
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 0.75rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  height: 40px;
}

nav a {
  margin: 0 0.75rem;
  font-weight: 500;
  color: white;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #e11d48;
}

#preloader {
  position: fixed;
  inset: 0;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.8s ease;
}

.preloader-ring {
  width: 100px;
  height: 100px;
  border: 6px solid transparent;
  border-top: 6px solid #e11d48;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  position: absolute;
}

.preloader-logo {
  width: 100px;
  z-index: 10;
}

.hero {
  height: 100vh;
  background: linear-gradient(to bottom, #000, #450a0a);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 1rem;
}

.hero .overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  padding: 1rem;
}

.hero-content {
  animation: fadeInUp 1s ease-in-out;
}

.hero-logo {
  width: 120px;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: 3.5rem;
  color: #e11d48;
}

.tagline {
  font-size: 1.5rem;
  margin-top: 1rem;
}

.date {
  color: #ccc;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

.btn {
  margin-top: 0;
  background: #e11d48;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: bold;
  font-size: 1rem;
  transition: background 0.3s ease;
}


.btn:hover {
  background: #be123c;
}

.section {
  padding: 4rem 1.5rem;
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.section h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #e11d48;
}

.dark {
  background-color: #111;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.card {
  width: 150px;
  height: 200px;
  background: #1e1e1e;
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

.card img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 0.75rem;
}

.card h3 {
  margin: 0.5rem 0;
  color: #fff;
}

.card p {
  color: #bbb;
  font-size: 0.9rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}

.gallery-grid img {
  width: 100%;
  border-radius: 0.5rem;
}

.sponsor-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}

.sponsor-logos img {
  height: 60px;
}

.ticket-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}

.ticket-card {
  background: #1e1e1e;
  border: 2px solid #e11d48;
  border-radius: 1rem;
  padding: 2rem;
  width: 300px;
  text-align: center;
  box-shadow: 0 0 10px rgba(225, 29, 72, 0.5);
}

.ticket-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

.ticket-card .price {
  font-size: 2rem;
  color: #e11d48;
  margin-bottom: 1rem;
}

.ticket-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
  color: #ccc;
  text-align: left;
}

.ticket-card ul li {
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
}

.ticket-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #e11d48;
}

.ticket-card .btn {
  background: #e11d48;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: bold;
  font-size: 1rem;
  transition: background 0.3s ease;
  border: none;
  cursor: pointer;
}

.ticket-card .btn:hover {
  background: #be123c;
}

.ticket-card .btn.disabled {
  background: #555;
  cursor: not-allowed;
}

.ticket-info {
  margin-top: 3rem;
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.ticket-info h3 {
  font-size: 1.75rem;
  color: #e11d48;
  margin-bottom: 1rem;
}

.ticket-info ul {
  list-style: disc;
  padding-left: 1.5rem;
  color: #ccc;
}

.ticket-info ul li {
  margin-bottom: 0.5rem;
}


.contact-form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  background: #222;
  color: white;
  padding: 0.75rem;
  border: none;
  border-radius: 0.5rem;
}

.contact-form button {
  background: #e11d48;
  color: white;
  padding: 0.75rem;
  border: none;
  border-radius: 999px;
  font-weight: bold;
  cursor: pointer;
}

.contact-form button:hover {
  background: #be123c;
}

.form-status {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #e11d48;
}

footer {
  background: #000;
  text-align: center;
  padding: 1.5rem;
  font-size: 0.875rem;
  color: #888;
}

.map {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 0.5rem;
  margin-top: 1rem;
}

.faq {
  max-width: 600px;
  margin: auto;
  text-align: left;
}

.faq summary {
  font-weight: bold;
  cursor: pointer;
  padding: 1rem;
  background: #222;
  border-radius: 0.5rem;
  margin-bottom: 0.5rem;
}

.faq p {
  padding: 0.5rem 1rem 1rem;
  color: #bbb;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal.hidden {
  display: none;
}

.modal-content {
  background-color: #111;
  color: #fff;
  padding: 2rem;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  position: relative;
}

.modal-content h2 {
  margin-top: 0;
  color: #e11d48;
  text-align: center;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #fff;
  font-weight: 500;
}

.promo-container {
  display: flex;
  gap: 0.5rem;
}

.promo-container input {
  flex: 1;
}

.btn-secondary {
  background: #333;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 999px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-secondary:hover {
  background: #444;
}

.btn-primary {
  background: #e11d48;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 999px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
  width: 100%;
  margin-top: 1rem;
}

.btn-primary:hover {
  background: #be123c;
}

.price-summary {
  background: #1a1a1a;
  padding: 1rem;
  border-radius: 0.5rem;
  margin: 1.5rem 0;
}

.price-summary h3 {
  color: #fff;
  margin: 0.5rem 0;
}

.discount-text {
  color: #4ade80;
  margin: 0.5rem 0;
}

.total-price {
  border-top: 1px solid #333;
  padding-top: 1rem;
  margin-top: 1rem;
  text-align: right;
  color: #e11d48 !important;
}

input[type="file"] {
  background: #222;
  color: white;
  padding: 0.75rem;
  border: 2px dashed #444;
  border-radius: 0.5rem;
  width: 100%;
  cursor: pointer;
}

input[type="file"]:hover {
  border-color: #666;
}

#image_preview {
  border-radius: 0.5rem;
  border: 2px solid #333;
}

.form-status {
  text-align: center;
  margin-top: 1rem;
  padding: 0.75rem;
  border-radius: 0.5rem;
}

.form-status:empty {
  display: none;
}

.team-scroll-wrapper {
  overflow-x: auto;
  padding: 20px 10px;
  background-color: #0d0d0d;
}

.team-container {
  display: flex;
  gap: 16px;
  flex-wrap: nowrap;
  padding-bottom: 10px;
}

.team-card {
  background-color: #1a1a1a;
  color: #fff;
  border-radius: 12px;
  width: 140px;
  flex-shrink: 0;
  text-align: center;
  padding: 12px 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: scale(1.05);
}

.team-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 10px;
  border: 2px solid #e62b1e;
  display: block;
}

.team-name {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}

.team-role {
  font-size: 12px;
  color: #ccc;
  margin-top: 4px;
}


@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .tagline,
  .date {
    font-size: 1rem;
  }

  .btn {
    margin-top: 2rem;
    font-size: 0.9rem;
  }

  .section h2 {
    font-size: 2rem;
  }

  .navbar {
    display: none;
  }
  
  .nav-container {
    flex-direction: column;
  }

  nav a {
    margin: 0.5rem 0;
    display: block;
  }

  .card-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.1rem;
    justify-content: center;
  }

  .card {
    width: 55px;
    height: 90px;
    background: #1e1e1e;
    padding: 0.2rem;
    border-radius: 0.2rem;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

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

  .card img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    margin-bottom: 0.75rem;
  }

  .card h3 {
    font-size: 0.4rem;
    margin: 0.2rem 0;
    color: #fff;
  }

  .card p {
    color: #bbb;
    font-size: 0.3rem;
  }
}

.modal-content input[type="text"],
.modal-content input[type="email"],
.modal-content input[type="tel"] {
  width: 100%;
  padding: 0.75rem 1rem;
  background: #1a1a1a;
  border: 2px solid #333;
  border-radius: 0.5rem;
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.modal-content input[type="text"]:focus,
.modal-content input[type="email"]:focus,
.modal-content input[type="tel"]:focus {
  border-color: #e11d48;
  outline: none;
  box-shadow: 0 0 0 2px rgba(225, 29, 72, 0.2);
}

.modal-content input[type="text"]::placeholder,
.modal-content input[type="email"]::placeholder,
.modal-content input[type="tel"]::placeholder {
  color: #666;
}

.modal-content input[type="text"]:hover,
.modal-content input[type="email"]:hover,
.modal-content input[type="tel"]:hover {
  border-color: #444;
}

.form-group label {
  display: block;
  margin-bottom: 0.75rem;
  color: #fff;
  font-weight: 500;
  font-size: 0.95rem;
}

.promo-container input {
  flex: 1;
  margin-right: 0.5rem;
}

.loading-spinner {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.loading-spinner.active {
  display: flex;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 3px solid transparent;
  border-top: 3px solid #e11d48;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 1rem;
}

.loading-text {
  color: #fff;
  font-size: 1.1rem;
  margin-top: 1rem;
}

.notification-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  justify-content: center;
  align-items: center;
}

.notification-modal.active {
  display: flex;
}

.notification-content {
  background: #1a1a1a;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  max-width: 400px;
  width: 90%;
  position: relative;
  animation: fadeInUp 0.3s ease;
}

.notification-content.success {
  border: 2px solid #4ade80;
}

.notification-content.error {
  border: 2px solid #ef4444;
}

.notification-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.notification-content.success h3 {
  color: #4ade80;
}

.notification-content.error h3 {
  color: #ef4444;
}

.notification-content p {
  color: #fff;
  margin-bottom: 1.5rem;
}

.notification-btn {
  background: #e11d48;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 999px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.notification-btn:hover {
  background: #be123c;
}
