html {
  font-size: 16px;
  position: relative;
  min-height: 100%;
}

body {
  background: #f8fafc;
  color: #0f172a;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
}

a {
  color: #0f6cfb;
  text-decoration: none;
}

a:hover {
  color: #143fe6;
}

a.nav-link {
  font-weight: 600;
  transition: all 0.3s ease;
}

a.nav-link:hover {
  color: #0f6cfb !important;
  transform: translateY(-2px);
}

.navbar {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.95) !important;
}

.navbar-brand {
  font-size: 1.15rem;
  letter-spacing: 0.01em;
  font-weight: 700;
}

.btn-accent {
  background: linear-gradient(135deg, #0f6cfb, #143fe6);
  color: #fff;
  font-weight: 700;
  border: none;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(15, 108, 251, 0.25);
  transition: all 0.3s ease;
}

.btn-accent:hover {
  color: #fff;
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(15, 108, 251, 0.35);
}

.hero {
  background: radial-gradient(circle at 20% 20%, rgba(15, 108, 251, 0.08), transparent 25%),
    radial-gradient(circle at 80% 10%, rgba(255, 179, 71, 0.12), transparent 22%),
    #fff;
  border-radius: 24px;
  padding: 3rem;
  border: 1px solid #e7ebf3;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
}

.hero h1 {
  font-weight: 800;
  line-height: 1.1;
}

.hero .meta {
  color: #6b7280;
  font-weight: 600;
}

.section-title {
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.card {
  border: none;
  transition: all 0.3s ease;
}

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

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

.feature-card,
.info-card,
.gallery-card {
  background: #fff;
  border: 1px solid #e7ebf3;
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  height: 100%;
  transition: all 0.3s ease;
}

.feature-card:hover,
.info-card:hover,
.gallery-card:hover {
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
  transform: translateY(-4px);
}

.feature-card .badge {
  background: rgba(15, 108, 251, 0.08);
  color: #0f6cfb;
  font-weight: 700;
}

.info-card h3 {
  font-weight: 700;
}

.divider {
  height: 1px;
  background: #e7ebf3;
  margin: 1.5rem 0;
}

.table.tickets-table th {
  border-top: none;
}

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

.gallery-card {
  background: linear-gradient(145deg, rgba(15, 108, 251, 0.08), rgba(255, 179, 71, 0.12));
  border: none;
  color: #0f172a;
  text-align: center;
}

.footer {
  background: #fff;
  border-top: 1px solid #e7ebf3;
}

/* Modern Button Styles */
.btn-primary {
  background: linear-gradient(135deg, #0f6cfb, #143fe6);
  border: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #143fe6, #0f6cfb);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(15, 108, 251, 0.3);
}

.btn-light:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

/* List Group Enhancements */
.list-group-item {
  border: none;
  border-bottom: 1px solid #e7ebf3;
  background: transparent;
  transition: all 0.3s ease;
}

.list-group-item:hover {
  background: rgba(15, 108, 251, 0.05);
  padding-left: 1rem;
}

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

@media (max-width: 768px) {
  .hero {
    padding: 2rem;
  }

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

  .hero-section {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #0f6cfb 0%, #7c3aed 100%) !important;
  color: white;
}