/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Performance Optimizations for Smooth Scrolling */
html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

body {
    overflow-x: hidden;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* GPU Acceleration for animated elements */
.fade-in-element,
.fade-in-section,
.event-card,
.main-card,
.navbar,
.prize-pool-container,
.floating-sparkle,
.prize-sparkle {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    perspective: 1000px;
}

/* Optimize will-change for frequently animated elements */
.event-card:hover,
.main-card:hover,
.register-btn:hover,
.navbar:hover {
    will-change: transform, opacity, filter;
}

/* Remove will-change after animations complete */
.event-card,
.main-card,
.register-btn,
.navbar {
    will-change: auto;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .floating-sparkle,
    .prize-sparkle {
        animation: none !important;
    }
}

img, video { max-width: 100%; height: auto; }

:root {
  --container-max: 1280px;
  --space-1: 0.25rem; /* 4px */
  --space-2: 0.5rem;  /* 8px */
  --space-3: 0.75rem; /* 12px */
  --space-4: 1rem;    /* 16px */
  --space-6: 1.5rem;  /* 24px */
  --space-8: 2rem;    /* 32px */
  --nav-h: 64px; /* Default navbar height */
}

/* Fade-in animations */
.fade-in-element,
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-element.visible,
.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}

html, body {
    height: 100%;
    font-feature-settings: "rlig" 1, "calt" 1;
    background: #000 !important;
    position: relative;
    overflow-x: hidden;
}

#particles-js {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
}

body {
    color: #ffffff;
    background: transparent !important;
    padding-top: var(--nav-h); /* Offset for fixed navbar */
}

.main-container, .hero-section {
    background: transparent !important;
    position: relative;
    z-index: 2;
}

/* Main layout */
.main-container {
    display: flex;
    justify-content: center;
    width: 100%;
    min-height: 100vh;
    pointer-events: none;
}

.main-container button,
.main-container a,
.main-container input,
.main-container select,
.main-container textarea,
.main-container label {
    pointer-events: auto;
}

.hero-section {
    width: 100%;
    max-width: 1440px;
    height: calc(100vh - var(--nav-h)); /* Full height minus navbar */
    position: relative;
    background:none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1029px;
    text-align: center;
    padding: 2rem;
}

/* Typography */
.title-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 4rem;
    padding-top: 2rem;
}

/* Logo and title horizontal layout */
.logo-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    line-height: 1;
    padding: 1rem;
}

.logo-title-wrapper #logo {
    margin-bottom: 0;
    margin-right: 0.5rem;
    height: 12rem;
    width: auto;
    vertical-align: baseline;
    transform: translateY(0.8rem);
    filter: drop-shadow(0 4px 20px rgba(150, 30, 150, 0.4));
    transition: all 0.3s ease;
}

.logo-title-wrapper #logo:hover {
    transform: translateY(0.8rem) scale(1.05);
    filter: drop-shadow(0 8px 30px rgba(150, 30, 150, 0.6));
}

.logo-title-wrapper .main-title {
    margin: 0;
    line-height: 1;
}

.main-title {
    font-family: 'Inknut Antiqua', serif;
    font-weight: 400;
    color: #ffffff;
    font-size: 7rem;
    line-height: 1;
    margin: 0;
}

.main-title:first-child {
    margin-bottom: 1rem;
}

.tagline-container {
    margin-bottom: 4rem;
    font-family: 'Inclusive Sans', sans-serif;
    font-weight: 400;
    color: #ffffff;
    font-size: 2rem;
    text-align: center;
    line-height: 1.2;
}

.tagline {
    margin-bottom: 1rem;
}

.date {
    font-size: 2rem;
}

/* Button styles */
.cta-button {
    width: 450px;
    height: 120px;
    background-color: #d9d9d9;
    border: 2px solid #d9d9d9;
    border-radius: 40px;
    font-family: 'Inclusive Sans', sans-serif;
    font-size: 2rem;
    font-weight: 500;
    color: #000000;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.cta-button:hover {
    color: #c4c4c4;
    background-color: #000000;
    border-color: #c4c4c4;
    transform: translateY(-2px);
}

.cta-button:active {
    transform: translateY(0);
}

.cta-button:focus {
    outline: 2px solid #ffffff;
    outline-offset: 4px;
}

.home-btn {
    position: fixed;
    top: 2rem;
    right: 2rem;
    font-size: 2rem;
    color: rgb(0, 0, 0);
    background-color: rgb(255, 255, 255);
    padding: 1rem;
    border-radius: 50%;
    z-index: 50;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
  }

  .home-btn:hover {
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.8);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  }

.github-handle-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: rgb(0, 0, 0);
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    z-index: 50;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .github-handle-btn:hover {
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  }

  .github-handle-btn i {
    font-size: 1.2rem;
  }

  .github-handle-btn span {
    font-weight: 500;
    letter-spacing: 0.5px;
  }

/* Fixed Navbar Overrides */
:root { --nav-h: 64px; }
@media (max-width: 600px) { :root { --nav-h: 56px; } }

/* Ensure content is not hidden under nav */
body { padding-top: var(--nav-h); }

.navbar {
  position: fixed !important;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.navbar .navbar-links {
  /* single row, scrollable if overflow */
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.25rem 0.75rem;
  overflow-x: auto;
  white-space: nowrap;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1rem;
  list-style: none;
}

.navbar .navbar-links li { list-style: none; }

.navbar .navbar-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.8rem;
  border-radius: 9999px;
  text-decoration: none;
  color: #fff;
  font-size: clamp(0.85rem, 0.5vw + 0.7rem, 1rem);
  transition: transform 0.2s ease, background 0.2s ease;
}

.navbar .navbar-links a:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

/* Thin scrollbar for horizontal nav scrolling */
.navbar .navbar-links::-webkit-scrollbar { height: 6px; }
.navbar .navbar-links::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 6px; }

/* Anchor offset for fixed nav */
[id] { scroll-margin-top: calc(var(--nav-h) + 8px); }

/* Fullscreen sections account for nav height */
.full-screen-section { min-height: calc(100vh - var(--nav-h)); }

/* Timeline Section */
/* Timeline Section */
.timeline-section {
    position: relative;
    padding: 80px 20px;
    min-height: 100vh;
    background: radial-gradient(circle at 50% 50%, rgba(255, 107, 107, 0.1) 0%, rgba(78, 205, 196, 0.1) 50%, rgba(69, 183, 209, 0.1) 100%);
    z-index: 2;
}

.timeline-container {
    max-width: 1200px;
    margin: 0 auto;
}

.timeline-title {
    font-family: 'Inknut Antiqua', serif;
    font-size: 4rem;
    font-weight: 400;
    color: #ffffff;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4, #45b7d1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.timeline-subtitle {
    text-align: center;
    color: #e0e0e0;
    font-size: 1.2rem;
    margin-bottom: 4rem;
}

/* Map Layout */
.timeline-map {
    position: relative;
    width: 100%;
    height: 600px;
    background: transparent;
    border-radius: 30px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.map-path {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.journey-path {
    stroke-dasharray: 20, 10;
    animation: pathFlow 8s linear infinite;
}

@keyframes pathFlow {
    0% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: 300; }
}

/* Map Locations */
.map-location {
    position: absolute;
    z-index: 3;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: translate(-50%, -50%);
}

.location-marker {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
}

.marker-icon {
    font-size: 2.2rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.marker-pulse {
    position: absolute;
    top: 2.5px;
    left: 2.5px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(255, 107, 107, 0.4);
    animation: pulse 2s infinite;
    z-index: 1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.4);
        opacity: 0.3;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

.location-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 20px;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
}

.map-location:hover .location-card {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.map-location:hover .marker-icon {
    transform: scale(1.2);
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.6), 0 4px 20px rgba(0, 0, 0, 0.3);
}

.location-title {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.location-date {
    color: #4ecdc4;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.location-description {
    color: #e0e0e0;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.location-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Decorative Elements */
.map-decoration {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.6;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.map-decoration:nth-child(even) {
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-10px) rotate(1deg); }
    66% { transform: translateY(5px) rotate(-1deg); }
}

/* Location-specific styling */
.location-1 .marker-pulse { background: rgba(255, 107, 107, 0.4); }
.location-2 .marker-pulse { background: rgba(78, 205, 196, 0.4); }
.location-3 .marker-pulse { background: rgba(69, 183, 209, 0.4); }
.location-4 .marker-pulse { background: rgba(150, 206, 180, 0.4); }
.location-5 .marker-pulse { background: rgba(254, 202, 87, 0.4); }

.location-1 .location-badge { background: linear-gradient(135deg, #ff6b6b, #ff8e8e); }
.location-2 .location-badge { background: linear-gradient(135deg, #4ecdc4, #6bd5d5); }
.location-3 .location-badge { background: linear-gradient(135deg, #45b7d1, #6bc7e0); }
.location-4 .location-badge { background: linear-gradient(135deg, #96ceb4, #a8d4c3); }
.location-5 .location-badge { background: linear-gradient(135deg, #feca57, #fed976); }

/* Map Location Positioning */
.location-1 { top: 350px; left: 80px; }
.location-2 { top: 150px; left: 250px; }
.location-3 { top: 300px; left: 450px; }
.location-4 { top: 450px; left: 650px; }
.location-5 { top: 200px; left: 850px; }

/* Decorative Element Positioning */
.decoration-1 { top: 50px; left: 150px; }
.decoration-2 { top: 80px; right: 200px; }
.decoration-3 { bottom: 100px; left: 350px; }
.decoration-4 { bottom: 150px; right: 150px; }
.decoration-5 { top: 120px; left: 500px; }
.decoration-6 { bottom: 80px; left: 600px; }

/* Responsive Design */
@media (max-width: 768px) {
    .timeline-map {
        height: 500px;
    }
    
    .map-location {
        position: static !important;
        margin: 20px auto;
        display: block;
        text-align: center;
    }
    
    .location-card {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        position: static;
        margin-top: 10px;
    }
    
    .map-path {
        display: none;
    }
    
    .timeline-title {
        font-size: 2.5rem;
    }
    
    .map-decoration {
        display: none;
    }
    
    /* Logo responsive styles for tablets */
    #logo {
        height: 10rem !important;
        width: auto !important;
    }
    
    .logo-title-wrapper {
        gap: 0.4rem !important;
        margin-bottom: 1.2rem !important;
    }
}

/* Phone view fixes: Countdown and Journey Map */
@media (max-width: 600px) {
  /* Countdown section: scale down headings and logo, remove layout overflow */
  .countdown-container { padding: 0 1rem; }
  .main-title-container { transform: none !important; }
  .main-title-container .main-title { font-size: clamp(2rem, 8vw, 3rem) !important; }
  #header-logo-main { align-items: center !important; gap: 0.25rem; }
  #logo { width: auto !important; height: 8rem !important; margin-bottom: -1rem !important; }
  #countdown-section { transform: none !important; }
  #countdown-section .countdown-timer { display: inline-block; max-width: 100%; text-align: center; }
  .sparkle-container { opacity: 0.6; }
}

/* Extra-small phones */
@media (max-width: 360px) {
  #logo { width: auto !important; height: 6rem !important; }
  .main-title-container .main-title { font-size: clamp(1.8rem, 9vw, 2.6rem) !important; }
  #countdown-section { transform: scale(0.92); transform-origin: center top; }
}

/* Ultra-small (<=320px) */
@media (max-width: 320px) {
  #countdown-section { transform: scale(0.86); }
}

/* Journey Map: switch to stacked list on phones */
/* ========================================
   JOURNEY MAP MOBILE REDESIGN - VERTICAL ALTERNATING TIMELINE
   ======================================== */

@media (max-width: 768px) {
  /* Timeline Section Mobile */
  .timeline-section {
    padding: 60px 20px !important;
    min-height: auto !important;
    background: radial-gradient(circle at 50% 50%, rgba(255, 107, 107, 0.1) 0%, rgba(78, 205, 196, 0.1) 50%, rgba(69, 183, 209, 0.1) 100%) !important;
  }

  .timeline-container {
    max-width: 100% !important;
    padding: 0 !important;
  }

  .timeline-title {
    font-size: 2.5rem !important;
    margin-bottom: 0.8rem !important;
    text-align: center !important;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4, #45b7d1) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
  }

  .timeline-subtitle {
    font-size: 1rem !important;
    margin-bottom: 3rem !important;
    text-align: center !important;
    color: #e0e0e0 !important;
    padding: 0 1rem !important;
  }

  /* Vertical Timeline Container */
  .timeline-map {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    overflow: visible !important;
    padding: 2rem 1rem !important;
    display: block !important;
    flex-direction: none !important;
    gap: 0 !important;
  }

  /* Central Vertical Line */
  .timeline-map::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, 
      #ff6b6b 0%, 
      #4ecdc4 25%, 
      #8928c5 50%, 
      #96ceb4 75%, 
      #feca57 100%
    );
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.3);
    z-index: 1;
  }

  /* Hide desktop elements completely */
  .map-path,
  .journey-path,
  .map-decoration {
    display: none !important;
    visibility: hidden !important;
  }

  /* Timeline Items Base Styles */
  .map-location {
    position: relative !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 0 4rem 0 !important;
    display: flex !important;
    align-items: center !important;
    z-index: 2 !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    cursor: default !important;
    flex-direction: row !important;
  }

  /* Left Side Items (odd - 1st, 3rd, 5th) */
  .map-location:nth-child(odd) {
    justify-content: flex-end !important;
    text-align: right !important;
  }

  .map-location:nth-child(odd) .location-card {
    margin-right: 2rem !important;
    margin-left: 0 !important;
    order: 1 !important;
  }

  .map-location:nth-child(odd) .location-marker {
    order: 2 !important;
  }

  /* Right Side Items (even - 2nd, 4th) */
  .map-location:nth-child(even) {
    justify-content: flex-start !important;
    text-align: left !important;
  }

  .map-location:nth-child(even) .location-card {
    margin-left: 2rem !important;
    margin-right: 0 !important;
    order: 2 !important;
  }

  .map-location:nth-child(even) .location-marker {
    order: 1 !important;
  }

  /* Enhanced Timeline Markers */
  .location-marker {
    position: relative !important;
    width: 80px !important;
    height: 80px !important;
    background: rgba(0, 0, 0, 0.4) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border: 4px solid rgba(255, 255, 255, 0.9) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    z-index: 3 !important;
    box-shadow: 
      0 8px 25px rgba(0, 0, 0, 0.4),
      0 0 0 8px rgba(255, 255, 255, 0.1) !important;
    transition: all 0.4s ease !important;
    margin-bottom: 0 !important;
    order: 1 !important;
  }

  .marker-icon {
    font-size: 2.2rem !important;
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
    width: auto !important;
    height: auto !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5)) !important;
    transition: all 0.3s ease !important;
  }

  /* Enhanced Location Cards */
  .location-card {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    background: rgba(255, 255, 255, 0.12) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 2px solid rgba(255, 255, 255, 0.25) !important;
    border-radius: 20px !important;
    padding: 1.5rem !important;
    box-shadow: 
      0 15px 35px rgba(0, 0, 0, 0.25),
      0 5px 15px rgba(255, 255, 255, 0.1) !important;
    flex: 1 !important;
    max-width: 280px !important;
    min-width: 200px !important;
    transition: all 0.4s ease !important;
  }

  .location-title {
    color: #ffffff !important;
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    margin-bottom: 0.8rem !important;
    font-family: 'Inknut Antiqua', serif !important;
  }

  .location-date {
    color: #4ecdc4 !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    margin-bottom: 1rem !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
  }

  .location-description {
    color: #e0e0e0 !important;
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
    margin-bottom: 1rem !important;
  }

  .location-badge {
    display: inline-block !important;
    background: linear-gradient(135deg, rgba(93, 93, 245, 0.8), rgba(93, 93, 245, 0.6)) !important;
    color: white !important;
    padding: 0.5rem 1rem !important;
    border-radius: 15px !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
  }

  /* Remove pulse animations for mobile */
  .marker-pulse {
    display: none !important;
  }

  /* Hover effects for mobile timeline */
  .map-location:hover .location-card {
    transform: translateY(-5px) !important;
    box-shadow: 
      0 20px 40px rgba(0, 0, 0, 0.35),
      0 8px 20px rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(93, 93, 245, 0.5) !important;
    background: rgba(255, 255, 255, 0.15) !important;
  }

  .map-location:hover .location-marker {
    transform: scale(1.1) !important;
    box-shadow: 
      0 12px 30px rgba(0, 0, 0, 0.5),
      0 0 0 12px rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(93, 93, 245, 0.7) !important;
  }

  .map-location:hover .marker-icon {
    transform: scale(1.1) !important;
}


/* ========================================
   JOURNEY MAP PHONE OPTIMIZATION - VERTICAL TIMELINE
   ======================================== */

@media (max-width: 480px) {
  .timeline-section {
    padding: 40px 15px !important;
  }

  .timeline-title {
    font-size: 2rem !important;
  }

  .timeline-subtitle {
    font-size: 0.9rem !important;
    margin-bottom: 2rem !important;
  }

  .timeline-map {
    padding: 1rem 0.5rem !important;
  }

  /* Smaller markers for phone */
  .location-marker {
    width: 70px !important;
    height: 70px !important;
    border-width: 3px !important;
    box-shadow: 
      0 6px 20px rgba(0, 0, 0, 0.3),
      0 0 0 6px rgba(255, 255, 255, 0.1) !important;
  }

  .marker-icon {
    font-size: 2rem !important;
  }

  /* Smaller cards for phone */
  .location-card {
    max-width: 240px !important;
    min-width: 180px !important;
    padding: 1.2rem !important;
  }

  .map-location:nth-child(odd) .location-card {
    margin-right: 1.5rem !important;
  }

  .map-location:nth-child(even) .location-card {
    margin-left: 1.5rem !important;
  }

  .location-title {
    font-size: 1.2rem !important;
    margin-bottom: 0.6rem !important;
  }

  .location-date {
    font-size: 0.85rem !important;
    margin-bottom: 0.8rem !important;
  }

  .location-description {
    font-size: 0.85rem !important;
    line-height: 1.4 !important;
    margin-bottom: 0.8rem !important;
  }

  .location-badge {
    font-size: 0.75rem !important;
    padding: 0.4rem 0.8rem !important;
  }

  /* Smaller central line */
  .timeline-map::before {
    width: 3px !important;
  }

  /* Tighter spacing between timeline items */
  .map-location {
    margin-bottom: 3rem !important;
  }
}
}

/* Tighten typography inside location cards on phones */
@media (max-width: 480px) {
  .location-title { font-size: 1.05rem; }
  .location-date { font-size: 0.85rem; }
  .location-description { font-size: 0.9rem; }
}

/* Responsive Optimizations - Global */
* { box-sizing: border-box; }

img, video { max-width: 100%; height: auto; }

:root {
  --container-max: 1280px;
  --space-1: 0.25rem; /* 4px */
  --space-2: 0.5rem;  /* 8px */
  --space-3: 0.75rem; /* 12px */
  --space-4: 1rem;    /* 16px */
  --space-6: 1.5rem;  /* 24px */
  --space-8: 2rem;    /* 32px */
}

/* Containers */
.about-container,
.events-container,
.contact-container,
.timeline-container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-4);
}

/* Headings use fluid type */
.events-title,
.events-subheader,
.about-title,
.contact-title,
.timeline-title {
  font-size: clamp(1.5rem, 2.5vw + 1rem, 3rem);
}

/* Event grid becomes more fluid */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-8);
}

/* Card padding scales down on small screens */
.event-card { border-radius: 18px; }
.event-header, .event-content { padding: clamp(0.75rem, 1vw + 0.5rem, 1.5rem); }

/* Make event metadata wrap nicely */
.event-time, .event-location { flex-wrap: wrap; }

/* ========================================
   NAVBAR FORCE CENTER - FINAL FIX
   ======================================== */

/* Override ALL navbar positioning with maximum specificity */
body .navbar,
nav.navbar {
  position: sticky !important; 
  top: 0 !important; 
  left: 0 !important;
  right: 0 !important;
  z-index: 1000 !important; 
  width: 100% !important;
  max-width: 100% !important;
  padding: 1rem 2rem !important;
  margin: 0 auto !important;
  
  /* Force centering with multiple methods */
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
  
  /* Reset any transforms or positioning from main.css */
  transform: none !important;
  
  /* Advanced Glass Morphism Effect */
  background: rgba(0, 0, 0, 0.85) !important;
  backdrop-filter: blur(20px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
  
  /* Modern Border and Shadow */
  border: none !important;
  border-radius: 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
  box-shadow: 
    0 4px 24px rgba(0, 0, 0, 0.4),
    0 2px 8px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
  
  /* Smooth Transitions */
  transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1) !important;
  animation: navbarSlideIn 0.6s ease-out !important;
}

/* Enhanced Hover State */
body .navbar:hover,
nav.navbar:hover {
  background: rgba(0, 0, 0, 0.92) !important;
  backdrop-filter: blur(25px) saturate(200%) !important;
  -webkit-backdrop-filter: blur(25px) saturate(200%) !important;
  border-bottom-color: rgba(255, 255, 255, 0.18) !important;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.5),
    0 4px 16px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
  transform: none !important;
}

/* Force center the navigation links container */
body .navbar .navbar-links,
nav.navbar .navbar-links,
body .navbar ul,
nav.navbar ul {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.4rem 0.8rem !important;
  flex-wrap: wrap !important;
  overflow-x: visible !important;
  white-space: normal !important;
  max-width: 1200px !important;
  width: 100% !important;
  margin: 0 auto !important;
  padding: 0 !important;
  list-style: none !important;
  text-align: center !important;
  
  /* Reset any positioning from main.css */
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  transform: none !important;
}

/* Force center list items */
body .navbar .navbar-links li,
nav.navbar .navbar-links li,
body .navbar ul li,
nav.navbar ul li {
  list-style: none !important;
  margin: 0 auto !important;
  display: inline-flex !important;
  position: relative !important;
}

/* Enhanced Navigation Link Styling with max specificity - FIX CORRUPTED CONTENT */
body .navbar .navbar-links li a,
nav.navbar .navbar-links li a,
body .navbar ul li a,
nav.navbar ul li a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0.65rem 1.3rem !important;
  margin: 0 !important;
  
  /* Reset any positioning from main.css */
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  transform: none !important;
  
  /* Modern Button Design */
  border-radius: 30px !important;
  text-decoration: none !important;
  color: #ffffff !important;
  
  /* Gradient Background */
  background: linear-gradient(145deg, 
    rgba(255, 255, 255, 0.12) 0%, 
    rgba(255, 255, 255, 0.08) 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  
  /* Typography - Override main.css font styles */
  font-size: clamp(0.85rem, 0.5vw + 0.7rem, 1rem) !important; 
  font-weight: 600 !important;
  letter-spacing: 0.3px !important;
  white-space: nowrap !important;
  
  /* Advanced Transitions */
  transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1) !important;
  overflow: hidden !important;
  
  /* Reset main.css glass effects and shadows */
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  z-index: auto !important;
  width: auto !important;
}

/* Enhanced Hover Effects with max specificity */
body .navbar .navbar-links li a:hover,
nav.navbar .navbar-links li a:hover,
body .navbar ul li a:hover,
nav.navbar ul li a:hover {
  /* Background Enhancement */
  background: linear-gradient(145deg, 
    rgba(255, 255, 255, 0.22) 0%, 
    rgba(255, 255, 255, 0.15) 100%) !important;
  border-color: rgba(255, 255, 255, 0.35) !important;
  color: #ffffff !important;
  
  /* Transform Effects - override main.css transforms */
  transform: translateY(-3px) scale(1.02) !important;
  
  /* Advanced Shadow */
  box-shadow: 
    0 8px 25px rgba(255, 255, 255, 0.08),
    0 4px 12px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
}

/* Special styling for Register button with max specificity */
body .navbar .navbar-links li:last-child a,
nav.navbar .navbar-links li:last-child a,
body .navbar ul li:last-child a,
nav.navbar ul li:last-child a {
  background: linear-gradient(145deg, 
    rgba(93, 93, 245, 0.8) 0%, 
    rgba(148, 0, 211, 0.8) 100%) !important;
  border-color: rgba(255, 255, 255, 0.25) !important;
  font-weight: 700 !important;
}

body .navbar .navbar-links li:last-child a:hover,
nav.navbar .navbar-links li:last-child a:hover,
body .navbar ul li:last-child a:hover,
nav.navbar ul li:last-child a:hover {
  background: linear-gradient(145deg, 
    rgba(93, 93, 245, 0.95) 0%, 
    rgba(148, 0, 211, 0.95) 100%) !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
  transform: translateY(-3px) scale(1.05) !important;
  box-shadow: 
    0 10px 30px rgba(93, 93, 245, 0.3),
    0 6px 16px rgba(0, 0, 0, 0.4) !important;
}

/* Enhanced Hover State */
.navbar:hover {
  background: rgba(0, 0, 0, 0.92) !important;
  backdrop-filter: blur(25px) saturate(200%) !important;
  -webkit-backdrop-filter: blur(25px) saturate(200%) !important;
  border-bottom-color: rgba(255, 255, 255, 0.18) !important;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.5),
    0 4px 16px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
}

.navbar .navbar-links {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.4rem 0.8rem !important;
  flex-wrap: wrap !important;
  overflow-x: visible !important;
  white-space: normal !important;
  max-width: 1200px !important;
  width: 100% !important;
  margin: 0 auto !important;
  padding: 0 !important;
  list-style: none !important;
  text-align: center !important;
}

.navbar .navbar-links li {
  list-style: none !important;
  margin: 0 auto !important;
  display: inline-flex !important;
}

.navbar .navbar-links a { 
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0.65rem 1.3rem !important;
  margin: 0 !important;
  
  /* Modern Button Design */
  border-radius: 30px !important;
  text-decoration: none !important;
  color: #ffffff !important;
  
  /* Gradient Background */
  background: linear-gradient(145deg, 
    rgba(255, 255, 255, 0.12) 0%, 
    rgba(255, 255, 255, 0.08) 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  
  /* Typography */
  font-size: clamp(0.85rem, 0.5vw + 0.7rem, 1rem) !important; 
  font-weight: 600 !important;
  letter-spacing: 0.3px !important;
  white-space: nowrap !important;
  
  /* Advanced Transitions */
  transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1) !important;
  position: relative !important;
  overflow: hidden !important;
  transform: translateZ(0) !important;
}

/* Enhanced Hover Effects */
.navbar .navbar-links a:hover {
  /* Background Enhancement */
  background: linear-gradient(145deg, 
    rgba(255, 255, 255, 0.22) 0%, 
    rgba(255, 255, 255, 0.15) 100%) !important;
  border-color: rgba(255, 255, 255, 0.35) !important;
  color: #ffffff !important;
  
  /* Transform Effects */
  transform: translateY(-3px) scale(1.02) !important;
  
  /* Advanced Shadow */
  box-shadow: 
    0 8px 25px rgba(255, 255, 255, 0.08),
    0 4px 12px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
}

/* Special styling for Register button */
.navbar .navbar-links li:last-child a {
  background: linear-gradient(145deg, 
    rgba(93, 93, 245, 0.8) 0%, 
    rgba(148, 0, 211, 0.8) 100%) !important;
  border-color: rgba(255, 255, 255, 0.25) !important;
  font-weight: 700 !important;
}

.navbar .navbar-links li:last-child a:hover {
  background: linear-gradient(145deg, 
    rgba(93, 93, 245, 0.95) 0%, 
    rgba(148, 0, 211, 0.95) 100%) !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
  transform: translateY(-3px) scale(1.05) !important;
  box-shadow: 
    0 10px 30px rgba(93, 93, 245, 0.3),
    0 6px 16px rgba(0, 0, 0, 0.4) !important;
}

/* Loading animation for navbar */
@keyframes navbarSlideIn {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Update scroll margins for sticky navbar */
[id] { scroll-margin-top: 80px !important; }
.full-screen-section { min-height: calc(100vh - 80px) !important; }

/* Ensure logo/title rows don’t overflow */
.logo-title-wrapper, .loader-logo-title-wrapper { 
  flex-wrap: nowrap !important; 
  gap: 0.3rem !important; 
  align-items: center !important;
  justify-content: center !important;
}

/* Countdown scale fix on small screens (override inline scale) */
@media (max-width: 600px) {
  #countdown-section { transform: none !important; }
}

/* Enhanced Mobile Navbar Responsiveness */
@media (max-width: 768px) {
  .navbar {
    padding: 0.8rem 1rem !important;
    backdrop-filter: blur(15px) saturate(150%) !important;
    -webkit-backdrop-filter: blur(15px) saturate(150%) !important;
    justify-content: center !important;
    text-align: center !important;
  }
  
  .navbar .navbar-links {
    gap: 0.3rem 0.5rem !important;
    max-width: 100% !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    margin: 0 auto !important;
  }
  
  .navbar .navbar-links li a {
    padding: 0.5rem 0.9rem !important;
    font-size: 0.85rem !important;
    border-radius: 25px !important;
    min-height: 44px !important;
    min-width: 44px !important;
  }

  /* Enhanced Register button on mobile */
  .navbar .navbar-links li:last-child a {
    font-weight: 700 !important;
    background: linear-gradient(145deg, 
      rgba(93, 93, 245, 0.9) 0%, 
      rgba(148, 0, 211, 0.9) 100%) !important;
  }
  
  /* Home button responsive styles */
  .home-btn {
    top: 1.5rem;
    right: 1.5rem;
    font-size: 1.5rem;
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 0.6rem 0.8rem !important;
    backdrop-filter: blur(12px) saturate(120%) !important;
    -webkit-backdrop-filter: blur(12px) saturate(120%) !important;
    justify-content: center !important;
    text-align: center !important;
  }
  
  .navbar .navbar-links {
    gap: 0.2rem 0.3rem !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    margin: 0 auto !important;
    width: 100% !important;
  }
  
  .navbar .navbar-links li a {
    padding: 0.4rem 0.7rem !important;
    font-size: 0.75rem !important;
    border-radius: 20px !important;
    letter-spacing: 0.1px !important;
  }

  /* Compact Register button for very small screens */
  .navbar .navbar-links li:last-child a {
    font-size: 0.8rem !important;
    font-weight: 800 !important;
    padding: 0.5rem 0.8rem !important;
  }

  /* Reduce animation on mobile for performance */
  .navbar {
    animation: none !important;
  }

  .navbar .navbar-links a {
    transition: all 0.2s ease !important;
  }

  .navbar .navbar-links a:hover {
    transform: translateY(-1px) scale(1.01) !important;
  }
  
  /* Home button for small mobile screens */
  .home-btn {
    top: 1rem;
    right: 1rem;
    font-size: 1.2rem;
    width: 44px;
    height: 44px;
  }
}

/* Reduce animation for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

/* Touch-friendly tap targets */
button, .cta-button, .know-more-btn, .navbar a { min-height: 44px; min-width: 44px; }

/* Event card mobile behavior: avoid hover-only UX */
@media (hover: none) {
  /* If any card relies on :hover to reveal details, show details by default on touch devices */
  .event-card .event-content { opacity: 1; max-height: none; pointer-events: auto; }
}

/* Tighten spacing on very small screens */
@media (max-width: 480px) {
  .events-grid { gap: var(--space-4); }
  .events-separator { margin: var(--space-8) 0; }
}

/* Landscape phones adjustments */
@media (max-height: 420px) and (orientation: landscape) {
  .full-screen-section { min-height: auto; padding: var(--space-8) var(--space-4); }
}

/* Responsive design */
@media (max-width: 1200px) {
    .main-title {
        font-size: 7rem;
    }
    
    .tagline-container {
        font-size: 2.5rem;
    }
    
    .cta-button {
        width: 400px;
        height: 100px;
        font-size: 1.8rem;
    }

    .timeline-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .content-wrapper {
        padding: 1rem;
    }
    
    .main-title {
        font-size: 4rem;
    }
    
    .tagline-container {
        font-size: 1.8rem;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
    
    .cta-button {
        width: 300px;
        height: 80px;
        font-size: 1.5rem;
        border-radius: 30px;
    }

    .timeline-title {
        font-size: 2.5rem;
        margin-left: 1rem;
    }

    .timeline {
        padding-left: 2rem;
    }

    .timeline::before {
        left: 1rem;
    }

    .timeline-dot {
        left: -2rem;
    }

    .timeline-content {
        margin-left: 1rem;
        padding: 1.5rem;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 3rem;
    }
    
    .tagline-container {
        font-size: 1.5rem;
    }
    
    .cta-button {
        width: 250px;
        height: 70px;
        font-size: 1.3rem;
        border-radius: 25px;
    }

    .timeline-title {
        font-size: 2rem;
    }

    .timeline-event {
        font-size: 1.2rem;
    }

    .timeline-content {
        padding: 1rem;
    }
}

/* Dark mode support (default is dark) */
@media (prefers-color-scheme: light) {
    /* Keep dark theme even in light mode preference */
    body {
        background-color: #000000;
        color: #ffffff;
    }
    
    .hero-section {
        background-color: #000000;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .cta-button {
        transition: none;
    }
    
    .cta-button:hover {
        transform: none;
    }
    
    .cta-button:active {
        transform: none;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .cta-button {
        border: 3px solid #ffffff;
    }
    
    .cta-button:focus {
        outline: 3px solid #ffffff;
        outline-offset: 6px;
    }
}

/* GitHub Footer - Inverted Colors */
.github-footer {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.github-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 25px;
  color: #000000;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  opacity: 0.8;
  pointer-events: auto;
}

.github-link:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 1);
  border-color: rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.github-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.github-link:hover .github-icon {
  transform: scale(1.1);
}

.github-link span {
  font-family: 'Inclusive Sans', sans-serif;
}

/* ========================================
   ADVANCED EVENT CARD SYSTEM - TWO CARD DESIGN
   ======================================== */

/* Event Card Container - Increased Height for Large Logos with Overflow Control */
.event-card-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 600px;
  perspective: 1000px;
  cursor: pointer;
  margin: 0 auto 2rem auto;
  overflow: hidden;
}

/* Main Event Card - Reduced Padding for Large Logos */
.main-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 30px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 
    0 15px 45px rgba(0, 0, 0, 0.15),
    0 5px 15px rgba(93, 93, 245, 0.1);
  z-index: 2;
  transform-style: preserve-3d;
  overflow: hidden;
  position: relative;
}

/* Professional Card Hover Effect - Subtle and Refined */
.main-card:hover {
  transform: translateY(-8px) scale(1.015);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(93, 93, 245, 0.5);
  box-shadow: 
    0 20px 40px rgba(93, 93, 245, 0.25),
    0 8px 25px rgba(0, 0, 0, 0.2),
    inset 0 1px 8px rgba(255, 255, 255, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.main-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, 
    transparent 30%, 
    rgba(93, 93, 245, 0.3) 45%, 
    rgba(255, 255, 255, 0.4) 50%, 
    rgba(93, 93, 245, 0.3) 55%, 
    transparent 70%
  );
  border-radius: 30px;
  opacity: 0;
  transition: all 0.8s ease;
  z-index: -1;
  transform: rotate(45deg);
  animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  50% { transform: translateX(0%) translateY(0%) rotate(45deg); }
}

/* Title gradient animation - no movement, only color shifts */
@keyframes titleGradient {
  0%, 100% { background-position: 0% 50%; }
  25% { background-position: 100% 0%; }
  50% { background-position: 100% 100%; }
  75% { background-position: 0% 100%; }
}

.main-card:hover::before {
  opacity: 0.7;
  animation-duration: 2s;
}

.main-card::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(45deg, 
    rgba(93, 93, 245, 0.5), 
    rgba(255, 255, 255, 0.3), 
    rgba(93, 93, 245, 0.5),
    rgba(255, 255, 255, 0.3),
    rgba(93, 93, 245, 0.5)
  );
  background-size: 400% 400%;
  border-radius: 33px;
  z-index: -2;
  opacity: 0;
  transition: all 0.6s ease;
  animation: gradientShift 6s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  25% { background-position: 100% 0%; }
  50% { background-position: 100% 100%; }
  75% { background-position: 0% 100%; }
}

.main-card:hover::after {
  opacity: 0.8;
  animation-duration: 3s;
}

/* Event Logo Container - MASSIVE but Contained */
.event-logo-container {
  width: min(380px, 90%);
  height: min(380px, 90%);
  max-width: 400px;
  max-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: visible;
  transform: scale(1.08);
  filter: drop-shadow(0 20px 40px rgba(93, 93, 245, 0.5));
}

.event-logo-container:hover {
  transform: scale(1.06) translateY(-4px);
  filter: drop-shadow(0 15px 35px rgba(93, 93, 245, 0.4));
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.event-logo-container:hover .event-logo {
  filter: brightness(1.3) contrast(1.2) drop-shadow(0 12px 25px rgba(0, 0, 0, 0.6));
  transform: scale(1.03);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.event-logo {
  width: min(350px, 85%);
  height: min(350px, 85%);
  max-width: 380px;
  max-height: 380px;
  object-fit: contain;
  filter: brightness(1.4) contrast(1.3) drop-shadow(0 15px 30px rgba(0, 0, 0, 0.7));
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 10;
  transform: scale(1.05);
}

/* Ideathon Logo - Make it SUPER MASSIVE but contained */
.event-logo[src*="ideathon.png"] {
  width: min(420px, 90%);
  height: min(420px, 90%);
  max-width: 450px;
  max-height: 450px;
  transform: scale(1.1);
}

/* Walkathon Logo - Add border radius for rounded edges */
.event-logo[src*="walkathon.png"] {
  border-radius: 20px !important;
}

/* Ideathon Logo Container - Make it bigger but contained */
.event-card-container[data-event="ideathon"] .event-logo-container {
  width: min(450px, 95%);
  height: min(450px, 95%);
  max-width: 480px;
  max-height: 480px;
  transform: scale(1.12);
}

/* Event Date Display - Repositioned */
.event-date-display {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  padding: 1rem 1.2rem;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.event-date-display:hover {
  background: rgba(93, 93, 245, 0.4);
  border-color: rgba(93, 93, 245, 0.6);
  transform: scale(1.08);
  box-shadow: 0 6px 25px rgba(93, 93, 245, 0.3);
}

.event-day {
  display: block;
  font-family: 'Inknut Antiqua', serif;
  font-size: 2rem;
  font-weight: 700;
  color: white;
  line-height: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.event-month {
  display: block;
  font-family: 'Inclusive Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 0.3rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Event Title Main - Smaller to Give Logo Prominence */
.event-title-main {
  font-family: 'Inknut Antiqua', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: white;
  margin: 0.8rem 0;
  text-align: center;
  background: linear-gradient(45deg, #ffffff, #e8e8e8, #ffffff);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleShimmer 3s ease-in-out infinite;
  transition: all 0.4s ease;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
  line-height: 1.2;
}

.main-card:hover .event-title-main {
  transform: translateY(-3px) scale(1.03);
  text-shadow: 
    0 4px 12px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(93, 93, 245, 0.4);
  color: rgba(255, 255, 255, 1);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Event Status Badge - Smaller for Logo Prominence */
.event-status {
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-family: 'Inclusive Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.8rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 2px solid transparent;
}

.status-competition {
  background: linear-gradient(135deg, rgba(93, 93, 245, 0.8), rgba(93, 93, 245, 0.6));
  color: white;
  border-color: rgba(93, 93, 245, 0.3);
}

.status-workshop {
  background: linear-gradient(135deg, rgba(69, 183, 209, 0.8), rgba(69, 183, 209, 0.6));
  color: white;
  border-color: rgba(69, 183, 209, 0.3);
}

.status-mentorship {
  background: linear-gradient(135deg, rgba(150, 206, 180, 0.8), rgba(150, 206, 180, 0.6));
  color: white;
  border-color: rgba(150, 206, 180, 0.3);
}

.status-upcoming {
  background: linear-gradient(135deg, rgba(78, 205, 196, 0.8), rgba(78, 205, 196, 0.6));
  color: white;
  border-color: rgba(78, 205, 196, 0.3);
}

.status-celebration {
  background: linear-gradient(135deg, rgba(155, 89, 182, 0.8), rgba(155, 89, 182, 0.6));
  color: white;
  border-color: rgba(155, 89, 182, 0.3);
}

.event-status:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Rulebook Download Button - Enhanced Styling */
.rulebook-btn {
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.rulebook-btn:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 8px 25px rgba(93, 93, 245, 0.4), 0 4px 15px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, rgba(93, 93, 245, 0.9), rgba(93, 93, 245, 0.7));
}

.rulebook-btn .fas {
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.rulebook-btn:hover .fas {
  transform: scale(1.2) rotate(5deg);
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.rulebook-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.rulebook-btn:hover::before {
  left: 100%;
}

/* Active state for download feedback */
.rulebook-btn:active {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 4px 15px rgba(93, 93, 245, 0.3);
}

/* STUNNING ANIMATED REGISTER BUTTONS FOR IDEATHON & ELOCUTION */

/* Enhanced Register Button Base for Competition Events */
.event-card-container[data-event="ideathon"] .register-btn,
.event-card-container[data-event="elocution"] .register-btn {
  position: relative;
  overflow: hidden;
  background: linear-gradient(45deg, 
    rgba(93, 93, 245, 0.9), 
    rgba(255, 215, 0, 0.8), 
    rgba(93, 93, 245, 0.9)
  );
  background-size: 300% 300%;
  animation: gradientShift 3s ease-in-out infinite;
  border: 2px solid transparent;
  border-radius: 50px;
  padding: 1rem 2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 
    0 8px 25px rgba(93, 93, 245, 0.4),
    0 0 40px rgba(255, 215, 0, 0.3);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

/* Floating Particles Background */
.event-card-container[data-event="ideathon"] .register-btn::before,
.event-card-container[data-event="elocution"] .register-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.8) 2px, transparent 2px),
    radial-gradient(circle at 80% 50%, rgba(255, 215, 0, 0.8) 1px, transparent 1px),
    radial-gradient(circle at 40% 80%, rgba(93, 93, 245, 0.8) 1px, transparent 1px);
  background-size: 50px 50px, 30px 30px, 40px 40px;
  animation: particleFloat 4s ease-in-out infinite;
  opacity: 0.6;
  border-radius: 50px;
  z-index: 1;
}

/* Shimmer Effect */
.event-card-container[data-event="ideathon"] .register-btn::after,
.event-card-container[data-event="elocution"] .register-btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, 
    transparent 30%, 
    rgba(255, 255, 255, 0.8) 50%, 
    transparent 70%
  );
  animation: shimmerSweep 2.5s ease-in-out infinite;
  z-index: 2;
  border-radius: 50px;
}

/* Text and Icon Styling */
.event-card-container[data-event="ideathon"] .register-btn i,
.event-card-container[data-event="elocution"] .register-btn i {
  position: relative;
  z-index: 3;
  font-size: 1.2rem;
  animation: iconPulse 2s ease-in-out infinite;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.event-card-container[data-event="ideathon"] .register-btn span,
.event-card-container[data-event="elocution"] .register-btn span {
  position: relative;
  z-index: 3;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Hover Effects - DRAMATIC */
.event-card-container[data-event="ideathon"] .register-btn:hover,
.event-card-container[data-event="elocution"] .register-btn:hover {
  transform: translateY(-8px) scale(1.08);
  background: linear-gradient(45deg, 
    rgba(255, 215, 0, 1), 
    rgba(93, 93, 245, 1), 
    rgba(255, 215, 0, 1)
  );
  background-size: 400% 400%;
  animation: gradientShiftHover 1.5s ease-in-out infinite;
  box-shadow: 
    0 15px 40px rgba(93, 93, 245, 0.6),
    0 5px 20px rgba(255, 215, 0, 0.5),
    0 0 60px rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.event-card-container[data-event="ideathon"] .register-btn:hover i,
.event-card-container[data-event="elocution"] .register-btn:hover i {
  transform: rotate(360deg) scale(1.3);
  animation: iconSpinGlow 1s ease-in-out infinite;
  color: rgba(255, 255, 255, 1);
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}

.event-card-container[data-event="ideathon"] .register-btn:hover span,
.event-card-container[data-event="elocution"] .register-btn:hover span {
  text-shadow: 
    0 0 10px rgba(255, 255, 255, 0.8),
    0 2px 8px rgba(0, 0, 0, 0.5);
  animation: textGlow 1.5s ease-in-out infinite alternate;
}

/* Keyframe Animations */
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes gradientShiftHover {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes particleFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  25% { transform: translateY(-10px) rotate(90deg); }
  50% { transform: translateY(0px) rotate(180deg); }
  75% { transform: translateY(-5px) rotate(270deg); }
}

@keyframes shimmerSweep {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  50% { transform: translateX(50%) translateY(0%) rotate(45deg); opacity: 1; }
  100% { transform: translateX(200%) translateY(100%) rotate(45deg); opacity: 0; }
}

@keyframes iconPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

@keyframes iconSpinGlow {
  0%, 100% { 
    transform: rotate(0deg) scale(1.3);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
  }
  50% { 
    transform: rotate(180deg) scale(1.4);
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 1));
  }
}

@keyframes textGlow {
  0% { 
    text-shadow: 
      0 0 5px rgba(255, 255, 255, 0.8),
      0 2px 8px rgba(0, 0, 0, 0.5);
  }
  100% { 
    text-shadow: 
      0 0 20px rgba(255, 255, 255, 1),
      0 0 30px rgba(255, 215, 0, 0.8),
      0 2px 8px rgba(0, 0, 0, 0.5);
  }
}

/* Special Effects for Ideathon (Lightbulb icon theme) */
.event-card-container[data-event="ideathon"] .register-btn {
  background: linear-gradient(45deg, 
    rgba(93, 93, 245, 0.9), 
    rgba(255, 193, 7, 0.8), 
    rgba(93, 93, 245, 0.9)
  );
}

.event-card-container[data-event="ideathon"] .register-btn:hover {
  background: linear-gradient(45deg, 
    rgba(255, 193, 7, 1), 
    rgba(93, 93, 245, 1), 
    rgba(255, 193, 7, 1)
  );
}

/* Special Effects for Elocution (Microphone theme) */
.event-card-container[data-event="elocution"] .register-btn {
  background: linear-gradient(45deg, 
    rgba(93, 93, 245, 0.9), 
    rgba(139, 69, 19, 0.8), 
    rgba(93, 93, 245, 0.9)
  );
}

.event-card-container[data-event="elocution"] .register-btn:hover {
  background: linear-gradient(45deg, 
    rgba(139, 69, 19, 1), 
    rgba(93, 93, 245, 1), 
    rgba(139, 69, 19, 1)
  );
}

/* Mobile Responsive Styles for Enhanced Register Buttons */
@media (max-width: 768px) {
  .event-card-container[data-event="ideathon"] .register-btn,
  .event-card-container[data-event="elocution"] .register-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border-radius: 40px;
  }
  
  .event-card-container[data-event="ideathon"] .register-btn i,
  .event-card-container[data-event="elocution"] .register-btn i {
    font-size: 1rem;
  }
  
  .event-card-container[data-event="ideathon"] .register-btn:hover,
  .event-card-container[data-event="elocution"] .register-btn:hover {
    transform: translateY(-4px) scale(1.05);
  }
}

@media (max-width: 480px) {
  .event-card-container[data-event="ideathon"] .register-btn,
  .event-card-container[data-event="elocution"] .register-btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    gap: 0.6rem;
  }
  
  .event-card-container[data-event="ideathon"] .register-btn:hover,
  .event-card-container[data-event="elocution"] .register-btn:hover {
    transform: translateY(-3px) scale(1.03);
  }
}

/* Default Register Button - For Non-Competition Events */
.register-btn {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1.8rem;
  background: linear-gradient(135deg, rgba(93, 93, 245, 0.9), rgba(93, 93, 245, 0.7));
  border: 3px solid rgba(93, 93, 245, 0.6);
  border-radius: 50px;
  color: white;
  font-family: 'Inclusive Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 
    0 6px 20px rgba(93, 93, 245, 0.4),
    0 2px 10px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
  transform-style: preserve-3d;
}

/* Pulse animation for default register button */
.register-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.6s ease;
  z-index: 0;
}

.register-btn:hover::after {
  width: 300%;
  height: 300%;
  opacity: 0;
}

.register-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.7), 
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.8s ease;
  z-index: 1;
}

.register-btn:hover::before {
  left: 100%;
}

.register-btn:hover {
  background: linear-gradient(135deg, 
    rgba(93, 93, 245, 1), 
    rgba(93, 93, 245, 0.9),
    rgba(115, 115, 255, 1)
  );
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-10px) scale(1.12) rotateX(10deg);
  box-shadow: 
    0 20px 50px rgba(93, 93, 245, 0.7),
    0 8px 25px rgba(0, 0, 0, 0.4),
    inset 0 2px 10px rgba(255, 255, 255, 0.3);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.register-btn i {
  font-size: 1.3rem;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 2;
  position: relative;
}

.register-btn:hover i {
  transform: rotate(360deg) scale(1.3);
  filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.8));
  color: rgba(255, 255, 255, 1);
}

/* Detail Event Card - Optimized to stay within bounds */
.detail-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 500px;
  background: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 25px;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  z-index: 10;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.detail-card.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.detail-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(93, 93, 245, 0.1) 0%, 
    rgba(255, 255, 255, 0.05) 50%, 
    rgba(93, 93, 245, 0.1) 100%
  );
  border-radius: 25px;
  z-index: -1;
}

/* Detail Header - Optimized */
.detail-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  flex-shrink: 0;
}

.event-logo-small {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.event-logo-small img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: brightness(1.1);
}

.event-info {
  flex: 1;
  margin-left: 1.5rem;
}

.event-info .event-title {
  font-family: 'Inknut Antiqua', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  margin: 0 0 0.5rem 0;
}

.close-detail-btn {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.close-detail-btn:hover {
  background: rgba(255, 107, 107, 0.3);
  border-color: rgba(255, 107, 107, 0.5);
  color: white;
  transform: scale(1.1);
}

.close-detail-btn i {
  font-size: 1.2rem;
}

/* Detail Content - Optimized with scrolling */
.detail-content {
  padding: 1.5rem 2rem;
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
}

/* Custom scrollbar for detail content */
.detail-content::-webkit-scrollbar {
  width: 6px;
}

.detail-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

.detail-content::-webkit-scrollbar-thumb {
  background: rgba(93, 93, 245, 0.6);
  border-radius: 3px;
}

.detail-content::-webkit-scrollbar-thumb:hover {
  background: rgba(93, 93, 245, 0.8);
}

.event-date-time {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.date-section,
.time-section,
.location-section {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.date-section:hover,
.time-section:hover,
.location-section:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(93, 93, 245, 0.3);
  transform: translateY(-2px);
}

.date-section i,
.time-section i,
.location-section i {
  font-size: 1.2rem;
  color: rgba(93, 93, 245, 0.8);
  width: 20px;
  text-align: center;
}

.date-section span,
.time-section span,
.location-section span {
  font-family: 'Inclusive Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.event-description {
  margin-bottom: 1.5rem;
}

.event-description p {
  font-family: 'Inclusive Sans', sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1rem;
}

.event-description h4 {
  font-family: 'Inknut Antiqua', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  margin: 1rem 0 0.8rem 0;
}

.event-description ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.event-description li {
  font-family: 'Inclusive Sans', sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.event-description li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 0.5rem;
  color: rgba(93, 93, 245, 0.8);
  font-size: 0.8rem;
}

/* Detail Actions - Optimized */
.detail-actions {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
  padding-bottom: 0.5rem;
}

.register-btn-detail,
.info-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-family: 'Inclusive Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-decoration: none;
  border: none;
  position: relative;
  overflow: hidden;
}

.register-btn-detail {
  background: linear-gradient(135deg, rgba(93, 93, 245, 0.8), rgba(93, 93, 245, 0.6));
  border: 2px solid rgba(93, 93, 245, 0.5);
  color: white;
  flex: 1;
  justify-content: center;
}

.info-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
  min-width: 140px;
}

.register-btn-detail:hover {
  background: linear-gradient(135deg, 
    rgba(93, 93, 245, 1), 
    rgba(93, 93, 245, 0.9),
    rgba(115, 115, 255, 1)
  );
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 
    0 15px 35px rgba(93, 93, 245, 0.6),
    0 5px 15px rgba(0, 0, 0, 0.3);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.info-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.6);
  color: white;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 
    0 15px 35px rgba(255, 255, 255, 0.3),
    0 5px 15px rgba(0, 0, 0, 0.2);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Professional Card Container Hover Effects */
.event-card-container:hover .main-card {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 
    0 15px 40px rgba(0, 0, 0, 0.15),
    0 8px 20px rgba(93, 93, 245, 0.15);
  border-color: rgba(93, 93, 245, 0.35);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.event-card-container:hover .main-card::after {
  opacity: 0.8;
}

/* Professional Card reveal animation */
.event-card-container {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .event-card-container {
    height: 400px;
    margin-bottom: 1.5rem;
  }
  
  .main-card {
    padding: 1.2rem 1rem;
    border-radius: 25px;
  }
  
  .event-logo-container {
    width: 280px;
    height: 280px;
    margin-bottom: 0.8rem;
  }
  
  .event-logo {
    width: 250px;
    height: 250px;
  }
  
  .event-title-main {
    font-size: 1.4rem;
    margin: 0.8rem 0;
  }
  
  .register-btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.85rem;
  }
  
  .event-date-display {
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.8rem 1rem;
  }
  
  .event-day {
    font-size: 1.6rem;
  }
  
  .event-month {
    font-size: 0.85rem;
  }
  
  .detail-header {
    padding: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .event-info {
    margin-left: 0;
  }
  
  .close-detail-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
  }
  
  .detail-content {
    padding: 1.5rem;
  }
  
  .event-date-time {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  
  .detail-actions {
    flex-direction: column;
  }
  
  .register-btn-detail,
  .info-btn {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .event-card-container {
    height: 380px;
  }
  
  .main-card {
    padding: 1rem 0.8rem;
  }
  
  .event-logo-container {
    width: 220px;
    height: 220px;
    margin-bottom: 0.6rem;
  }
  
  .event-logo {
    width: 190px;
    height: 190px;
  }
  
  .event-title-main {
    font-size: 1.2rem;
    margin: 0.6rem 0;
  }
  
  .event-date-display {
    top: 1rem;
    right: 1rem;
    padding: 0.6rem 0.8rem;
  }
  
  .event-day {
    font-size: 1.4rem;
  }
  
  .event-month {
    font-size: 0.75rem;
  }
  
  .register-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
  }
  
  .event-status {
    padding: 0.4rem 1.2rem;
    font-size: 0.7rem;
    margin-bottom: 0.6rem;
  }
}

/* Event Logo Fallback Styles - Clean Version */
.event-logo,
.event-logo-small img {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Clean emoji fallbacks removed - logos should load properly */

/* Events Section Updates */
.events-section {
    position: relative;
    padding: 80px 20px;
    min-height: 100vh;
    background: radial-gradient(circle at 50% 50%, rgba(255, 107, 107, 0.1) 0%, rgba(69, 183, 209, 0.1) 35%, rgba(150, 206, 180, 0.1) 70%, rgba(254, 202, 87, 0.1) 100%);
    z-index: 2;
}

.events-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.events-title {
    font-family: 'Inknut Antiqua', serif;
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ff6b6b, #45b7d1, #96ceb4, #feca57);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGradient 4s ease-in-out infinite;
}

.events-subtitle {
    font-family: 'Inclusive Sans', sans-serif;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

/* Prize Pool Section - Spectacular Design */
.prize-pool-section {
    margin: 3rem auto 4rem;
    max-width: 800px;
    position: relative;
    perspective: 1000px;
}

.prize-pool-container {
    position: relative;
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.15) 0%, 
        rgba(255, 193, 7, 0.2) 25%, 
        rgba(255, 152, 0, 0.15) 50%, 
        rgba(255, 87, 34, 0.2) 75%, 
        rgba(255, 215, 0, 0.15) 100%);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 25px;
    padding: 3rem 2rem;
    box-shadow: 
        0 20px 60px rgba(255, 215, 0, 0.1),
        0 0 80px rgba(255, 193, 7, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    overflow: hidden;
    transform-style: preserve-3d;
    animation: prizeContainerGlow 4s ease-in-out infinite;
}

@keyframes prizeContainerGlow {
    0%, 100% {
        box-shadow: 
            0 20px 60px rgba(255, 215, 0, 0.1),
            0 0 80px rgba(255, 193, 7, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow: 
            0 25px 80px rgba(255, 215, 0, 0.2),
            0 0 120px rgba(255, 193, 7, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
}

/* Floating Background Effects */
.prize-pool-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.prize-sparkle {
    position: absolute;
    font-size: 1.5rem;
    animation: sparkleFloat 6s ease-in-out infinite;
    opacity: 0.7;
}

.prize-sparkle-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 5s;
}

.prize-sparkle-2 {
    top: 20%;
    right: 15%;
    animation-delay: 1s;
    animation-duration: 6s;
}

.prize-sparkle-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
    animation-duration: 4s;
}

.prize-sparkle-4 {
    bottom: 15%;
    right: 10%;
    animation-delay: 3s;
    animation-duration: 7s;
}

.prize-sparkle-5 {
    top: 50%;
    left: 5%;
    animation-delay: 4s;
    animation-duration: 5s;
}

@keyframes sparkleFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.7;
    }
    25% {
        transform: translateY(-20px) rotate(90deg) scale(1.2);
        opacity: 1;
    }
    50% {
        transform: translateY(-10px) rotate(180deg) scale(0.8);
        opacity: 0.8;
    }
    75% {
        transform: translateY(-30px) rotate(270deg) scale(1.1);
        opacity: 0.9;
    }
}

/* Prize Pool Content */
.prize-pool-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.prize-pool-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
    animation: iconBounce 2s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5));
}

@keyframes iconBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) scale(1);
    }
    40% {
        transform: translateY(-15px) scale(1.1);
    }
    60% {
        transform: translateY(-8px) scale(1.05);
    }
}

.prize-pool-heading {
    font-family: 'Inknut Antiqua', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 
        0 2px 10px rgba(255, 215, 0, 0.3),
        0 0 30px rgba(255, 193, 7, 0.2);
    animation: headingGlow 3s ease-in-out infinite alternate;
}

@keyframes headingGlow {
    from {
        text-shadow: 
            0 2px 10px rgba(255, 215, 0, 0.3),
            0 0 30px rgba(255, 193, 7, 0.2);
    }
    to {
        text-shadow: 
            0 2px 15px rgba(255, 215, 0, 0.5),
            0 0 40px rgba(255, 193, 7, 0.4);
    }
}

/* Prize Amount Container */
.prize-amount-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-family: 'Inknut Antiqua', serif;
}

.currency-symbol {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(45deg, #FFD700, #FFA500, #FF8C00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: currencyPulse 2s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.prize-amount {
    font-size: 4.5rem;
    font-weight: 900;
    background: linear-gradient(45deg, #FFD700, #FFA500, #FF8C00, #FFD700);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: amountShine 3s ease-in-out infinite;
    text-shadow: 0 0 50px rgba(255, 215, 0, 0.6);
    position: relative;
}

.plus-symbol {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: plusPulse 2s ease-in-out infinite 0.5s;
}

@keyframes currencyPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes amountShine {
    0%, 100% { 
        background-position: 0% 50%;
        transform: scale(1);
    }
    50% { 
        background-position: 100% 50%;
        transform: scale(1.05);
    }
}

@keyframes plusPulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(180deg); }
}

.prize-pool-description {
    font-family: 'Inclusive Sans', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    animation: descriptionFade 4s ease-in-out infinite;
}

@keyframes descriptionFade {
    0%, 100% { opacity: 0.9; }
    50% { opacity: 1; }
}

/* Prize Categories */
.prize-categories {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.prize-category {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: categoryFloat 6s ease-in-out infinite;
}

.prize-category:nth-child(1) { animation-delay: 0s; }
.prize-category:nth-child(2) { animation-delay: 1s; }
.prize-category:nth-child(3) { animation-delay: 2s; }

@keyframes categoryFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.prize-category:hover {
    transform: translateY(-8px) scale(1.05);
    background: rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.category-icon {
    font-size: 1.3rem;
    animation: iconWiggle 3s ease-in-out infinite;
}

@keyframes iconWiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

    .category-text {
        font-family: 'Inclusive Sans', sans-serif;
        font-size: 0.9rem;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.9);
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    }

    /* Prize Pool Responsive Design */
    @media (max-width: 768px) {
        .prize-pool-container {
            padding: 2rem 1.5rem;
            margin: 2rem 1rem 3rem;
        }
        
        .prize-pool-heading {
            font-size: 1.4rem;
        }
        
        .currency-symbol {
            font-size: 2.5rem;
        }
        
        .prize-amount {
            font-size: 3.5rem;
        }
        
        .plus-symbol {
            font-size: 2.5rem;
        }
        
        .prize-categories {
            gap: 1rem;
        }
        
        .prize-category {
            padding: 0.6rem 1rem;
            flex: 1;
            min-width: 120px;
        }
        
        .category-text {
            font-size: 0.8rem;
        }
        
        .category-icon {
            font-size: 1.1rem;
        }
    }

    @media (max-width: 480px) {
        .prize-pool-container {
            padding: 1.5rem 1rem;
            margin: 1.5rem 0.5rem 2.5rem;
        }
        
        .prize-pool-heading {
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }
        
        .currency-symbol {
            font-size: 2rem;
        }
        
        .prize-amount {
            font-size: 2.8rem;
        }
        
        .plus-symbol {
            font-size: 2rem;
        }
        
        .prize-pool-description {
            font-size: 1rem;
            margin-bottom: 1.5rem;
        }
        
        .prize-categories {
            flex-direction: column;
            gap: 0.8rem;
        }
        
        .prize-category {
            padding: 0.7rem 1rem;
            justify-content: center;
        }
        
        .prize-sparkle {
            font-size: 1.2rem;
        }
    }.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
    width: 100%;
    padding: 0 1rem;
}

/* Ensure event containers maintain proper spacing and don't overflow */
.events-grid .event-card-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  overflow: hidden;
}

/* Hide original event card styles when using new system */
.events-grid .event-card:not(.main-card):not(.detail-card) {
  display: none;
}

/* Card padding scales down on small screens */
.event-card { border-radius: 18px; }
.event-header, .event-content { padding: clamp(0.75rem, 1vw + 0.5rem, 1.5rem); }

/* Make event metadata wrap nicely */
.event-time, .event-location { flex-wrap: wrap; }

.event-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.event-card:hover {
    transform: translateY(-4px) scale(1.01);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.event-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem;
    border-radius: 12px;
    min-width: 60px;
}

.event-day {
    font-family: 'Inknut Antiqua', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    line-height: 1;
}

.event-month {
    font-family: 'Inclusive Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-status {
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-family: 'Inclusive Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-upcoming {
    background: rgba(78, 205, 196, 0.3);
    color: #4ecdc4;
    border: 1px solid rgba(78, 205, 196, 0.5);
}

.status-workshop {
    background: rgba(69, 183, 209, 0.3);
    color: #45b7d1;
    border: 1px solid rgba(69, 183, 209, 0.5);
}

.status-mentorship {
    background: rgba(150, 206, 180, 0.3);
    color: #96ceb4;
    border: 1px solid rgba(150, 206, 180, 0.5);
}

.status-deadline {
    background: rgba(255, 107, 107, 0.3);
    color: #ff6b6b;
    border: 1px solid rgba(255, 107, 107, 0.5);
}

.status-competition {
    background: rgba(254, 202, 87, 0.3);
    color: #feca57;
    border: 1px solid rgba(254, 202, 87, 0.5);
}

.status-celebration {
    background: rgba(155, 89, 182, 0.3);
    color: #9b59b6;
    border: 1px solid rgba(155, 89, 182, 0.5);
}

.event-content {
    padding: 1.5rem;
    text-align: left;
}

.event-title {
    font-family: 'Inknut Antiqua', serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: white;
    margin-bottom: 1rem;
}

.event-time,
.event-location {
    font-family: 'Inclusive Sans', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.event-description {
    font-family: 'Inclusive Sans', sans-serif;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 1rem 0 1.5rem 0;
    font-size: 0.9rem;
}

.event-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.event-tag {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-family: 'Inclusive Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.event-tag:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Responsive Design for Events - Mobile First Approach */
@media (max-width: 768px) {
    .events-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.5rem;
        margin-top: 2rem;
    }
    
    .events-grid .event-card-container {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        overflow: hidden;
    }
    
    .events-title {
        font-size: 2rem;
    }
    
    .event-header {
        padding: 1rem;
    }
    
    .event-content {
        padding: 1rem;
    }
}

@media (max-width: 600px) {
    .events-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0;
        margin-left: 0;
        margin-right: 0;
    }
    
    .events-grid .event-card-container {
        max-width: 100%;
        margin: 0;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .events-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0;
        width: 100%;
    }
    
    .events-grid .event-card-container {
        width: 100%;
        max-width: 100%;
        margin: 0;
    }
}

/* About Section */
.about-section {
    position: relative;
    padding: 80px 20px;
    min-height: 100vh;
    background: radial-gradient(circle at 30% 70%, rgba(69, 183, 209, 0.1) 0%, rgba(150, 206, 180, 0.1) 50%, rgba(255, 107, 107, 0.1) 100%);
    z-index: 2;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.about-title {
    font-family: 'Inknut Antiqua', serif;
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGradient 4s ease-in-out infinite;
}

.about-subtitle {
    font-family: 'Inclusive Sans', sans-serif;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 4rem;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

/* Card padding scales down on small screens */
.about-card { border-radius: 18px; }
.about-header, .about-content { padding: clamp(0.75rem, 1vw + 0.5rem, 1.5rem); }

.about-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.about-card:hover::before {
    left: 100%;
}

.about-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #feca57, #96ceb4);
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-card:hover::after {
    opacity: 0.4;
}

.about-card:hover {
    transform: translateY(-15px) scale(1.02);
    background: rgba(255, 255, 255, 0.22);
    box-shadow: 0 20px 60px rgba(255, 107, 107, 0.2);
    border: 1px solid rgba(255, 107, 107, 0.4);
}

.about-card .card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    position: relative;
}

.about-card .card-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.25) 0%, rgba(76, 205, 196, 0.25) 50%, rgba(254, 202, 87, 0.25) 100%);
    border-radius: 50%;
    z-index: -1;
    transition: all 0.4s ease;
    opacity: 0;
}

.about-card:hover .card-icon::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.about-card .card-icon-img {
    width: 85px;
    height: 85px;
    object-fit: contain;
    filter: brightness(1.1) contrast(1.1) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 12px;
}

.about-card:hover .card-icon-img {
    filter: brightness(1.3) contrast(1.2) drop-shadow(0 6px 12px rgba(0, 0, 0, 0.3));
}

.about-card h3 {
    font-family: 'Inknut Antiqua', serif;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
    background: linear-gradient(45deg, #96ceb4, #feca57, #45b7d1);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.about-card:hover h3 {
    transform: translateY(-2px);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.about-card p {
    font-family: 'Inclusive Sans', sans-serif;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-align: justify;
    text-justify: inter-word;
}

.about-card:hover p {
    color: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
}

/* Card Action Button */
.card-action {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
}

.know-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-family: 'Inclusive Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.know-more-btn:hover {
    background: rgba(255, 107, 107, 0.2);
    border: 1px solid rgba(255, 107, 107, 0.4);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
}

.know-more-btn i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.know-more-btn:hover i {
    transform: rotate(45deg);
}

/* Day Navigation */
.day-navigation {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.day-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Space Grotesk', sans-serif;
    display: flex;
    align-items: center;
    gap: 1rem;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.day-btn:hover {
    background: rgba(78, 205, 196, 0.2);
    border-color: rgba(78, 205, 196, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(78, 205, 196, 0.2);
}

.day-btn.active {
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.3), rgba(69, 183, 209, 0.3));
    border-color: #4ecdc4;
    box-shadow: 0 10px 30px rgba(78, 205, 196, 0.3);
    transform: translateY(-2px);
}

.day-number {
    font-size: 2rem;
    font-weight: 800;
    color: #4ecdc4;
    min-width: 40px;
    text-align: center;
}

.day-info {
    text-align: left;
}

.day-date {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    display: block;
    margin-bottom: 0.2rem;
}

.day-theme {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.2;
}

/* Timeline Content */
.timeline-content {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 2rem;
    backdrop-filter: blur(15px);
    min-height: 500px;
}

.timeline-day {
    display: none;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.timeline-day.active {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.day-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(78, 205, 196, 0.3);
}

.day-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4ecdc4;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(78, 205, 196, 0.3);
}

.day-theme-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    font-style: italic;
}

/* Timeline Events */
.timeline-events {
    position: relative;
    padding-left: 2rem;
}

.timeline-events::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #ff6b6b, #4ecdc4, #45b7d1);
    border-radius: 2px;
}

.timeline-event {
    position: relative;
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(30px);
    animation: slideInLeft 0.6s ease-out forwards;
}

.timeline-event:nth-child(1) { animation-delay: 0.1s; }
.timeline-event:nth-child(2) { animation-delay: 0.2s; }
.timeline-event:nth-child(3) { animation-delay: 0.3s; }
.timeline-event:nth-child(4) { animation-delay: 0.4s; }
.timeline-event:nth-child(5) { animation-delay: 0.5s; }
.timeline-event:nth-child(6) { animation-delay: 0.6s; }

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.timeline-event:hover {
    transform: translateX(10px);
    border-color: rgba(78, 205, 196, 0.5);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.timeline-event::before {
    content: '';
    position: absolute;
    left: -2.5rem;
    top: 1.5rem;
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    border: 3px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 15px rgba(78, 205, 196, 0.4);
}

.event-time {
    min-width: 120px;
    color: #4ecdc4;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    background: rgba(78, 205, 196, 0.1);
    border: 1px solid rgba(78, 205, 196, 0.3);
    border-radius: 10px;
    text-align: center;
    height: fit-content;
}

.event-content {
    flex: 1;
}

.event-title {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.event-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .day-navigation {
        gap: 1rem;
    }
    
    .day-btn {
        padding: 1rem 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .day-number {
        font-size: 1.5rem;
    }
    
    .day-date {
        font-size: 0.9rem;
    }
    
    .day-theme {
        font-size: 0.8rem;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    .day-title {
        font-size: 2rem;
    }
    
    .timeline-events {
        padding-left: 1.5rem;
    }
    
    .timeline-event {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .timeline-event::before {
        left: -2rem;
        top: 1rem;
    }
    
    .event-time {
        min-width: auto;
        width: fit-content;
    }
    
    .event-title {
        font-size: 1.1rem;
    }
    
    .event-description {
        font-size: 0.9rem;
    }
}

/* Contact Section */
.contact-section {
    position: relative;
    padding: 80px 20px;
    min-height: 100vh;
    background: radial-gradient(circle at 70% 30%, rgba(150, 206, 180, 0.1) 0%, rgba(254, 202, 87, 0.1) 50%, rgba(69, 183, 209, 0.1) 100%);
    z-index: 2;
    overflow: hidden;
}

/* Add floating background elements */
.contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, rgba(150, 206, 180, 0.03), transparent 30%);
    animation: rotate 60s linear infinite;
    z-index: -1;
}

.contact-section::after {
    content: '';
    position: absolute;
    top: 20%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(254, 202, 87, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
    z-index: -1;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-30px) scale(1.1); }
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.contact-title {
    font-family: 'Inknut Antiqua', serif;
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #96ceb4, #feca57, #45b7d1);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGradient 4s ease-in-out infinite;
    position: relative;
    display: inline-block;
}

/* Add glowing effect to title */
.contact-title::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #96ceb4, #feca57, #45b7d1);
    background-size: 200% 200%;
    animation: titleGradient 4s ease-in-out infinite;
    filter: blur(20px);
    opacity: 0.3;
    z-index: -1;
}

.contact-subtitle {
    font-family: 'Inclusive Sans', sans-serif;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out 0.5s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
    align-items: start;
}

/* Card padding scales down on small screens */
.contact-card { border-radius: 18px; }
.contact-header, .contact-content { padding: clamp(0.75rem, 1vw + 0.5rem, 1.5rem); }

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    animation: slideInLeft 0.8s ease-out both;
}

/* Stagger animation for cards */
.contact-card:nth-child(1) { animation-delay: 0.1s; }
.contact-card:nth-child(2) { animation-delay: 0.2s; }
.contact-card:nth-child(3) { animation-delay: 0.3s; }

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Add subtle moving gradient border */
.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(150, 206, 180, 0.3), transparent);
    background-size: 200% 200%;
    animation: borderFlow 3s linear infinite;
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.contact-card:hover::before {
    opacity: 1;
}

@keyframes borderFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.contact-card:hover {
    transform: translateX(10px) translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 50px rgba(150, 206, 180, 0.1);
    border-color: rgba(150, 206, 180, 0.4);
}

.contact-card .contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    background: linear-gradient(45deg, #96ceb4, #feca57, #45b7d1);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: iconGradient 3s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(150, 206, 180, 0.3));
}

@keyframes iconGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.contact-card h3 {
    font-family: 'Inknut Antiqua', serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: white;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-card p {
    font-family: 'Inclusive Sans', sans-serif;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-weight: 400;
}

.contact-card p a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.4s ease;
    border-bottom: 1px solid transparent;
    position: relative;
    padding: 2px 0;
    font-weight: 500;
}

/* Enhanced link hover effect */
.contact-card p a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #4ecdc4, #96ceb4);
    transition: width 0.4s ease;
}

.contact-card p a:hover::before {
    width: 100%;
}

.contact-card p a:hover {
    color: #4ecdc4;
    text-shadow: 0 0 15px rgba(78, 205, 196, 0.6);
    transform: translateX(5px);
}

/* Add pulse animation to contact cards */
@keyframes pulse {
    0%, 100% { box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); }
    50% { box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 0 30px rgba(150, 206, 180, 0.2); }
}

.contact-card {
    animation: pulse 4s ease-in-out infinite;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.form-container h3 {
    font-family: 'Inknut Antiqua', serif;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: white;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-family: 'Inclusive Sans', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.form-button {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    color: white;
    font-family: 'Inclusive Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-button:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.2));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Responsive Design for About and Contact */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-section {
        padding: 60px 15px;
    }
    
    .contact-section::after {
        width: 250px;
        height: 250px;
        top: 10%;
        right: -20%;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-title {
        font-size: 2.2rem;
    }
    
    .contact-subtitle {
        font-size: 1rem;
        margin-bottom: 3rem;
    }
    
    .contact-card {
        padding: 1.2rem;
        animation: slideInUp 0.8s ease-out both;
    }
    
    .contact-card:hover {
        transform: translateY(-5px);
    }
    
    .contact-card .contact-icon {
        font-size: 2rem;
    }
    
    .contact-card h3 {
        font-size: 1.2rem;
    }
    
    .contact-card p {
        font-size: 0.9rem;
    }
    
    @keyframes slideInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .about-title,
    .contact-title {
        font-size: 2rem;
    }
}

/* Footer Styles - Glass Morphism Design */
.main-footer {
    position: relative;
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 4rem;
    padding: 3rem 0 1.5rem 0;
    overflow: hidden;
    z-index: 10;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

/* Footer Brand Section */
.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.footer-logo {
    width: 60px;
    height: 60px;
    transition: all 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(93, 93, 245, 0.4);
}

.footer-title-group {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.footer-title {
    font-family: 'Inknut Antiqua', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin: 0;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.footer-tagline {
    font-family: 'Inclusive Sans', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

/* Footer Social Section */
.footer-social {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}

.social-heading {
    font-family: 'Inknut Antiqua', serif;
    font-size: 1.2rem;
    color: white;
    margin: 0;
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-family: 'Inclusive Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    max-width: 200px;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-link i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.social-link.linkedin:hover {
    border-color: rgba(0, 119, 181, 0.5);
    box-shadow: 0 5px 15px rgba(0, 119, 181, 0.3);
}

.social-link.instagram:hover {
    border-color: rgba(225, 48, 108, 0.5);
    box-shadow: 0 5px 15px rgba(225, 48, 108, 0.3);
}

.social-link.facebook:hover {
    border-color: rgba(24, 119, 242, 0.5);
    box-shadow: 0 5px 15px rgba(24, 119, 242, 0.3);
}

.social-link.whatsapp:hover {
    border-color: rgba(37, 211, 102, 0.5);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* Footer Links Section */
.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}

.links-heading {
    font-family: 'Inknut Antiqua', serif;
    font-size: 1.2rem;
    color: white;
    margin: 0;
    margin-bottom: 0.5rem;
}

.footer-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding: 0;
    margin: 0;
}

.footer-nav li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-family: 'Inclusive Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.3rem 0;
    border-bottom: 1px solid transparent;
}

.footer-nav li a:hover {
    color: white;
    border-bottom-color: rgba(93, 93, 245, 0.5);
    transform: translateX(5px);
}

/* Footer Divider */
.footer-divider {
    width: 100%;
    height: 1px;
    margin: 2rem 0 1.5rem 0;
    position: relative;
    overflow: hidden;
}

.divider-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(93, 93, 245, 0.3) 20%, 
        rgba(255, 255, 255, 0.5) 50%, 
        rgba(93, 93, 245, 0.3) 80%, 
        transparent 100%
    );
    animation: dividerGlow 4s ease-in-out infinite;
}

@keyframes dividerGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Footer Bottom Section */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
}

.copyright-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.copyright-text {
    font-family: 'Inclusive Sans', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.copyright-text strong {
    color: white;
    font-weight: 600;
}

.organization-text {
    font-family: 'Inclusive Sans', sans-serif;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-style: italic;
}

.footer-year {
    display: flex;
    align-items: center;
}

.year-badge {
    font-family: 'Inknut Antiqua', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    background: rgba(93, 93, 245, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(93, 93, 245, 0.3);
    border-radius: 10px;
    padding: 0.5rem 1rem;
    box-shadow: 0 4px 15px rgba(93, 93, 245, 0.2);
    animation: yearPulse 3s ease-in-out infinite;
}

@keyframes yearPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(93, 93, 245, 0.2);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(93, 93, 245, 0.4);
    }
}

/* Footer Background Effects */
.footer-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.footer-sparkle {
    position: absolute;
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.2rem;
    animation: footerSparkleFloat 8s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.footer-sparkle-1 { 
    top: 20%; 
    left: 10%; 
    animation-delay: 0s; 
}

.footer-sparkle-2 { 
    top: 60%; 
    right: 15%; 
    animation-delay: -2s; 
}

.footer-sparkle-3 { 
    bottom: 30%; 
    left: 30%; 
    animation-delay: -4s; 
}

.footer-sparkle-4 { 
    top: 40%; 
    right: 40%; 
    animation-delay: -6s; 
}

@keyframes footerSparkleFloat {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        opacity: 0.4;
    }
    50% { 
        transform: translateY(-15px) scale(1.2);
        opacity: 0.8;
    }
}

/* Responsive Footer Design */
@media (max-width: 768px) {
    .main-footer {
        padding: 2rem 0 1rem 0;
    }
    
    .footer-container {
        padding: 0 1rem;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-brand,
    .footer-social,
    .footer-links {
        align-items: center;
    }
    
    .footer-logo-wrapper {
        justify-content: center;
    }
    
    .social-links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .social-link {
        max-width: none;
        min-width: 120px;
    }
    
    .footer-nav {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-title {
        font-size: 1.3rem;
    }
    
    .social-heading,
    .links-heading {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .footer-main {
        gap: 1.5rem;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .footer-title {
        font-size: 1.2rem;
    }
    
    .year-badge {
        font-size: 1.3rem;
        padding: 0.4rem 0.8rem;
    }
}

/* ========================================
   COMPREHENSIVE MOBILE OPTIMIZATIONS
   ======================================== */

/* Mobile-First Enhanced Styles */
@media (max-width: 768px) {
  /* Global Mobile Adjustments */
  :root {
    --space-1: 0.2rem;
    --space-2: 0.4rem;
    --space-3: 0.6rem;
    --space-4: 0.8rem;
    --space-6: 1.2rem;
    --space-8: 1.6rem;
  }

  /* Hero Section Mobile Enhancement */
  .full-screen-section {
    padding: 1rem 1rem !important;
    min-height: 100vh !important;
  }

  .countdown-container {
    max-width: 100% !important;
    padding: 0 0.5rem !important;
  }

  .main-title-container {
    padding: 1rem !important;
    margin: 1rem 0 !important;
    text-align: center !important;
  }

  .main-title {
    font-size: clamp(2.2rem, 8vw, 3.2rem) !important;
    line-height: 1.1 !important;
    margin-bottom: 0.5rem !important;
  }

  .logo-title-wrapper {
    flex-direction: row !important;
    align-items: baseline !important;
    gap: 0.2rem !important;
    margin-bottom: 1rem !important;
    justify-content: center !important;
  }

  .logo-title-wrapper #logo {
    width: auto !important;
    height: 4rem !important;
    margin-right: 0.2rem !important;
    margin-bottom: 0 !important;
    transform: translateY(-0.3rem) !important;
  }

  .version-background {
    font-size: 1.4rem !important;
    padding: 0.3rem 0.8rem !important;
    margin: 0.5rem 0 !important;
  }

  .countdown-subtitle {
    font-size: 1rem !important;
    margin: 1rem 0 !important;
    padding: 0 1rem !important;
  }

  /* Countdown Timer Mobile */
  #countdown-section {
    margin: 1.5rem 0 !important;
    padding: 0 1rem !important;
  }

  .countdown-timer {
    font-size: 0.85rem !important;
    padding: 1rem !important;
    max-width: 100% !important;
    overflow: hidden !important;
  }

  /* Register Button Mobile */
  .register-button-container {
    margin: 2rem 0 1rem 0 !important;
    padding: 0 1rem !important;
  }

  .cta-button {
    width: 150px !important;
    height: 45px !important;
    font-size: 0.9rem !important;
    padding: 0.8rem 1.5rem !important;
  }

  /* Scroll Indicator Mobile */
  .scroll-indicator {
    margin-top: 2rem !important;
    padding: 0 1rem !important;
  }

  .scroll-indicator span {
    font-size: 0.9rem !important;
  }

  /* About Section Mobile Enhancement */
  .about-section {
    padding: 3rem 1rem !important;
  }

  .about-container {
    max-width: 100% !important;
  }

  .about-title {
    font-size: clamp(1.8rem, 6vw, 2.8rem) !important;
    margin-bottom: 2rem !important;
    text-align: center !important;
  }

  .about-content {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
    align-items: center !important;
  }

  .about-card {
    width: 100% !important;
    max-width: 400px !important;
    padding: 2rem 1.5rem !important;
    margin: 0 !important;
    text-align: center !important;
  }

  .about-card h3 {
    font-size: 1.3rem !important;
    margin: 1rem 0 !important;
  }

  .about-card p {
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
    text-align: left !important;
  }

  .card-icon-img {
    width: 60px !important;
    height: 60px !important;
    margin-bottom: 1rem !important;
  }

  .know-more-btn {
    padding: 0.6rem 1.2rem !important;
    font-size: 0.85rem !important;
    margin-top: 1rem !important;
  }

  /* Events Section Mobile Enhancement */
  .events-section {
    padding: 3rem 1rem !important;
  }

  .events-container {
    max-width: 100% !important;
  }

  .events-title {
    font-size: clamp(1.8rem, 6vw, 2.8rem) !important;
    margin-bottom: 1rem !important;
    text-align: center !important;
  }

  .events-subtitle {
    font-size: 1rem !important;
    margin-bottom: 2rem !important;
    text-align: center !important;
    padding: 0 1rem !important;
  }

  .events-subheader {
    font-size: 1.5rem !important;
    margin-bottom: 1.5rem !important;
    text-align: center !important;
  }

  .events-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    max-width: 400px !important;
    margin: 0 auto !important;
  }

  /* Mobile Event Card Container */
  .event-card-container {
    height: 380px !important;
    margin-bottom: 1.5rem !important;
  }

  .main-card {
    padding: 2rem 1.5rem !important;
    border-radius: 25px !important;
  }

  .event-logo-container {
    width: 140px !important;
    height: 140px !important;
    margin-bottom: 1rem !important;
  }

  .event-logo {
    width: 100px !important;
    height: 100px !important;
  }

  .event-title-main {
    font-size: 1.6rem !important;
    margin: 1rem 0 !important;
    line-height: 1.2 !important;
  }

  .event-date-display {
    top: 1.5rem !important;
    right: 1.5rem !important;
    padding: 0.8rem 1rem !important;
  }

  .event-day {
    font-size: 1.5rem !important;
  }

  .event-month {
    font-size: 0.8rem !important;
  }

  .event-status {
    padding: 0.6rem 1.5rem !important;
    font-size: 0.8rem !important;
    margin-bottom: 1.2rem !important;
  }

  .register-btn {
    padding: 1rem 2rem !important;
    font-size: 0.95rem !important;
  }

  /* Mobile Detail Card - Optimized */
  .detail-card {
    max-height: 420px !important;
  }

  .detail-header {
    padding: 1rem 1.5rem !important;
    flex-direction: row !important;
    align-items: center !important;
  }

  .event-info {
    margin-left: 1rem !important;
  }

  .event-info .event-title {
    font-size: 1.3rem !important;
  }

  .detail-content {
    padding: 1rem 1.5rem !important;
  }

  .event-date-time {
    grid-template-columns: 1fr !important;
    gap: 0.6rem !important;
    margin-bottom: 1rem !important;
  }

  .date-section,
  .time-section,
  .location-section {
    padding: 0.6rem !important;
    gap: 0.5rem !important;
  }

  .event-description p {
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
    margin-bottom: 0.8rem !important;
  }

  .event-description h4 {
    font-size: 1rem !important;
    margin: 0.8rem 0 0.6rem 0 !important;
  }

  .detail-actions {
    flex-direction: column !important;
    gap: 0.6rem !important;
    margin-top: 1rem !important;
  }

  .register-btn-detail,
  .info-btn {
    justify-content: center !important;
    padding: 1rem 1.5rem !important;
  }

  /* Timeline/Journey Map Mobile Enhancement */
  .timeline-section {
    padding: 3rem 1rem !important;
  }

  .timeline-container {
    max-width: 100% !important;
  }

  .timeline-title {
    font-size: clamp(1.8rem, 6vw, 2.8rem) !important;
    margin-bottom: 1rem !important;
    text-align: center !important;
  }

  .timeline-subtitle {
    font-size: 1rem !important;
    margin-bottom: 2rem !important;
    text-align: center !important;
    padding: 0 1rem !important;
  }

  .timeline-map {
    height: auto !important;
    min-height: auto !important;
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
    padding: 1rem !important;
  }

  .map-path {
    display: none !important;
  }

  .map-location {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    margin: 0 !important;
    width: 100% !important;
    max-width: 400px !important;
    margin: 0 auto !important;
  }

  .location-marker {
    position: relative !important;
    margin-bottom: 1rem !important;
    text-align: center !important;
  }

  .marker-icon {
    font-size: 2rem !important;
    margin-bottom: 0.5rem !important;
  }

  .location-card {
    position: relative !important;
    opacity: 1 !important;
    transform: none !important;
    background: rgba(0, 0, 0, 0.8) !important;
    backdrop-filter: blur(15px) !important;
    border-radius: 15px !important;
    padding: 1.5rem !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    text-align: center !important;
    width: 100% !important;
  }

  .location-title {
    font-size: 1.2rem !important;
    margin-bottom: 0.5rem !important;
  }

  .location-date {
    font-size: 0.9rem !important;
    margin-bottom: 0.8rem !important;
    color: rgba(255, 255, 255, 0.8) !important;
  }

  .location-description {
    font-size: 0.85rem !important;
    line-height: 1.5 !important;
  }

  .location-badge {
    font-size: 0.7rem !important;
    padding: 0.3rem 0.8rem !important;
    margin-top: 1rem !important;
    display: inline-block !important;
  }

  .map-decoration {
    display: none !important;
  }

  /* Contact Section Mobile Enhancement */
  .contact-section {
    padding: 3rem 1rem !important;
  }

  .contact-container {
    max-width: 100% !important;
  }

  .contact-title {
    font-size: clamp(1.8rem, 6vw, 2.8rem) !important;
    margin-bottom: 1rem !important;
    text-align: center !important;
  }

  .contact-subtitle {
    font-size: 1rem !important;
    margin-bottom: 2rem !important;
    text-align: center !important;
    padding: 0 1rem !important;
  }

  .contact-content {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
    align-items: center !important;
  }

  .contact-info {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    width: 100% !important;
    max-width: 400px !important;
  }

  .contact-card {
    padding: 1.5rem !important;
    text-align: center !important;
    width: 100% !important;
  }

  .contact-icon {
    font-size: 2rem !important;
    margin-bottom: 1rem !important;
  }

  .contact-card h3 {
    font-size: 1.2rem !important;
    margin-bottom: 0.8rem !important;
  }

  .contact-card p {
    font-size: 0.9rem !important;
  }

  .contact-card a {
    word-break: break-word !important;
  }

  .contact-form {
    width: 100% !important;
    max-width: 400px !important;
  }

  .form-container {
    padding: 2rem 1.5rem !important;
    width: 100% !important;
  }

  .form-container h3 {
    font-size: 1.3rem !important;
    margin-bottom: 1.5rem !important;
    text-align: center !important;
  }

  .form-group {
    margin-bottom: 1rem !important;
  }

  .form-group input,
  .form-group textarea {
    width: 100% !important;
    padding: 0.8rem !important;
    font-size: 0.9rem !important;
    border-radius: 8px !important;
  }

  .form-button {
    width: 100% !important;
    padding: 0.8rem !important;
    font-size: 0.9rem !important;
    margin-top: 0.5rem !important;
  }

  /* Footer Mobile Enhancement */
  .main-footer {
    padding: 2rem 1rem 1rem 1rem !important;
  }

  .footer-container {
    max-width: 100% !important;
  }

  .footer-main {
    display: flex !important;
    flex-direction: column !important;
    text-align: center !important;
    gap: 2rem !important;
    align-items: center !important;
  }

  .footer-brand {
    max-width: 300px !important;
  }

  .footer-logo-wrapper {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 1rem !important;
  }

  .footer-logo {
    width: 50px !important;
    height: 50px !important;
  }

  .footer-title-group {
    text-align: center !important;
  }

  .footer-title {
    font-size: 1.4rem !important;
    margin-bottom: 0.2rem !important;
  }

  .footer-tagline {
    font-size: 0.9rem !important;
    margin-top: 1rem !important;
  }

  .social-heading,
  .links-heading {
    font-size: 1.1rem !important;
    margin-bottom: 1rem !important;
  }

  .social-links {
    display: flex !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 1rem !important;
  }

  .social-link {
    padding: 0.8rem !important;
    font-size: 0.85rem !important;
  }

  .footer-nav {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.8rem !important;
    align-items: center !important;
  }

  .footer-nav a {
    font-size: 0.9rem !important;
    padding: 0.3rem 0 !important;
  }

  .footer-bottom {
    flex-direction: column !important;
    gap: 1rem !important;
    text-align: center !important;
    margin-top: 1.5rem !important;
  }

  .copyright-text,
  .organization-text {
    font-size: 0.8rem !important;
    text-align: center !important;
    line-height: 1.4 !important;
    padding: 0 1rem !important;
  }

  /* GitHub Button Mobile */
  .github-handle-btn {
    bottom: 1rem !important;
    right: 1rem !important;
    padding: 0.6rem 1rem !important;
    font-size: 0.8rem !important;
    max-width: 60px !important;
    border-radius: 50% !important;
  }

  .github-handle-btn span {
    display: none !important;
  }

  .github-handle-btn i {
    margin: 0 !important;
  }
}

/* Extra Small Phones (480px and below) */
@media (max-width: 480px) {
  /* Ultra Mobile Optimizations */
  .navbar {
    padding: 0.4rem 0.6rem !important;
  }

  .navbar .navbar-links {
    gap: 0.2rem !important;
  }

  .navbar .navbar-links li a {
    padding: 0.35rem 0.5rem !important;
    font-size: 0.7rem !important;
  }

  .main-title {
    font-size: clamp(1.8rem, 10vw, 2.5rem) !important;
  }

  .logo-title-wrapper #logo {
    width: 40px !important;
    height: 40px !important;
  }

  .version-background {
    font-size: 1.1rem !important;
    padding: 0.2rem 0.5rem !important;
  }

  .countdown-subtitle {
    font-size: 0.85rem !important;
  }

  .cta-button {
    width: 130px !important;
    height: 40px !important;
    font-size: 0.8rem !important;
  }

  .about-section,
  .events-section,
  .timeline-section,
  .contact-section {
    padding: 2rem 0.8rem !important;
  }

  .about-card,
  .event-card,
  .location-card,
  .contact-card {
    padding: 1rem !important;
  }

  .event-header {
    flex-direction: column !important;
    gap: 0.5rem !important;
    align-items: center !important;
  }

  .event-tags {
    justify-content: center !important;
  }

  .timeline-map {
    padding: 0.5rem !important;
    gap: 1.5rem !important;
  }

  .main-footer {
    padding: 1.5rem 0.8rem 1rem 0.8rem !important;
  }

  .footer-brand,
  .footer-social,
  .footer-links {
    gap: 1rem !important;
  }

  /* Sparkles scaling for ultra mobile */
  .floating-sparkle,
  .loader-sparkle,
  .footer-sparkle {
    font-size: 0.7rem !important;
  }

  /* Loading screen ultra mobile */
  .loader-content {
    padding: 0.8rem !important;
  }

  .loader-main-title {
    font-size: clamp(1.5rem, 8vw, 2.2rem) !important;
  }

  .loader-subtitle {
    font-size: 0.8rem !important;
  }

  .progress-info {
    font-size: 0.7rem !important;
  }

  .loading-message {
    font-size: 0.8rem !important;
  }
}

/* ========================================
   CRITICAL NAVBAR FIX - OVERRIDE MAIN.CSS COMPLETELY
   ======================================== */

/* Ensure no margin/padding pushes navbar down from top */
html, body {
  margin: 0 !important;
  padding: 0 !important;
}

/* ULTIMATE OVERRIDE: Force override main.css positioning styles */
html body .navbar,
html body nav.navbar,
html body .navbar.navbar,
html body nav.navbar.navbar {
  /* COMPLETELY OVERRIDE main.css fixed positioning - STICK TO TOP */
  position: fixed !important; 
  top: 0 !important; 
  left: 0 !important;
  right: 0 !important;
  transform: none !important;
  
  /* Force full width centering */
  width: 100vw !important;
  max-width: 100vw !important;
  margin: 0 !important;
  padding: 1rem 2rem !important;
  
  /* Glass morphism to match design */
  background: rgba(0, 0, 0, 0.85) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border-radius: 0 !important;
  border: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
  
  /* Force center layout */
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
  
  /* High z-index */
  z-index: 1000 !important;
  
  /* Reset main.css animations and transitions */
  animation: none !important;
  transition: all 0.3s ease !important;
}

/* Force override main.css hover transforms */
html body .navbar:hover,
html body nav.navbar:hover {
  transform: none !important;
  background: rgba(0, 0, 0, 0.92) !important;
}

/* ULTIMATE OVERRIDE: Force center navbar links */
html body .navbar .navbar-links,
html body nav.navbar .navbar-links,
html body .navbar ul,
html body nav.navbar ul {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 0.8rem !important;
  margin: 0 auto !important;
  padding: 0 !important;
  list-style: none !important;
  width: 100% !important;
  max-width: 1200px !important;
  text-align: center !important;
}

/* ULTIMATE OVERRIDE: Reset main.css link styles completely */
html body .navbar .navbar-links li a,
html body nav.navbar .navbar-links li a {
  /* Reset main.css gradient background */
  background: linear-gradient(145deg, 
    rgba(255, 255, 255, 0.12) 0%, 
    rgba(255, 255, 255, 0.08) 100%) !important;
  
  /* Reset main.css text color */
  color: #ffffff !important;
  
  /* Reset main.css sizing */
  font-size: clamp(0.85rem, 0.5vw + 0.7rem, 1rem) !important;
  font-weight: 600 !important;
  padding: 0.65rem 1.3rem !important;
  margin: 0 !important;
  
  /* Reset main.css positioning */
  position: relative !important;
  transform: none !important;
  
  /* Modern styling */
  border-radius: 30px !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
}

/* Force override main.css hover effects */
html body .navbar .navbar-links li a:hover,
html body nav.navbar .navbar-links li a:hover {
  background: linear-gradient(145deg, 
    rgba(255, 255, 255, 0.22) 0%, 
    rgba(255, 255, 255, 0.15) 100%) !important;
  color: #ffffff !important;
  transform: translateY(-2px) scale(1.02) !important;
  border-color: rgba(255, 255, 255, 0.35) !important;
}

/* ========================================
   MOBILE HAMBURGER MENU
   ======================================== */

/* Hamburger Menu Button - Hidden on Desktop */
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1001;
}

.hamburger-menu:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

/* Hamburger Lines */
.hamburger-line {
  width: 20px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
  margin: 2px 0;
  transform-origin: center;
}

/* Animated Hamburger to X */
.hamburger-menu.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Register Button */
.mobile-register-btn {
  display: none;
  padding: 0.6rem 1.2rem;
  background: linear-gradient(145deg, 
    rgba(93, 93, 245, 0.8) 0%, 
    rgba(148, 0, 211, 0.8) 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  line-height: 1;
  transform: translateY(1px);
}

.mobile-register-btn:hover {
  background: linear-gradient(145deg, 
    rgba(93, 93, 245, 0.95) 0%, 
    rgba(148, 0, 211, 0.95) 100%);
  transform: translateY(-1px) scale(1.05);
  box-shadow: 0 8px 20px rgba(93, 93, 245, 0.3);
}

/* Mobile Logo/Brand */
.mobile-logo {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  transition: all 0.3s ease;
}

.mobile-logo-img {
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.4));
  transition: all 0.3s ease;
  transform: translateY(-2px);
  margin-bottom: 2px;
}

.mobile-logo-text {
  font-family: 'Inknut Antiqua', serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: #ffffff;
  text-shadow: 
    0 0 10px rgba(255, 255, 255, 0.5),
    0 0 20px rgba(93, 93, 245, 0.3),
    2px 2px 4px rgba(0, 0, 0, 0.5);
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.mobile-logo:hover {
  transform: scale(1.05);
}

.mobile-logo:hover .mobile-logo-img {
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.6)) drop-shadow(0 0 20px rgba(93, 93, 245, 0.4));
  transform: translateY(-2px) rotate(5deg);
}

.mobile-logo:hover .mobile-logo-text {
  text-shadow: 
    0 0 15px rgba(255, 255, 255, 0.7),
    0 0 25px rgba(93, 93, 245, 0.5);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Menu Content */
.mobile-menu-content {
  text-align: center;
  padding: 2rem;
  transform: translateY(50px) scale(0.9);
  transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
  transition-delay: 0.1s;
}

.mobile-menu-overlay.active .mobile-menu-content {
  transform: translateY(0) scale(1);
}

/* Mobile Navigation Links */
.mobile-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav-link {
  display: block;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.mobile-nav-link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

/* Prevent body scroll when menu is open */
body.menu-open {
  overflow: hidden;
}

/* ========================================
   RESPONSIVE NAVIGATION
   ======================================== */

/* Desktop View - Show normal navbar */
@media (min-width: 769px) {
  .desktop-nav {
    display: flex !important;
  }
  
  .hamburger-menu,
  .mobile-register-btn,
  .mobile-menu-overlay,
  .mobile-logo {
    display: none !important;
  }
}

/* Mobile/Tablet View - Show hamburger menu */
@media (max-width: 768px) {
  /* Hide desktop navigation completely */
  .desktop-nav,
  .navbar-links {
    display: none !important;
  }
  
  /* Also hide any existing navbar links that don't have desktop-nav class */
  html body .navbar .navbar-links,
  html body nav.navbar .navbar-links,
  html body .navbar ul:not(.mobile-nav-links),
  html body nav.navbar ul:not(.mobile-nav-links) {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }
  
  /* Force hide all navbar list items on mobile */
  html body .navbar .navbar-links li,
  html body nav.navbar .navbar-links li,
  html body .navbar ul li:not(.mobile-nav-links li),
  html body nav.navbar ul li:not(.mobile-nav-links li) {
    display: none !important;
    visibility: hidden !important;
  }
  
  /* Force hide all navbar links on mobile */
  html body .navbar .navbar-links li a,
  html body nav.navbar .navbar-links li a,
  html body .navbar ul li a:not(.mobile-nav-link),
  html body nav.navbar ul li a:not(.mobile-nav-link) {
    display: none !important;
    visibility: hidden !important;
  }
  
  /* Show mobile elements */
  .hamburger-menu,
  .mobile-register-btn,
  .mobile-logo {
    display: flex !important;
  }
  
  /* Update navbar layout for mobile - 3 column layout */
  html body .navbar,
  html body nav.navbar {
    padding: 0.8rem 1.5rem !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-direction: row !important;
    display: flex !important;
  }
  
  /* Position hamburger on the left */
  .hamburger-menu {
    order: 1 !important;
    flex: 0 0 auto !important;
  }
  
  /* Position logo in the center */
  .mobile-logo {
    order: 2 !important;
    flex: 1 1 auto !important;
    text-align: center !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }
  
  /* Position register button on the right */
  .mobile-register-btn {
    order: 3 !important;
    flex: 0 0 auto !important;
  }
  
  /* Adjust navbar height */
  html body main,
  html body section {
    padding-top: 70px !important;
  }
  
  html body [id] {
    scroll-margin-top: 70px !important;
  }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
  html body .navbar,
  html body nav.navbar {
    padding: 0.6rem 1rem !important;
  }
  
  .mobile-register-btn {
    padding: 0.5rem 1rem !important;
    font-size: 0.8rem !important;
    transform: translateY(1px) !important;
  }
  
  .hamburger-menu {
    width: 35px !important;
    height: 35px !important;
  }
  
  .hamburger-line {
    width: 18px !important;
  }
  
  .mobile-logo-img {
    width: 24px !important;
    height: 24px !important;
    transform: translateY(-1px) !important;
  }
  
  .mobile-logo-text {
    font-size: 1.1rem !important;
  }
  
  .mobile-nav-link {
    font-size: 1.5rem !important;
    padding: 0.8rem 1.5rem !important;
  }
}

/* Ensure content doesn't hide behind fixed navbar */
html body [id] {
  scroll-margin-top: 80px !important;
}

html body main,
html body section {
  padding-top: 80px !important;
}

/* Ensure first section starts below navbar */
html body .full-screen-section:first-of-type,
html body section:first-of-type {
  margin-top: 0 !important;
  padding-top: 80px !important;
}

/* Mobile Event Card Responsive Styles - NO OVERFLOW, MOBILE OPTIMIZED */
@media (max-width: 768px) {
  .event-card-container {
    height: 450px !important;
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 auto 2rem auto !important;
    overflow: hidden !important;
  }
  
  .main-card {
    padding: 1rem !important;
  }
  
  .event-logo-container {
    width: min(240px, 70vw) !important;
    height: min(240px, 70vw) !important;
    max-width: 260px !important;
    max-height: 260px !important;
    transform: scale(1.0) !important;
    margin-bottom: 0.5rem !important;
  }
  
  .event-logo {
    width: min(220px, 65vw) !important;
    height: min(220px, 65vw) !important;
    max-width: 240px !important;
    max-height: 240px !important;
    transform: scale(1.0) !important;
  }
  
  /* Ideathon Logo - Controlled size on tablet */
  .event-logo[src*="ideathon.png"] {
    width: min(260px, 70vw) !important;
    height: min(260px, 70vw) !important;
    max-width: 280px !important;
    max-height: 280px !important;
    transform: scale(1.0) !important;
  }
  
  .event-card-container[data-event="ideathon"] .event-logo-container {
    width: min(280px, 75vw) !important;
    height: min(280px, 75vw) !important;
    max-width: 300px !important;
    max-height: 300px !important;
    transform: scale(1.0) !important;
  }
}

@media (max-width: 480px) {
  .event-card-container {
    height: 400px !important;
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 auto 1.5rem auto !important;
    overflow: hidden !important;
  }
  
  .main-card {
    padding: 0.8rem !important;
  }
  
  .event-logo-container {
    width: min(200px, 60vw) !important;
    height: min(200px, 60vw) !important;
    max-width: 220px !important;
    max-height: 220px !important;
    transform: scale(1.0) !important;
    margin-bottom: 0.5rem !important;
  }
  
  .event-logo {
    width: min(180px, 55vw) !important;
    height: min(180px, 55vw) !important;
    max-width: 200px !important;
    max-height: 200px !important;
    transform: scale(1.0) !important;
  }
  
  /* Ideathon Logo - Mobile optimized */
  .event-logo[src*="ideathon.png"] {
    width: min(220px, 60vw) !important;
    height: min(220px, 60vw) !important;
    max-width: 240px !important;
    max-height: 240px !important;
    transform: scale(1.0) !important;
  }
  
  .event-card-container[data-event="ideathon"] .event-logo-container {
    width: min(240px, 65vw) !important;
    height: min(240px, 65vw) !important;
    max-width: 260px !important;
    max-height: 260px !important;
    transform: scale(1.0) !important;
  }
  
  .event-title-main {
    font-size: 1.3rem !important;
    margin: 0.5rem 0 !important;
  }
  
  .event-status {
    font-size: 0.7rem !important;
    padding: 0.4rem 1rem !important;
    margin-bottom: 0.5rem !important;
  }
}
  
  /* Ideathon Logo - STILL MASSIVE on mobile */
  .event-logo[src*="ideathon.png"] {
    width: 320px !important;
    height: 320px !important;
    transform: scale(1.02) !important;
  }
  
  .event-card-container[data-event="ideathon"] .event-logo-container {
    width: 340px !important;
    height: 340px !important;
    transform: scale(1.05) !important;
  }


/* Global Mobile Overflow Prevention */
@media (max-width: 768px) {
  body {
    overflow-x: hidden !important;
  }
  
  .events-section {
    width: 100% !important;
    overflow-x: hidden !important;
  }
  
  .events-container {
    width: 100% !important;
    padding: 0 1rem !important;
    overflow-x: hidden !important;
  }
}

/* Performance Optimizations for Mobile Devices */
@media (max-width: 768px) {
  /* Reduce backdrop-filter blur on mobile for better performance */
  .navbar,
  .main-card,
  .event-card,
  .prize-pool-container {
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
  }
  
  /* Simplify animations on mobile */
  .floating-sparkle,
  .prize-sparkle {
    animation-duration: 3s !important;
  }
  
  /* Reduce complex shadows on mobile */
  .event-card,
  .main-card {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
  }
}

/* Further optimizations for very small screens */
@media (max-width: 480px) {
  /* Minimal backdrop blur for performance */
  .navbar,
  .main-card,
  .event-card,
  .prize-pool-container {
    backdrop-filter: blur(5px) !important;
    -webkit-backdrop-filter: blur(5px) !important;
  }
  
  /* Disable complex animations on very small screens */
  .floating-sparkle,
  .prize-sparkle {
    animation: none !important;
    opacity: 0.3 !important;
  }
  
  /* Simplify transforms */
  .event-card:hover,
  .main-card:hover {
    transform: translateY(-2px) !important;
  }
}

/* Extra Small Mobile - Fully Contained Design */
@media (max-width: 375px) {
  .event-card-container {
    height: 360px !important;
    max-width: 100% !important;
    width: 100% !important;
    overflow: hidden !important;
  }
  
  .main-card {
    padding: 0.6rem !important;
  }
  
  .event-logo-container {
    width: min(160px, 50vw) !important;
    height: min(160px, 50vw) !important;
    max-width: 180px !important;
    max-height: 180px !important;
    transform: scale(1.0) !important;
    margin-bottom: 0.3rem !important;
  }
  
  .event-logo {
    width: min(140px, 45vw) !important;
    height: min(140px, 45vw) !important;
    max-width: 160px !important;
    max-height: 160px !important;
    transform: scale(1.0) !important;
  }
  
  /* Ideathon Logo - Compact but visible */
  .event-logo[src*="ideathon.png"] {
    width: min(170px, 50vw) !important;
    height: min(170px, 50vw) !important;
    max-width: 190px !important;
    max-height: 190px !important;
    transform: scale(1.0) !important;
  }
  
  .event-card-container[data-event="ideathon"] .event-logo-container {
    width: min(190px, 55vw) !important;
    height: min(190px, 55vw) !important;
    max-width: 210px !important;
    max-height: 210px !important;
    transform: scale(1.0) !important;
  }
  
  .event-title-main {
    font-size: 1.2rem !important;
    margin: 0.3rem 0 !important;
  }
  
  .event-status {
    font-size: 0.65rem !important;
    padding: 0.3rem 0.8rem !important;
    margin-bottom: 0.3rem !important;
  }
  
  .event-date-display {
    top: 1rem !important;
    right: 1rem !important;
    padding: 0.6rem 0.8rem !important;
  }
  
  .event-day {
    font-size: 1.5rem !important;
  }
  
  .event-month {
    font-size: 0.8rem !important;
  }
}

/* ========================================
   WINNERS OF AM2K24 SECTION
   ======================================== */

.winners-section {
  background: linear-gradient(180deg, 
    rgba(13, 13, 35, 0.95) 0%, 
    rgba(25, 25, 60, 0.98) 50%, 
    rgba(35, 35, 80, 0.95) 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.winners-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(93, 93, 245, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(155, 89, 182, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.winners-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.winners-title {
  font-family: 'Inknut Antiqua', serif;
  font-size: 3.5rem;
  font-weight: 700;
  text-align: center;
  color: #ffffff;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #FFD700, #FFA500, #FF8C00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
  animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
  from {
    text-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
  }
  to {
    text-shadow: 0 6px 30px rgba(255, 215, 0, 0.5);
  }
}

.winners-subtitle {
  font-family: 'Inclusive Sans', sans-serif;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  margin-bottom: 4rem;
  font-weight: 500;
}

.winners-categories {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.winners-category {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  padding: 3rem;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.winners-category:hover {
  transform: translateY(-5px);
  border-color: rgba(93, 93, 245, 0.4);
  box-shadow: 
    0 30px 80px rgba(0, 0, 0, 0.3),
    0 0 50px rgba(93, 93, 245, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.category-header {
  text-align: center;
  margin-bottom: 3rem;
}

.category-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  animation: iconFloat 3s ease-in-out infinite;
  filter: drop-shadow(0 4px 15px rgba(255, 215, 0, 0.4));
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.category-title {
  font-family: 'Inknut Antiqua', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #ffffff, #e0e0e0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.category-description {
  font-family: 'Inclusive Sans', sans-serif;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  max-width: 600px;
  margin: 0 auto;
}

/* Image Carousel Styling */
.image-carousel {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.carousel-slide {
  min-width: 100%;
  position: relative;
  overflow: hidden;
}

.carousel-slide img {
  width: 100%;
  height: 500px;
  object-fit: contain;
  border-radius: 20px;
  transition: all 0.4s ease;
  filter: brightness(0.9) contrast(1.1);
  background: rgba(0, 0, 0, 0.1);
}

.carousel-slide:hover img {
  transform: scale(1.05);
  filter: brightness(1) contrast(1.2);
}

/* Carousel Controls */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.carousel-btn:hover {
  background: rgba(93, 93, 245, 0.8);
  border-color: rgba(93, 93, 245, 0.6);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 25px rgba(93, 93, 245, 0.4);
}

.carousel-prev {
  left: 20px;
}

.carousel-next {
  right: 20px;
}

/* Carousel Indicators */
.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 0.3rem;
  margin-top: 2rem;
}

.indicator {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  border: 0.5px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: linear-gradient(45deg, #FFD700, #FFA500);
  border-color: rgba(255, 215, 0, 0.7);
  transform: scale(1.0);
  box-shadow: 0 1px 4px rgba(255, 215, 0, 0.5);
}

.indicator:hover {
  border-color: rgba(255, 255, 255, 0.7);
  transform: scale(1.0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .winners-section {
    padding: 4rem 0;
  }
  
  .winners-container {
    padding: 0 1rem;
  }
  
  .winners-title {
    font-size: 2.5rem;
  }
  
  .winners-subtitle {
    font-size: 1.1rem;
    margin-bottom: 3rem;
  }
  
  .winners-category {
    padding: 2rem 1.5rem;
  }
  
  .category-title {
    font-size: 2rem;
  }
  
  .category-icon {
    font-size: 3rem;
  }
  
  .carousel-slide img {
    height: 350px;
  }
  
  .carousel-btn {
    width: 50px;
    height: 50px;
    font-size: 1rem;
  }
  
  .carousel-prev {
    left: 10px;
  }
  
  .carousel-next {
    right: 10px;
  }
}

@media (max-width: 480px) {
  .winners-title {
    font-size: 2rem;
  }
  
  .winners-category {
    padding: 1.5rem 1rem;
  }
  
  .category-title {
    font-size: 1.6rem;
  }
  
  .category-description {
    font-size: 1rem;
  }
  
  .carousel-slide img {
    height: 280px;
  }
  
  .carousel-btn {
    width: 45px;
    height: 45px;
    font-size: 0.9rem;
  }
}