* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Arial", sans-serif;
  background: #0a0a0a;
  color: white;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #1a1a1a;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(45deg, #e326ff, #26b3e1);
  border-radius: 4px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 0.5rem 2rem;
  background: rgba(13, 13, 13, 0.261);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-size: 1.8rem;
  font-weight: bold;
  background: linear-gradient(45deg, #e326ff, #26b3e1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-img {
  height: 50px;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}
.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
}
.nav-links a::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(45deg, #e326ff, #26b3e1);
  transition: width 0.3s ease;
}
.nav-links a:hover::before,
.nav-links a.active::before {
  width: 100%;
}
.nav-links a:hover {
  color: #26b3e1;
  transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001;
}
.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: linear-gradient(45deg, #e326ff, #26b3e1);
  margin: 3px 0;
  transition: 0.3s;
  transform-origin: center;
}

/* Mobile menu animation when active */
.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation Menu */
.mobile-nav {
  position: fixed;
  top: 0;
  left: -100%;
  width: 90%;
  height: 100vh;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: left 0.3s ease;
  z-index: 999;
}

.mobile-nav.active {
  left: 0;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  list-style: none;
  gap: 2rem;
  text-align: center;
}

.mobile-nav-links a {
  color: white;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.mobile-nav.active .mobile-nav-links a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav-links a:nth-child(1) {
  transition-delay: 0.1s;
}
.mobile-nav-links a:nth-child(2) {
  transition-delay: 0.2s;
}
.mobile-nav-links a:nth-child(3) {
  transition-delay: 0.3s;
}
.mobile-nav-links a:nth-child(4) {
  transition-delay: 0.4s;
}

.mobile-nav-links a:hover {
  color: #26b3e1;
  transform: scale(1.1);
}

/* Hero */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      circle at 20% 80%,
      rgba(120, 119, 198, 0.3) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 107, 245, 0.3) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 40%,
      rgba(78, 205, 196, 0.2) 0%,
      transparent 50%
    );
  animation: backgroundPulse 8s ease-in-out infinite;
}
.hero-bg-2 {
  position: absolute;
  inset: 0;
  background: url("assets/home_bg.png") center/contain no-repeat;
  opacity: 0.6; /* make it blend */
  z-index: 0;
}
@keyframes backgroundPulse {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.1) rotate(5deg);
    opacity: 1;
  }
}
.dance-particles {
  position: absolute;
  width: 100%;
  height: 100%;
}
/* .particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: linear-gradient(45deg, #e326ff, #26b3e1);
  border-radius: 50%;
  animation: dance 6s linear infinite;
} */
.particle {
  position: absolute;
  width: 10px;
  height: 10px;
  background: linear-gradient(45deg, #e326ff, #26b3e1);
  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );
  animation: dance 1s linear infinite;
  opacity: 2;
}

@keyframes dance {
  0% {
    transform: translateY(100vh) translateX(0) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) translateX(100px) rotate(360deg);
    opacity: 0;
  }
}
/* .hero-content {
  text-align: center;
  z-index: 2;
  max-width: 800px;
  padding: 0 2rem;
} */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center; /* centers button + marquee */
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 2; /* stays above backgrounds */
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: bold;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #fff, #26b3e1, #e326ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleGlow 3s ease-in-out infinite alternate;
}
@keyframes titleGlow {
  from {
    filter: drop-shadow(0 0 20px rgba(78, 205, 196, 0.5));
  }
  to {
    filter: drop-shadow(0 0 30px rgba(255, 107, 107, 0.7));
  }
}
.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  animation: slideUp 1s ease 0.5s both;
}

.marquee {
  top: 24rem;
  position: relative;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  background: transparent;
  padding: 8px 0;
  margin-top: 15px; /* spacing below button */
  box-sizing: border-box;
}

.marquee span {
  display: inline-block;
  animation: marqueeScroll 35s linear infinite;
  font-size: 1.2rem;
  font-weight: bold;
  color: transparent;
  -webkit-text-stroke: 0.6px #ffffffdf;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(45deg, #e326ff, #26b3e1);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: slideUp 1s ease 1s both;
  top: 22rem;
}
.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}
.cta-button:hover::before {
  left: 100%;
}
.cta-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(227, 38, 255, 0.3);
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Sections */
.section {
  min-height: 100vh;
  padding: 5rem 2rem;
  position: relative;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
}
.section-title {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 3rem;
  background: linear-gradient(45deg, #e326ff, #26b3e1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}
.section-title.visible {
  opacity: 1;
  transform: translateY(0);
}

/* About */
#about {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}
.about-text {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease 0.2s;
}
.about-text.visible {
  opacity: 1;
  transform: translateX(0);
}
.about-text h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #26b3e1;
}
.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #ccc;
}
.about-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 400px;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease 0.4s;
}
.about-visual.visible {
  opacity: 1;
  transform: translateX(0);
}
.dance-silhouette {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #e326ff, #26b3e1, #45b7d1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Events */
#events {
  background: linear-gradient(135deg, #16213e 0%, #0a0a0a 100%);
}
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.event-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(50px) scale(0.9);
  position: relative;
  overflow: hidden;
}
.event-card.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.event-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(78, 205, 196, 0.5);
  box-shadow: 0 20px 40px rgba(78, 205, 196, 0.2);
}
.event-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #e326ff, #26b3e1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.event-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: drop-shadow(0 4px 16px #e326ff) drop-shadow(0 2px 8px #26b3e1);
}
.event-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #26b3e1;
}
.event-date {
  color: #e326ff;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

/* Register */
#register {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.register-content {
  text-align: center;
  max-width: 600px;
}
.register-form {
  background: rgba(255, 255, 255, 0.05);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  margin-top: 2rem;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}
.register-form.visible {
  opacity: 1;
  transform: translateY(0);
}
.form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #26b3e1;
  font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #26b3e1;
  box-shadow: 0 0 20px rgba(78, 205, 196, 0.2);
  transform: translateY(-2px);
}
.submit-btn {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(45deg, #e326ff, #26b3e1);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(227, 38, 255, 0.3);
}

/* Footer */
.footer {
  background: #0a0a0a;
  padding: 2rem;
  text-align: center;
  border-top: 1px solid rgba(227, 38, 255);
}

/* Scroll Progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #e326ff, #26b3e1);
  z-index: 1001;
  transition: width 0.1s ease;
}

.footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 1rem;
}

.footer a {
  color: #00aced;
  text-decoration: none;
}

/* Modal styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.modal-content {
  background: #fff;
  margin: 10% auto;
  padding: 20px;
  width: 80%;
  max-width: 600px;
  border-radius: 8px;
  position: relative;
  color: #333;
  max-height: 70vh; /* modal won’t exceed 70% of viewport height */
  overflow-y: auto;
}

.modal-content h2 {
  margin-top: 0;
  position: sticky;
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
}

.modal-content {
  background: #fff;
  margin: 5% auto;
  width: 80%;
  max-width: 600px;
  border-radius: 8px;
  position: relative;
  display: flex;
  flex-direction: column;
  max-height: 80vh; /* total modal height */
}

.modal-header,
.modal-footer {
  padding: 10px 20px;
  background: #f5f5f5;
  flex-shrink: 0; /* prevents shrinking */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-body {
  padding: 20px;
  overflow-y: auto;
  flex-grow: 1; /* takes up available space */
}

/* Responsive */
@media (max-width: 768px) {
  .logo-img {
    height: 40px;
  }
  .cta-button {
    top: 14rem;
    padding: 0.5rem 1.5rem;
  }
  .marquee {
    top: 16rem;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
    background-color: transparent;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-title {
    font-size: 3rem;
  }

  .section {
    padding: 3rem 1rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .register-form {
    padding: 2rem;
  }
}

.modal-content {
  background: #fff;
  margin: 5% auto;
  width: 80%;
  max-width: 700px;
  border-radius: 8px;
  position: relative;
  display: flex;
  flex-direction: column;
  max-height: 80vh;
}

.modal-header,
.modal-footer {
  padding: 10px 20px;
  background: #f5f5f5;
  flex-shrink: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-body {
  padding: 20px;
  overflow-y: auto;
  flex-grow: 1;
  line-height: 1.6;
}

.modal-body h3 {
  margin-top: 20px;
  padding-bottom: 6px;
  border-bottom: 1px solid #ddd;
  font-size: 1.1rem;
  color: #333;
}

.modal-body section {
  margin-bottom: 20px;
}

.modal-body ul {
  margin: 10px 0 10px 20px;
}

.modal-body p {
  margin: 10px 0;
}

.close {
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
  color: #333;
}

/* Base modal style */
.info-modal {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease;
}

.info-modal-content {
  padding: 25px 20px;
  width: 90%;
  height: 20%;
  max-width: 400px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  position: relative;
  animation: slideDown 0.3s ease;
  font-family: Arial, sans-serif;
}
.info-modal-content-loading {
  background-color: rgba(245, 245, 245, 0.125);
}
.info-modal-content-form {
  background: linear-gradient(45deg, #26b2e1be, #e226ff99);
}
/* Loading spinner */
.spinner {
  border: 6px solid #f3f3f3; /* Light grey */
  border-top: 6px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin: 15px auto;
  animation: spin 1s linear infinite;
}

/* Buttons */
.info-modal-content button {
  background-color: #3498db;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  margin-top: 15px;
  transition: background-color 0.2s ease;
}

.info-modal-content button:hover {
  background-color: #217dbb;
}

/* Animations */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideDown {
  from {
    transform: translateY(-30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.spinner {
  border: 6px solid #f3f3f3; /* Light grey */
  border-top: 6px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin: 15px auto;
  animation: spin 1s linear infinite;
}

/* Spinner animation */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.countries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.country-box {
  background-color: linear-gradient(45deg, #26b2e1be, #e226ff99);
  border: 2px solid #51baff;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease,
    color 0.2s ease;
  cursor: default;
}

.country-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(78, 205, 196, 0.2);
  background-color: linear-gradient(45deg, #e226ff99, #26b2e1be);
  border: 2px solid #dd00ffcb;
  color: white;
}

/* ========================================
   EVENTS TIMELINE SECTION
======================================== */

#events {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
  position: relative;
  overflow: hidden;
}

#events::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(255, 0, 150, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(0, 255, 255, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.section-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  margin-top: -1rem;
  margin-bottom: 3rem;
  font-weight: 300;
  letter-spacing: 0.5px;
}

/* Timeline Container */
.timeline {
  position: relative;
  max-width: 1000px;
  margin: 4rem auto;
  padding: 2rem 0;
}

/* Central Line */
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    #e326ff 10%,
    #26b3e1 50%,
    #e326ff 90%,
    transparent 100%
  );
  transform: translateX(-50%);
  box-shadow: 0 0 20px rgba(255, 0, 153, 0.5);
}

/* Timeline Items */
.timeline-item {
  position: relative;
  width: 50%;
  padding: 2rem 3rem;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

/* Alternate sides */
.timeline-item:nth-child(odd) {
  left: 0;
  padding-right: 4rem;
  animation-delay: 0.2s;
}

.timeline-item:nth-child(even) {
  left: 50%;
  padding-left: 4rem;
  animation-delay: 0.4s;
}

.timeline-item:nth-child(3) {
  animation-delay: 0.6s;
}

.timeline-item:nth-child(4) {
  animation-delay: 0.8s;
}

.timeline-item:nth-child(5) {
  animation-delay: 1s;
}

.timeline-item:nth-child(6) {
  animation-delay: 1.2s;
}

/* Timeline Marker (Circle) */
.timeline-marker {
  position: absolute;
  top: 2.5rem;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #e326ff, #26b3e1);
  border-radius: 50%;
  border: 4px solid #0a0a0a;
  box-shadow: 0 0 20px rgba(255, 0, 153, 0.8), 0 0 40px rgba(0, 255, 255, 0.4);
  z-index: 2;
  transition: all 0.3s ease;
}
.timeline-img {
  object-fit: cover;
}

.timeline-item:nth-child(odd) .timeline-marker {
  right: -10px;
}

.timeline-item:nth-child(even) .timeline-marker {
  left: -10px;
}

.timeline-marker::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* Timeline Content Card */
.timeline-content {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  transition: all 0.4s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Arrow pointer */
.timeline-content::before {
  content: "";
  position: absolute;
  top: 2rem;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px;
}

.timeline-item:nth-child(odd) .timeline-content::before {
  right: -24px;
  border-color: transparent transparent transparent rgba(255, 255, 255, 0.1);
}

.timeline-item:nth-child(even) .timeline-content::before {
  left: -24px;
  border-color: transparent rgba(255, 255, 255, 0.1) transparent transparent;
}

/* Hover Effects */
.timeline-item:hover .timeline-content {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 0, 153, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(255, 0, 153, 0.2),
    0 0 60px rgba(0, 255, 255, 0.1);
}

.timeline-item:hover .timeline-marker {
  transform: scale(1.3);
  box-shadow: 0 0 30px rgba(255, 0, 153, 1), 0 0 60px rgba(0, 255, 255, 0.6);
}

/* Timeline Date */
.timeline-date {
  display: inline-block;
  background: linear-gradient(135deg, #e326ff, #26b3e1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.timeline-content h3 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 1rem 0;
  letter-spacing: 0.5px;
}

.timeline-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

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

@keyframes pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0.5;
  }
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */

@media (max-width: 768px) {
  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    width: 100%;
    left: 0 !important;
    padding: 1.5rem 1.5rem 1.5rem 4rem !important;
  }

  .timeline-marker {
    left: 11px !important;
    right: auto !important;
  }

  .timeline-content::before {
    left: -24px !important;
    right: auto !important;
    border-color: transparent rgba(255, 255, 255, 0.1) transparent transparent !important;
  }

  .section-subtitle {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .timeline-content h3 {
    font-size: 1.3rem;
  }

  .timeline-content p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .timeline-item {
    padding: 1rem 1rem 1rem 3rem !important;
  }

  .timeline-content {
    padding: 1.5rem;
  }

  .timeline-content h3 {
    font-size: 1.2rem;
  }

  .timeline-date {
    font-size: 0.8rem;
  }
}

/* --- Announcement Modal: Premiere Style --- */
/* --- Fullscreen Centering Wrapper --- */

/* Existing styles below */
.announcement-card {
  top: 8rem;
  max-width: 450px;
  width: 100%;
  background: transparent;
  color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  text-align: center;
  border: 1px solid #d4af37; /* Gold border */
  position: relative;
  height: 60%;
}

.announcement-card .close-button {
  top: 5rem;
  position: absolute;
  top: 0px;
  right: 10px;
  background: none;
  border: none;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
}

.announcement-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.announcement-body {
  padding: 25px 30px;
}

.announcement-subtitle {
  color: #d4af37;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
}

.announcement-title {
  font-size: 2.8rem;
  font-weight: bold;
  margin: 5px 0;
  line-height: 1.1;
}

.announcement-star {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.announcement-details {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 25px;
}

.detail-tag {
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
}

.announcement-cta-text {
  margin-bottom: 15px;
  opacity: 0.8;
}

.cta-button-secondary {
  background-color: #d4af37;
  color: #111;
  border: none;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.cta-button-secondary:hover {
  background-color: #f7d468;
}

/* --- Mobile Responsive Styles --- */
@media (max-width: 600px) {
  .announcement-card {
    max-width: 80%;
    margin: 15px auto;
    top: 8rem;
    height: fit-content;
  }

  .announcement-body {
    padding: 20px 15px;
  }

  .announcement-title {
    font-size: 2rem;
  }

  .announcement-subtitle {
    font-size: 0.8rem;
  }

  .announcement-star {
    font-size: 1rem;
  }

  .detail-tag {
    font-size: 0.8rem;
    padding: 6px 12px;
  }

  .cta-button-secondary {
    width: 100%;
    padding: 12px;
    font-size: 0.95rem;
  }

  .announcement-image img {
    height: 150px;
  }

  .announcement-details {
    flex-direction: column;
    align-items: center;
  }

  .announcement-card .close-button {
    font-size: 2rem;
    top: 8px;
    right: 10px;
  }
}
