/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  overflow-x: hidden;
  background: #05070f;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #ffffff;
}

/* SCROLL PROGRESS */
#scrollProgress {
  position: fixed;
  right: 8px;
  top: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, #4cc9f0, #9bbcff);
  z-index: 4000;
  border-radius: 4px;
}

/* NAVBAR */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 3000;
  padding-top: env(safe-area-inset-top);
}

.nav-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 16px;
}

/* MINIMAL MENU */
.nav-menu {
  display: flex;
  gap: 22px;
  padding: 8px 18px;
  border-radius: 30px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
}

.nav-menu a {
  color: #cfd6ff;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.4px;
  position: relative;
}

/* subtle underline on hover */
.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #4cc9f0;
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}


/* HERO */
.hero {
  padding: 140px 20px 50px;
  background: radial-gradient(circle at top, #0b1220 0%, #05070f 65%);
}

.hero-inner {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 3px;
  color: #4cc9f0;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(3.4rem, 8vw, 5.8rem);
  font-weight: 800;
  line-height: 1.05;
}

.hero-title span {
  color: #4cc9f0;
}

.hero-sub {
  margin-top: 18px;
  font-size: 16px;
  color: #b9c2ff;
}

.hero-divider {
  width: 90px;
  height: 3px;
  background: linear-gradient(90deg, #4cc9f0, transparent);
  margin: 36px auto;
}

.hero-desc {
  max-width: 620px;
  margin: auto;
  font-size: 15px;
  color: #d3d8ff;
  line-height: 1.7;
}

  .nav-toggle {
    display: block;
  }

  .hero {
    padding: 120px 18px 80px;
  }

  .hero-title {
    font-size: 3.6rem;
  }
  
 /* ================= IMPORTANT TDAC ANNOUNCEMENT ================= */

.tdac-announcement {
  width: 100%;
  background: linear-gradient(90deg, #7a0f0f, #111827, #7a0f0f);
  border-top: 1px solid rgba(255, 220, 120, 0.35);
  border-bottom: 1px solid rgba(255, 220, 120, 0.35);
  padding: 14px 0;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  position: relative;
  z-index: 5;
}

.tdac-announcement::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 215, 120, 0.16), transparent 55%);
  pointer-events: none;
}

.tdac-announcement-inner {
  width: min(1180px, 94%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 2;
}

.tdac-label {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffd166;
  color: #1a1a1a;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  white-space: nowrap;
  animation: tdacPulse 1.8s infinite;
}

.tdac-label i {
  color: #8b0000;
  font-size: 15px;
}

.tdac-marquee {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
}

.tdac-track {
  display: inline-flex;
  gap: 70px;
  animation: tdacMarquee 32s linear infinite;
}

.tdac-track span {
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.2px;
}

.tdac-register-btn {
  flex: 0 0 auto;
  background: #ffffff;
  color: #7a0f0f;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(255, 255, 255, 0.18);
  transition: all 0.25s ease;
  white-space: nowrap;
}

.tdac-register-btn:hover {
  transform: translateY(-2px);
  background: #ffd166;
  color: #111827;
}

@keyframes tdacMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes tdacPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 209, 102, 0.55);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 209, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 209, 102, 0);
  }
}

@media (max-width: 768px) {
  .tdac-announcement-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .tdac-label {
    justify-content: center;
    width: 100%;
    border-radius: 14px;
  }

  .tdac-track span {
    font-size: 14px;
  }

  .tdac-register-btn {
    width: 100%;
    text-align: center;
    border-radius: 14px;
  }
}
  



/* ================================
   EVENT ROADMAP – PREMIUM STYLING
================================ */

.roadmap {
  padding: 140px 50px;
  background: linear-gradient(
    to bottom,
    #05070f 0%,
    #070b18 60%,
    #05070f 100%
  );
}

.roadmap-inner {
  max-width: 1000px;
  margin: auto;
}

/* TITLE */
.roadmap-title {
  text-align: center;
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  font-weight: 700;
}

.roadmap-intro {
  text-align: center;
  max-width: 720px;
  margin: 14px auto 0;
  font-size: 15px;
  color: #b9c2ff;
  line-height: 1.6;
}

/* STEP CONTAINER */
.roadmap-step {
  margin-top: 90px;
  padding-left: 30px;
  border-left: 2px solid rgba(76, 201, 240, 0.25);
  position: relative;
}

/* STEP DOT */
.roadmap-step::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 10px;
  width: 14px;
  height: 14px;
  background: #4cc9f0;
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(76, 201, 240, 0.6);
}

/* HEADER */
.step-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.step-day {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #4cc9f0;
}

.step-header h3 {
  font-size: 1.35rem;
  font-weight: 600;
}

.step-date {
  font-size: 13px;
  color: #9bbcff;
  margin-left: auto;
}

/* BODY */
.step-body p {
  font-size: 15px;
  color: #d3d8ff;
  line-height: 1.7;
  margin-bottom: 14px;
}

/* IMPORTANT NOTE */
.important-note {
  background: rgba(76, 201, 240, 0.08);
  border-left: 3px solid #4cc9f0;
  padding: 12px 14px;
  font-size: 14px;
  color: #e4e9ff;
  margin: 18px 0;
}

/* HELPFUL BOX */
.help-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 18px;
  margin: 22px 0;
}

.help-box h4 {
  font-size: 14px;
  margin-bottom: 10px;
  color: #4cc9f0;
}

.help-box ul {
  padding-left: 18px;
}

.help-box li {
  font-size: 14px;
  color: #cfd6ff;
  margin-bottom: 8px;
}

/* TIMELINE POINTS */
.timeline-points {
  margin: 16px 0 20px;
  padding-left: 20px;
}

.timeline-points li {
  font-size: 14px;
  color: #cfd6ff;
  margin-bottom: 6px;
}

/* GLIMPSE SECTION */
.glimpse-box {
  margin-top: 30px;
}

.glimpse-box h4 {
  font-size: 14px;
  margin-bottom: 12px;
  color: #9bbcff;
}

.glimpse-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.glimpse-grid img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
}

/* MAP */
.map-box {
  margin-top: 26px;
}

.map-box h4 {
  font-size: 14px;
  margin-bottom: 10px;
  color: #9bbcff;
}

.map-placeholder {
  height: 220px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(76, 201, 240, 0.12),
    rgba(255, 255, 255, 0.04)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #e6ebff;
  border: 1px dashed rgba(255,255,255,0.2);
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
  .roadmap {
    padding: 100px 40px;
  }

  .roadmap-step {
    padding-left: 20px;
  }

  .step-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .step-date {
    margin-left: 0;
  }

  .glimpse-grid {
    grid-template-columns: 1fr;
  }

  .glimpse-grid img {
    height: 200px;
  }
}

/* ================================
   CONTACT & SUPPORT – STYLING
================================ */

.support {
  padding: 140px 20px;
  background: linear-gradient(
    to bottom,
    #05070f 0%,
    #070b18 60%,
    #05070f 100%
  );
}

.support-inner {
  max-width: 1100px;
  margin: auto;
}

.support-title {
  text-align: center;
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  font-weight: 700;
}

.support-intro {
  text-align: center;
  max-width: 720px;
  margin: 14px auto 70px;
  font-size: 15px;
  color: #b9c2ff;
  line-height: 1.6;
}

/* GRID */
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

/* CARD */
.support-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 26px 22px 30px;
  text-align: center;
  backdrop-filter: blur(10px);

  opacity: 0;
  transform: translateY(24px);
  transition: all 0.6s ease;
}

.support-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.support-card img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(76, 201, 240, 0.6);
  margin-bottom: 14px;
}

.support-card h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.support-card .role {
  font-size: 13px;
  color: #9bbcff;
  margin-bottom: 14px;
}

.contact-link {
  display: inline-block;
  font-size: 14px;
  color: #4cc9f0;
  text-decoration: none;
  border: 1px solid rgba(76, 201, 240, 0.4);
  padding: 8px 18px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.contact-link:hover {
  background: rgba(76, 201, 240, 0.15);
}

/* ================================
   MOBILE OPTIMIZATION
================================ */

@media (max-width: 900px) {
  .support-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .support {
    padding: 100px 40px;
  }

  .support-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .support-card {
    padding: 24px 20px 28px;
  }

  .support-card img {
    width: 88px;
    height: 88px;
  }

  .contact-link {
    font-size: 15px;
    padding: 10px 22px;
  }
}

/* ================================
   FOOTER
================================ */

.site-footer {
  background: #05070f;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 50px 20px 30px;
}

.footer-inner {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
}

.footer-brand img {
  height: 46px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  color: #b9c2ff;
  line-height: 1.6;
  max-width: 360px;
}

.footer-links h4,
.footer-info h4 {
  font-size: 14px;
  margin-bottom: 12px;
  color: #ffffff;
}

.footer-links a {
  display: block;
  font-size: 14px;
  color: #9bbcff;
  text-decoration: none;
  margin-bottom: 8px;
}

.footer-links a:hover {
  color: #4cc9f0;
}

.footer-info p {
  font-size: 14px;
  color: #9bbcff;
  margin-bottom: 14px;
  line-height: 1.5;
}

/* FOOTER BOTTOM */
.footer-bottom {
  text-align: center;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom p {
  font-size: 13px;
  color: #9bbcff;
}

/* MOBILE FOOTER */
@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .footer-brand p {
    margin: auto;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    gap: 16px;
    padding: 6px 14px;
  }

  .nav-menu a {
    font-size: 12px;
  }
}

/* ================================
   HERO ENHANCEMENT (CTA + MOTION)
================================ */

.hero {
  position: relative;
  overflow: hidden;
}

/* soft animated glow */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 20%,
    rgba(76,201,240,0.18),
    transparent 60%
  );
  animation: heroGlow 6s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes heroGlow {
  from { opacity: 0.6; }
  to { opacity: 1; }
}

/* CTA buttons */
.hero-actions {
  margin-top: 36px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-btn {
  font-size: 14px;
  padding: 12px 26px;
  border-radius: 28px;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* primary */
.hero-btn.primary {
  background: #4cc9f0;
  color: #05070f;
  font-weight: 600;
}

.hero-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(76,201,240,0.35);
}

/* ghost */
.hero-btn.ghost {
  border: 1px solid rgba(255,255,255,0.25);
  color: #ffffff;
}

.hero-btn.ghost:hover {
  background: rgba(255,255,255,0.08);
}

/* mobile polish */
@media (max-width: 768px) {
  .hero-actions {
    margin-top: 28px;
  }

  .hero-btn {
    font-size: 13px;
    padding: 11px 22px;
  }
}

/* ================================
   SOCIAL MEDIA SIDEBAR (GOOGLE ICONS)
================================ */

.social-sidebar {
  position: fixed;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 2000;
}

.social-sidebar a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cfd6ff;
  text-decoration: none;
  transition: all 0.25s ease;
}

.social-sidebar a i {
  font-size: 18px;
}


.social-sidebar a:hover {
  background: rgba(76,201,240,0.25);
  color: #4cc9f0;
  transform: translateX(4px);
}

/* hide on very small screens */
@media (max-width: 520px) {
  .social-sidebar {
    display: none;
  }
}

/* ================================
   HERO ENHANCEMENT
================================ */

.hero {
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 20%,
    rgba(76,201,240,0.18),
    transparent 60%
  );
  animation: heroGlow 6s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes heroGlow {
  from { opacity: 0.6; }
  to { opacity: 1; }
}

/* Scroll hint */
.hero::after {
  content: "Scroll ↓";
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  letter-spacing: 2px;
  color: #9bbcff;
  opacity: 0.7;
}

/* ================================
   FOOTER SOCIAL ICONS
================================ */

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 20px;
margin-bottom: 20px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cfd6ff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social a i {
  font-size: 16px;
}

.footer-social a:hover {
  background: rgba(76,201,240,0.25);
  color: #4cc9f0;
  transform: translateY(-2px);
}

/* CENTER ON MOBILE */
@media (max-width: 768px) {
  .footer-social {
    justify-content: center;
  }
}

/* ================================
   NEWS & GLIMPSES PAGE
================================ */

.news-header {
  padding: 140px 20px 70px;
  text-align: center;
}

.news-header-inner {
  max-width: 820px;
  margin: auto;
}

.news-header h1 {
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  margin-bottom: 14px;
}

.news-header p {
  color: #b9c2ff;
  font-size: 15px;
}

/* FILTERS */
.news-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 30px 20px 50px;
}

.filter-btn {
  background: rgba(255,255,255,0.08);
  border: none;
  color: #ffffff;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 13px;
  cursor: pointer;
}

.filter-btn.active {
  background: #4cc9f0;
  color: #05070f;
}

/* FEED */
.news-feed {
  max-width: 900px;
  margin: auto;
  padding: 0 20px 80px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.news-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 22px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.news-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.news-badge {
  font-size: 11px;
  color: #4cc9f0;
  font-weight: 600;
}

.news-date {
  display: block;
  font-size: 12px;
  color: #9bbcff;
  margin: 6px 0 12px;
}

.news-gallery {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap:10px;
}

.news-gallery img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

/* BACK BUTTON */
.back-to-event {
  text-align: center;
  margin-bottom: 80px;
}

.back-to-event a {
  color: #4cc9f0;
  text-decoration: none;
  font-size: 14px;
}
/* WHATSAPP MEDIA SUBMIT BOX */

.media-submit{
    padding:70px 20px;
    background:#0f172a;
    text-align:center;
    margin-bottom:60px; /* Added space below the box before footer */
}

.media-submit-inner{
    max-width:750px;
    margin:auto;
}

.media-submit h2{
    color:#ffffff;
    font-size:30px;
    margin-bottom:15px;
}

.media-text{
    color:#cbd5e1;
    font-size:17px;
    margin-bottom:30px;
    line-height:1.6;
}

.whatsapp-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#25D366;
    color:#fff;
    padding:20px 40px; /* Increased padding for a bigger button */
    border-radius:10px;
    text-decoration:none;
    font-weight:600;
    font-size:17px;
    transition:0.3s;
}

.whatsapp-btn:hover{
    background:#1ebe5d;
    transform:translateY(-2px);
}


.event-days-section {
  padding: 90px 20px;
  background:
    radial-gradient(circle at top center, rgba(0, 153, 255, 0.22), transparent 34%),
    linear-gradient(180deg, #080d18 0%, #050811 100%);
  color: #ffffff;
  overflow: hidden;
}

.event-days-header {
  max-width: 920px;
  margin: 0 auto 38px;
  text-align: center;
}

.event-days-header .eyebrow {
  color: #25caff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-days-header h2 {
  margin-top: 14px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.12;
  color: #ffffff;
}

.event-days-header p {
  max-width: 720px;
  margin: 14px auto 0;
  color: #aab6d8;
  font-size: 17px;
  line-height: 1.7;
}

.day-tabs {
  max-width: 1180px;
  margin: 0 auto 38px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  padding: 12px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(0, 200, 255, 0.16);
  backdrop-filter: blur(18px);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.35);
}

.day-tab {
  min-height: 84px;
  border: 0;
  border-radius: 22px;
  cursor: pointer;
  text-align: left;
  padding: 17px 18px;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
}

.day-tab::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(0, 200, 255, 0.28), transparent 45%);
  opacity: 0;
  transition: 0.3s ease;
}

.day-tab span,
.day-tab small {
  position: relative;
  z-index: 1;
}

.day-tab span {
  display: block;
  font-size: 20px;
  font-weight: 900;
}

.day-tab small {
  display: block;
  margin-top: 7px;
  font-size: 12px;
  color: #a7b4d6;
}

.day-tab:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 200, 255, 0.35);
}

.day-tab:hover::before {
  opacity: 1;
}

.day-tab.active {
  background: linear-gradient(135deg, #006dff, #00c8ff);
  box-shadow:
    0 18px 55px rgba(0, 140, 255, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transform: translateY(-5px);
}

.day-tab.active small {
  color: rgba(255, 255, 255, 0.88);
}

.slider-shell {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
}

.day-slider {
  display: none;
  gap: 30px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 22px 8px 34px;
}

.day-slider.active {
  display: flex;
}

.day-slider::-webkit-scrollbar {
  height: 8px;
}

.day-slider::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 99px;
}

.day-slider::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #007bff, #00d5ff);
  border-radius: 99px;
}

.poster-card {
  min-width: 450px;
  max-width: 450px;
  height: 560px;
  scroll-snap-align: start;
  border-radius: 30px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.poster-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(0, 210, 255, 0.55);
  box-shadow:
    0 34px 95px rgba(0, 120, 255, 0.24),
    0 20px 70px rgba(0, 0, 0, 0.5);
}

.poster-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #070b14;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(8, 13, 28, 0.88);
  color: #ffffff;
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
  transition: 0.25s ease;
}

.slider-arrow:hover {
  background: #008cff;
  border-color: rgba(255, 255, 255, 0.35);
}

.slider-arrow.prev {
  left: -22px;
}

.slider-arrow.next {
  right: -22px;
}

@media (max-width: 1100px) {
  .poster-card {
    min-width: 410px;
    max-width: 410px;
    height: 520px;
  }
}

@media (max-width: 900px) {
  .event-days-section {
    padding: 70px 16px;
  }

  .day-tabs {
    display: flex;
    overflow-x: auto;
    border-radius: 24px;
  }

  .day-tab {
    min-width: 190px;
  }

  .poster-card {
    min-width: 82vw;
    max-width: 82vw;
    height: 520px;
  }

  .slider-arrow {
    display: none;
  }
}

@media (max-width: 520px) {
  .event-days-header p {
    font-size: 15px;
  }

  .poster-card {
    min-width: 86vw;
    max-width: 86vw;
    height: 440px;
    border-radius: 24px;
  }
}