<style>
    :root {
      --bg: #020617;
      --card: rgba(15, 23, 42, 0.9);
      --accent: #38bdf8;
      --accent2: #a855f7;
      --text: #e5e7eb;
      --muted: #94a3b8;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }

    body {
      font-family: "Segoe UI", system-ui, sans-serif;
      background: radial-gradient(circle at top, rgba(56,189,248,0.15), transparent 40%), var(--bg);
      color: var(--text);
      line-height: 1.6;
    }

    header {
      padding: 4rem 1rem 3rem;
      text-align: center;
    }

    header h1 {
      font-size: 3rem;
      background: linear-gradient(90deg, var(--accent), var(--accent2));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    header p {
      margin-top: 0.8rem;
      color: var(--muted);
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  background: radial-gradient(circle at top, #0f172a, #020617);
  color: #e5e7eb;
}

/* ================= NAVBAR ================= */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.2rem 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(2,6,23,0.85);
  backdrop-filter: blur(12px);
  z-index: 100;
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
}

.logo span {
  background: linear-gradient(90deg, #22d3ee, #38bdf8, #8b5cf6, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ================= ROOT (AURA COLORS) ================= */
:root {
  --aura-gradient: linear-gradient(90deg, #38BDF8, #6366F1, #A855F7);
  --nav-text: #e5e7eb;
  --nav-active: #38BDF8;
  --nav-hover: #60a5fa;
  --nav-bg-mobile: rgba(2, 6, 23, 0.97);
}

/* ================= NAV LINKS ================= */
.nav-links {
  display: flex;
}

.nav-links a {
  position: relative;
  margin-left: 2rem;
  text-decoration: none;
  color: var(--nav-text);
  font-weight: 500;
  padding-bottom: 6px;
  transition: color 0.3s ease;
}

/* hover */
.nav-links a:hover {
  color: var(--nav-hover);
}

/* ================= ACTIVE LINK ================= */
.nav-links a.active {
  color: var(--nav-active);
  font-weight: 600;
}

/* gradient underline only */
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 3px;
  border-radius: 6px;
  background: var(--aura-gradient);
  box-shadow: 0 0 10px rgba(99, 102, 241, 0.6);
}

/* ================= HAMBURGER ================= */
#menu-toggle {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  width: 26px;
  background: #e5e7eb;
  margin: 4px 0;
  border-radius: 4px;
  transition: 0.3s;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--nav-bg-mobile);
    flex-direction: column;
    align-items: center;
    display: none;
    padding: 1rem 0;
  }

  .nav-links a {
    margin: 1rem 0;
    font-size: 1.1rem;
  }

  /* centered underline on mobile */
  .nav-links a.active::after {
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
  }

  #menu-toggle:checked ~ .nav-links {
    display: flex;
  }

  #menu-toggle:checked + .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  #menu-toggle:checked + .hamburger span:nth-child(2) {
    opacity: 0;
  }

  #menu-toggle:checked + .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}

/* Events */
/* ================= EVENTS TITLE ================= */
.events-title {
  text-align: center;
  padding: 6rem 1rem 1.5rem;
}

.events-title h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #38bdf8; /* cyan */
}


.events-title p {
  color: #94a3b8;
  margin-top: 0.8rem;
}
.day-heading {
  text-align: center;
  margin: 30px 0 20px;
}

.day-heading span {
  display: inline-block;
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;

  background: linear-gradient(90deg, #ff4ecd, #7f5cff, #4cc9f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  animation: slideGlow 1.2s ease-out forwards;
}
.wave-text {
  display: inline-block;
}

.wave-text span {
  display: inline-block;
  animation: waveLTR 0.8s ease forwards;
  opacity: 0;
}

@keyframes waveLTR {
  0% {
    opacity: 0;
    transform: translateX(-20px) translateY(10px);
  }
  60% {
    opacity: 1;
    transform: translateX(0) translateY(-6px);
  }
  100% {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }
}

/* Animation */
@keyframes slideGlow {
  0% {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(4px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* ================= EVENTS GRID ================= */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  max-width: 1200px;
  gap: 2rem;
  padding: 3rem 6%;
  justify-items: center;
   margin: 0 auto;
}

/* ================= EVENT CARD ================= */
.event-card {
  width: 100%;
  max-width: 320px; 
  border-radius: 20px;
  
  padding: 2rem;
  border: 1px solid transparent;
  background:
    linear-gradient(135deg, #020617, #0f172a) padding-box,
    linear-gradient(315deg, #38bdf8) border-box;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;      /* horizontal center */
  justify-content: center;  /* vertical center */
  text-align: center;
background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  overflow: hidden;
  transition: transform 0.3s ease, border 0.3s ease;
}


.event-card:hover,
.event-card:active,
.event-card.touch-active {
  border: 2.5px solid transparent;
  background:
    linear-gradient(135deg, #020617, #0f172a) padding-box,
    linear-gradient(315deg, #ec4899, #8b5cf6, #38bdf8, #22d3ee) border-box;
  transform: translateY(-6px);
  animation: border-rotate 2.5s linear infinite;
}

/* ================= EVENT CARD ACTIVE STATES ================= */
.event-card:hover,
.event-card:active,
.event-card.touch-active {
  border: 2.5px solid transparent;
  background:
    linear-gradient(135deg, #020617, #0f172a) padding-box,
    linear-gradient(315deg, #ec4899, #8b5cf6, #38bdf8, #22d3ee) border-box;
  transform: translateY(-6px);
  animation: border-rotate 2.5s linear infinite;
}

/* ================= EVENT BUTTON ================= */
.event-card:hover .event-btn,
.event-card:active .event-btn,
.event-card.touch-active .event-btn {
  border: 2.5px solid transparent;
  background:
    linear-gradient(315deg, #22d3ee, #38bdf8, #8b5cf6, #ec4899) padding-box,
    linear-gradient(135deg, #ec4899, #8b5cf6, #38bdf8, #22d3ee) border-box;
  color: #020617;
}

/* ================= ICON + TITLE GRADIENT ================= */
.event-card:hover .event-icon i,
.event-card:active .event-icon i,
.event-card.touch-active .event-icon i,
.event-card:hover h3,
.event-card:active h3,
.event-card.touch-active h3 {
  background: linear-gradient(135deg, #ec4899, #8b5cf6, #38bdf8, #22d3ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}


.event-card-link {
  position: absolute;
  inset: 0;              /* top:0 right:0 bottom:0 left:0 */
  text-decoration: none;
  color: inherit;
  z-index: 1;
}

/* keep content above the link */
.event-card > * {
  position: relative;
  z-index: 2;
}

.event-card {
  cursor: pointer;
}

/* Icon */
.event-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 1.4rem;

  background:  #1e3a8a; /* dark blue / navy */
  color: #ffffff;
  font-size: 1.4rem;
}

/* Title */
.event-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #e5e7eb;
transition: background 0.5s ease, color 0.5s ease;
}

/* Subtitle */
.event-card p {
  margin-top: 0.4rem;
  color: #94a3b8;
  font-size: 0.95rem;
}
.event-prize {
  margin: 8px 0 14px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.4px;

  color: #fde68a; /* soft premium gold */

  font-family: 'Inter', 'Poppins', system-ui, -apple-system, sans-serif;
}

.event-prize span {
  background: linear-gradient(
    90deg,
    #fde047,  /* warm gold */
    #f472b6,  /* rose */
    #60a5fa   /* sky blue */
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


/* Button */
.event-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.6rem;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  font-size: 0.95rem;
  text-decoration: none;
  color: #e5e7eb;

  border: 1px solid transparent;
  background:
    linear-gradient(
      180deg,
      rgba(15, 23, 42, 0.9),
      rgba(2, 6, 23, 0.95)
    ) padding-box,
    linear-gradient(135deg, #38bdf8, #8b5cf6) border-box;

  backdrop-filter: blur(6px);
  transition: all 0.35s ease;
}

.other-events-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;   /* gap from left & right edges */
}

.other-events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-items: center;
  margin-bottom: 60px;
}

/* Reuse event-card styling */
.other-card {
  width: 100%;
  max-width: 320px;
}

/* Button spacing fix */
.other-card .event-btn {
  margin-top: 18px;
}




 .footer-social i {
  font-size: 2rem;   /* force size change */
}

.footer-social a i {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


  
/*---- pop up -----*/
/* ================================
   MODAL OVERLAY
================================ */
.event-modal {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.85);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.event-modal.active {
  display: flex;
}

/* ================================
   MODAL CONTENT
================================ */
.event-modal-content {
  background: radial-gradient(circle at top left, #0f172a, #020617 70%);
  width: min(900px, 92%);
  max-height: 95vh;
  overflow-y: auto;
  border-radius: 22px;
  padding: 2.5rem;
  position: relative;
  color: #e5e7eb;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  animation: popIn 0.35s ease;
}


/* ================================
   CLOSE BUTTON (TOP)
================================ */
.event-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #22d3ee;
  border: none;
  font-size: 1.7rem;
  font-weight: 900;
  color: #020617;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.event-modal-close:hover {
  transform: scale(1.1);
  background: linear-gradient(315deg, #ec4899, #8b5cf6, #38bdf8, #22d3ee);
}

/* ================================
   HEADER
================================ */
.event-modal-header {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.event-icon.large {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(315deg, #ec4899, #8b5cf6, #38bdf8, #22d3ee);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #ffffff;
}

.event-modal-header h2 {
  margin: 0;
  font-size: 2rem;
  background: linear-gradient(315deg, #ec4899, #8b5cf6, #38bdf8, #22d3ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


.event-modal-header span {
  font-size: 1.1rem;
  color: #94a3b8;
}

/* ================================
   SECTION DIVIDER
================================ */
.section {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(148, 163, 184, 0.15);
}

.section h3 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}
.section h3 i {
  color: #38bdf8;
flex-shrink: 0;
}
.section h3 .section-title {
  white-space: nowrap;
  line-height: 1;
}
/* ================================
   DESCRIPTION
================================ */
#modalDescription {
  color: #cbd5f5;
  line-height: 1.7;
}

/* ================================
   INFO BOXES
================================ */
.event-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.2rem;
}

.info-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.95),
    rgba(2, 6, 23, 0.95)
  );
  box-shadow:
    inset 0 0 0 1px rgba(148, 163, 184, 0.15),
    0 10px 30px rgba(0, 0, 0, 0.5);
}

.info-card i {
  font-size: 1.6rem;
  color: #38bdf8;
  flex-shrink: 0;

}

.info-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.info-text .label {
  font-size: 0.85rem;
  color: #94a3b8;
}

.info-text strong {
  font-size: 1.25rem;
  color: #f8fafc;
  font-weight: 700;
}
#modalTime,
#modalDate,
#modalVenue,
#modalGroupSize{
  color: #ffffff;
  font-size: 1.1rem;   /* adjust if you want bigger/smaller */
  font-weight: 700;
}

.event-info div {
  background: rgba(15, 23, 42, 0.9);
  padding: 1rem 1.2rem;
  border-radius: 14px;
}

.event-info strong {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: #94a3b8;
}

.event-info span {
  display: block;
  margin-top: 0.2rem;
  font-size: 1.05rem;
  color: #f8fafc;
}

.gold { color: #facc15; }
.silver { color: #cbd5e1; }
.bronze { color: #fb923c; }
/* ================= PRIZES (ONE ROW) ================= */
.prize-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.prize-item {
  background: rgba(15, 23, 42, 0.9);
  border-radius: 16px;
  padding: 1rem;
  text-align: center;
}

.prize-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.prize-item {
  text-align: center;
  padding: 1rem;
  border-radius: 14px;
  background: rgba(15,23,42,0.9);
}

.prize-item strong {
  display: block;
  margin-top: 0.4rem;
  font-size: 1.1rem;
}



/* MOBILE */
@media (max-width: 600px) {
  .prize-row {
    grid-template-columns: 1fr;
  }
}
/* ================= RULES (NUMBERED) ================= */
/* ================= RULES LIST ================= */
#modalRules {
  list-style: none;
  padding: 0;
  margin: 1rem 0 2rem;
  counter-reset: rule;
}

#modalRules li {
  counter-increment: rule;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.6rem 0;
  color: #e5e7eb;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Cyan numbered circle */
#modalRules li::before {
  content: counter(rule);
  min-width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #22d3ee, #06b6d4);
  color: #020617;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
 
  flex-shrink: 0;
}
#modalRules li:hover::before {
  box-shadow: 0 0 16px rgba(34, 211, 238, 0.8);
}


/* ================================
   COORDINATORS
================================ */
.coordinator-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.coordinator-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(15, 23, 42, 0.9);
  padding: 1rem 1.2rem;
  border-radius: 16px;
}

.coordinator-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #38bdf8, #22d3ee);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #020617;
}
.coordinator-avatar i {
  font-size: 1.1rem;
  color: #020617;
}

.coordinator-card a {
  color: #f8fafc; /* white by default */
  text-decoration: none;
  transition: color 0.25s ease;
}

.coordinator-card a:hover {
  color: #38bdf8; /* cyan on hover */
}

.coordinator-card span {
  display: block;
  font-size: 0.9rem;
  color: #94a3b8;
}

.section h3 i.fa-user-tie {
  color: #22d3ee;;
}

.section h3 i.fa-user-graduate {
  color: #22d3ee;;
}
.coordinator-card {
  transition: 
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.coordinator-card:hover {
  transform: scale(1.03);
  background: linear-gradient(
    135deg,
    rgba(56, 189, 248, 0.18),
    rgba(34, 211, 238, 0.18)
  );
}
.coordinator-card:hover .coordinator-avatar {
  background: linear-gradient(135deg, #38bdf8, #22d3ee);
}
@media (hover: hover) {
  .coordinator-card:hover {
    transform: scale(1.03);
  }
}

/* ================= IMPORTANT MESSAGE ================= */
.important-box {
  display: none;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  margin: 22px 0 12px;
  border-radius: 14px;
  font-size: 0.95rem;
  line-height: 1.5;

  background: linear-gradient(
    135deg,
    rgba(250, 204, 21, 0.22),
    rgba(251, 113, 133, 0.22)
  );

  border-left: 5px solid #facc15;
  box-shadow:
    0 0 0 1px rgba(250,204,21,0.25),
    0 10px 25px rgba(0,0,0,0.25);

  animation:
    importantFadeIn 0.45s ease-out,
    importantPulse 2.5s ease-in-out infinite;

  backdrop-filter: blur(6px);
}

/* Icon emphasis */
.important-box i {
  color: #facc15;
  font-size: 1.25rem;
  margin-top: 2px;
  animation: iconWiggle 2.5s ease-in-out infinite;
}

/* ================= ANIMATIONS ================= */

@keyframes importantFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes importantPulse {
  0%, 100% {
    box-shadow:
      0 0 0 1px rgba(250,204,21,0.25),
      0 10px 25px rgba(0,0,0,0.25);
  }
  50% {
    box-shadow:
      0 0 0 2px rgba(250,204,21,0.45),
      0 14px 35px rgba(250,204,21,0.25);
  }
}

@keyframes iconWiggle {
  0%, 100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-6deg);
  }
}


/* ================================
   BUTTONS
================================ */
.modal-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.register-btn {
  flex: 1;
  padding: 1rem;
  border-radius: 14px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;

  background: linear-gradient(315deg, #ec4899, #8b5cf6, #38bdf8, #22d3ee);
  color: #020617;

  text-decoration: none;     /* 🔥 removes underline */
  display: inline-flex;      /* keeps button layout */
  align-items: center;
  justify-content: center;
}


.close-btn {
  flex: 0.4;
  padding: 1rem;
  border-radius: 14px;
  border: 1px solid #38bdf8;
  background: transparent;
  color: #38bdf8;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}
.register-btn:hover{
   transform: scale(1.05);
  background: linear-gradient(135deg, #ec4899, #8b5cf6, #38bdf8, #22d3ee);
}
.close-btn:hover {
  background: linear-gradient(315deg, #ec4899, #8b5cf6, #38bdf8, #22d3ee);
  color: #ffffff; /* dark text for contrast */
  transform: scale(1.03);
}
.register-btn:hover,
.register-btn:focus,
.register-btn:active {
  text-decoration: none;
  color: #020617;
}

/* ================================
   ANIMATION
================================ */
@keyframes popIn {
  from { transform: scale(0.92); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}



/* ================= FOOTER ================= */
/* Divider before footer */

.footer-divider {
  height: 1px;
  width: 85%;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, #38bdf8, #8b5cf6, #ec4899, transparent);
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.6);
}

/* Footer */
.footer {
  padding: 4rem 6% 3rem;
  display: grid;

  /* 👇 force left | center | right */
  grid-template-columns: 1fr auto 1fr;

  gap: 2.5rem;
  align-items: start;

  background: rgba(2, 6, 23, 0.95);
  backdrop-filter: blur(8px);
}

.footer-brand h3 {
  font-size: 1.6rem;
  font-weight: 800;

   background: linear-gradient(90deg, #22d3ee 0%, #38bdf8 25%, #8b5cf6 50%, #ec4899 95% );
  background-size: 75% 100%; 
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 768px){
  .footer-brand h3 {
  font-size: 1.2rem;
  font-weight: 500;

   background: linear-gradient(90deg, #22d3ee 0%, #38bdf8 25%, #8b5cf6 50%, #ec4899 100%);
    background-size: 80% 100%; 
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
}
.footer-brand {
  text-align: left;
  justify-self: start;
}

.footer-links {
  text-align: center;
  justify-self: center;
}

.footer-contact {
  text-align: left;
  justify-self: end;
}


.footer h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #e5e7eb;
}

.footer p,
.footer a {
  font-size: 1rem;
  color: #9ca3af;
  text-decoration: none;
  margin-bottom: 0.6rem;
  display: block;
}

.footer a:hover {
  color: #38bdf8;
}

/* Footer icons */
.footer i {
  margin-right: 8px;
  background: linear-gradient(135deg, #38bdf8, #8b5cf6, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Mobile center alignment */
@media (max-width: 768px) {
  .footer {
    text-align: center;
  }
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

.follow-text {
  font-size: 0.9rem;
  color:  #6b7280; /* gray */
}

.footer-social a {
  font-size: 1.2rem;
  color: #e1306c;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-social a:hover {
  transform: scale(1.15);
  opacity: 0.85;
}


/*--- Mobile Touch effect--*/
/* ================= MOBILE TOUCH HOVER ================= */

/* Coordinator cards */
.coordinator-card:active,
.coordinator-card.touch-active {
  transform: scale(1.03);
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.18), rgba(34, 211, 238, 0.18));
}

.coordinator-card:active .coordinator-avatar,
.coordinator-card.touch-active .coordinator-avatar {
  background: linear-gradient(135deg, #38bdf8, #22d3ee);
}

/* Coordinator mobile numbers */
.coordinator-card:active a,
.coordinator-card.touch-active a {
  color: #38bdf8;
}

/* Close button */
.close-btn:active,
.close-btn.touch-active {
  background: linear-gradient(315deg, #ec4899, #8b5cf6, #38d3f8, #22d3ee);
  color: #ffffff;
  transform: scale(1.03);
}

/* Register button */
.register-btn:active,
.register-btn.touch-active {
  transform: scale(1.05);
  background: linear-gradient(135deg, #ec4899, #8b5cf6, #38d3f8, #22d3ee);
}



/* Modal close button */
.event-modal-close:active,
.event-modal-close.touch-active {
  transform: scale(1.1);
  background: linear-gradient(315deg, #ec4899, #8b5cf6, #38bdf8, #22d3ee);
}

  </style>
