
body {
  background:
    radial-gradient(ellipse at bottom, rgba(0, 0, 40, 0.9), #000 70%),
    #000;
  color: var(--color-text);
  font-family: var(--font-body);
}

.header{
  box-shadow: 0 22px 46px rgba(0,0,0,0.8);
}

/* Ticket Sales Section*/
.ticket-sales {
  padding: 12rem 1.25rem;
  background: linear-gradient(
    130deg,
    #171b4d 30%,
    #ff2600b6 100%
  );
  color: white;
  border-radius: 0px 0px 25px 25px;
  max-width: 100%;
  margin: 0 auto 2.5rem;
}

.page-title {
  font-family: var(--font-body);
  font-size: 3rem;
  text-align: center;
  color: white;
  margin-bottom: 2.5rem;
}

.section-title {
  font-family: var(--font-body);
  font-size: 2rem;
  text-align: center;
  color: white;
  margin-bottom: 1.5rem;
}

/* Card grid */
.ticket-sales-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* Card */
.ticket-sales-card {
  background: rgba(255,255,255,0.08);
  padding: 1.5rem;
  border-radius: 14px;
  color: #fff;
  text-align: center;
  box-shadow: 0 10px 30px rgba(2,8,28,0.45);
  backdrop-filter: blur(6px);
  transition: transform 0.28s ease;
}

.ticket-sales-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 42px rgba(2,8,28,0.75);
}

.ticket-sales-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
  font-family: var(--font-body);
}

.sales-time {
  font-size: 1rem;
  opacity: 0.9;
}

/*  Schedule Movie Grid Section */
.sched-movie-section {
  padding: 2.8rem 1rem;
  color: var(--color-text);
  max-width: 1200px;
  margin: 0 auto;
}

.sched-section-title {
  text-align: center;
  font-family: var(--font-body);
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 2.2rem;
  text-shadow: 0 0 14px rgba(0,160,255,0.45);
}

.sched-section-title span {
  display: block;
  font-size: 1rem;
  color: #fff;
}

/* Grid */
.sched-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

/* SCHEDULE MOVIE CARD */
.sched-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 420px;
  background: #000;
  box-shadow: 0 14px 40px rgba(1,3,10,0.6);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.sched-card:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 55px rgba(2,8,28,0.7);
}

.sched-poster {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.sched-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sched-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 25%,
    rgba(0,0,0,0.65) 70%,
    rgba(0,0,10,0.92) 100%
  );
}

/* Content */
.sched-content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 1.2rem;
  width: 100%;
  color: #fff;
  z-index: 3;
  text-align: center;
}

/* Title */
.sched-title {
  font-family: var(--font-title);
  font-size: 1.35rem;
  margin-bottom: 0.7rem;
  color: white;
  text-shadow: 0 2px 6px rgba(0,0,0,0.7);
}

/* Day/time listing */
.sched-days {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sched-days li {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(6px);
  padding: 0.55rem 0.8rem;
  border-radius: 10px;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #fff;
}

.sched-days li:last-child {
  margin-bottom: 0;
}

.sched-card {
  position: relative;
  --neon-light-x: -120%;
  box-shadow: 0 8px 22px rgba(0,170,255,0.9);
}

.sched-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 0%,
    rgba(0,170,255,0.5) 50%,
    transparent 100%
  );
  transform: translateX(var(--neon-light-x));
  mix-blend-mode: screen;
  pointer-events: none;
  opacity: 1;
}

@media (max-width: 500px) {
  .sched-section-title {
    font-size: 1.7rem;
  }
  .sched-poster img {
    height: 300px;
  }
  .ticket-sales-card h3,
  .section-title {
    font-size: 1.25rem;
  }
}


.sched-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 2rem;
}

@media (max-width: 768px) {
  .sched-grid {
    display: flex;                  
    overflow-x: auto;               
    overflow-y: hidden;
    gap: 1.2rem;
    padding: 0.8rem 0.4rem;
    scroll-snap-type: x mandatory;   
    -webkit-overflow-scrolling: touch;
  }

  .sched-grid::-webkit-scrollbar {
    display: none;                   
  }

  .sched-card {
    flex: 0 0 72%;                  
    max-width: 72%;
    scroll-snap-align: start;
    border-radius: 20px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.35);                  
  }

  .sched-card:hover {
    transform: none;                 
    box-shadow: none;
  }

  .sched-poster img {                
    object-fit: cover;
  }
}

@media (max-width: 480px) {
  .sched-card {
    flex: 0 0 85%;                   
    max-width: 85%;
  }

}


.sales-price {
  font-size: 0.95rem;
  margin-top: 0.6rem;
  color: #ffd700; 
  font-weight: 600;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}


.fa-calendar-days,
.icon-calendar,
.fa-ticket-simple,
.icon-ticket {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.3rem;
  height: 2.3rem;
  font-size: 1.15rem;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255,255,255,0.02), rgba(0,0,0,0.03));
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
  vertical-align: middle;
  overflow: visible;
  transform: none;
  filter: none;
}

.fa-calendar-days,
.icon-calendar {
  color: #00c4ff;
  background: linear-gradient(135deg, rgba(0,196,255,0.06), rgba(0,160,255,0.03));
  box-shadow: 0 8px 20px rgba(0,160,255,0.10);
}


.fa-ticket-simple,
.icon-ticket {
  color: #ffd660;
  background: linear-gradient(135deg, rgba(255,214,96,0.06), rgba(255,140,0,0.03));
  box-shadow: 0 8px 20px rgba(255,150,30,0.08);
}

.sched-title .fa-calendar-days,
.sched-title .icon-calendar,
.sched-title .fa-ticket-simple,
.sched-title .icon-ticket {
  margin-right: 0.6rem;
  font-size: 1.2rem;
  text-shadow: none;
}


.calendar-badge,
.ticket-badge {
  display: inline-flex;
  min-width: 1.6rem;
  height: 1.6rem;
  padding: 0 0.4rem;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #00c4ff, #0077b3);
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 8px 20px rgba(0,160,255,0.18);
  margin-left: 0.5rem;
}

.ticket-badge {
  background: linear-gradient(180deg, #ff7a18, #d93b00);
  box-shadow: 0 8px 20px rgba(255,120,40,0.12);
  font-size: 0.75rem;
}
