body {
  font-family: 'Segoe UI', sans-serif;
  background: #f0f0f5;
  margin: 0;
  padding: 20px;
}

.container {
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

/* Stylish H1 */
.main-heading {
  font-size: 28px;
  font-weight: 700;
  color: #2c3e50;
  text-shadow: 1px 1px 2px #aaa;
  margin-bottom: 30px;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.ticket-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  width: 260px;
  transition: transform 0.2s ease;
  overflow: hidden;
  padding-bottom: 12px;
}
.ticket-card {
  position: relative;
  overflow: hidden;
  /* existing styles stay as is */
}

/* Shiny effect overlay */
.ticket-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(222, 247, 4, 0.2) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(229, 244, 9, 0.2) 100%
  );
  transform: skewX(-25deg);
}

/* Animate shine on hover */
.ticket-card:hover::before {
  animation: shine 1s ease-out forwards;
}

@keyframes shine {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}

.image-wrapper {
  position: relative;
}

.ticket-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  display: block;
}

.fullscreen-icon {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 6px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.2s ease;
}

.fullscreen-icon:hover {
  background: rgba(0, 0, 0, 0.8);
}

.ticket-card h2 {
  font-size: 16px;
  margin: 10px 10px 4px;
  color: #007bff;
}

.ticket-card p {
  font-size: 13px;
  color: #555;
  margin: 4px 10px;
}

.ticket-card .location {
  font-size: 12px;
  margin: 2px 10px 6px;
  color: #444;
}

.price {
  font-size: 15px;
  font-weight: bold;
  color: #28a745;
  margin: 6px 10px;
}

.btn {
  display: inline-block;
  margin: 8px 10px 0;
  padding: 8px 16px;
  font-size: 14px;
  background: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.2s ease;
}

.btn:hover {
  background: #0056b3;
}

/* Fullscreen Image Overlay */
#fullscreenOverlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  z-index: 999;
}

#fullscreenOverlay img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
}
/* ✅ HEADER */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 55px;
  background: #fff;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1100;
  padding: 0 15px;
  border-bottom: 1px solid #ddd;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.header-logo img {
  height: 35px;
  display: block;
}

/* ✅ Shop Exclusive Button */
.exclusive-btn {
  background: linear-gradient(90deg, #ff6a00, #ff9800);
  color: #fff;
  padding: 6px 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px 0 0 30px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.15);
  animation: slideIn 1.8s ease forwards;
  opacity: 0;
}

.exclusive-btn:hover {
  background: linear-gradient(90deg, #ff9800, #ff6a00);
  transform: scale(1.05);
  transition: 0.3s ease;
}

@keyframes slideIn {
  0% { transform: translateX(120%); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

/* ✅ Countdown Banner (Matches Home Page) */
.countdown-banner {
  position: fixed;
  top: 55px;
  left: 0;
  width: 100%;
  background: linear-gradient(90deg, #28a745, #32cd32);
  color: white;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  padding: 8px 10px;
  z-index: 1050;
  border-bottom: 1px solid #1e7d32;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.countdown-content {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.countdown-icon {
  font-size: 18px;
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%,100% { opacity: 1; }
  50% { opacity: 0.6; }
}
/* ================================
   AFFILIATE FOOTER
=================================== */
.affiliate-footer {
  margin-top: 50px;
  padding: 20px 10px;
  background: #f5f5f5;
  text-align: center;
  border-top: 1px solid #ddd;
}

.affiliate-footer p {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.affiliate-slider {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  justify-content: center;
  padding: 10px;
  scroll-behavior: smooth;
}

.affiliate-slider::-webkit-scrollbar {
  display: none;
}

.affiliate-slider img {
  height: 36px;
  transition: transform 0.3s ease;
  filter: grayscale(0.2);
}

.affiliate-slider img:hover {
  transform: scale(1.1);
  filter: none;
}