/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none; /* Hide default cursor */
  }

  body {
    font-family: "Poppins", sans-serif;
    scroll-behavior: smooth;
    overflow-x: hidden;
    background: linear-gradient(135deg, #fef3c7 0%, #ffffff 100%);
  }

  /* Custom Cursor */
  .cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.1s ease;
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
  }

  .cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(251, 191, 36, 0.3);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transition: all 0.3s ease;
  }

  .cursor.hover {
    transform: scale(1.5);
    background: linear-gradient(135deg, #1e3a8a, #1e40af);
    box-shadow: 0 0 30px rgba(30, 58, 138, 0.7);
  }

  .cursor-follower.hover {
    transform: scale(1.2);
    border-color: rgba(30, 58, 138, 0.5);
  }

  /* Navigation Styles */
  #navbar {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #3b82f6 100%) !important;
    backdrop-filter: blur(20px);
    border-bottom: 3px solid #fbbf24;
    box-shadow: 0 8px 32px rgba(30, 58, 138, 0.3);
    animation: navbarGlow 3s ease-in-out infinite alternate;
  }

  #navbar img {
    height: 64px;
    width: auto;
    max-width: 200px;
  }

  @keyframes navbarGlow {
    from {
      box-shadow: 0 8px 32px rgba(30, 58, 138, 0.3);
    }
    to {
      box-shadow: 0 8px 32px rgba(30, 58, 138, 0.6), 0 0 50px rgba(251, 191, 36, 0.2);
    }
  }

  .login-btn {
    color: white;
    font-weight: 600;
    text-decoration: none;
    padding: 12px 24px;
    border: 2px solid #fbbf24;
    border-radius: 30px;
    background: transparent;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
  }

  .login-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.3), transparent);
    transition: left 0.5s;
  }

  .login-btn:hover::before {
    left: 100%;
  }

  .login-btn:hover {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1e3a8a;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.4);
  }

  .register-btn-nav {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1e3a8a;
    padding: 12px 24px;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
  }

  .register-btn-nav::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
  }

  .register-btn-nav:hover::before {
    left: 100%;
  }

  .register-btn-nav:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(251, 191, 36, 0.6);
    background: linear-gradient(135deg, #f59e0b, #d97706);
  }

  /* Banner Styles - FIXED VERSION */
  .banner {
    position: relative;
    height: 100vh;
    min-height: 300px;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 30%, #3b82f6 70%, #60a5fa 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transform: none !important;
    will-change: auto;
  }

  .batik-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 20%, rgba(251, 191, 36, 0.15) 0%, transparent 50%),
      radial-gradient(circle at 80% 80%, rgba(251, 191, 36, 0.15) 0%, transparent 50%),
      radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.1) 0%, transparent 30%),
      repeating-linear-gradient(
        45deg,
        transparent,
        transparent 15px,
        rgba(251, 191, 36, 0.08) 15px,
        rgba(251, 191, 36, 0.08) 30px
      ),
      repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 20px,
        rgba(255, 255, 255, 0.03) 20px,
        rgba(255, 255, 255, 0.03) 40px
      );
    background-size: 300px 300px, 400px 400px, 200px 200px, 60px 60px, 80px 80px;
    animation: batikFloat 25s ease-in-out infinite, batikPulse 8s ease-in-out infinite alternate;
    z-index: 1;
  }

  @keyframes batikFloat {
    0%,
    100% {
      transform: translate(0, 0) rotate(0deg);
    }
    25% {
      transform: translate(-15px, -10px) rotate(1deg);
    }
    50% {
      transform: translate(10px, -15px) rotate(-1deg);
    }
    75% {
      transform: translate(-5px, 15px) rotate(0.5deg);
    }
  }

  @keyframes batikPulse {
    from {
      opacity: 0.7;
    }
    to {
      opacity: 1;
    }
  }

  .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(
      135deg,
      rgba(30, 58, 138, 0.85) 0%,
      rgba(30, 64, 175, 0.7) 50%,
      rgba(59, 130, 246, 0.6) 100%
    ); */
    z-index: 1;
    animation: overlayShimmer 6s ease-in-out infinite alternate;
  }

  /* @keyframes overlayShimmer {
    from {
      background: linear-gradient(
        135deg,
        rgba(30, 58, 138, 0.85) 0%,
        rgba(30, 64, 175, 0.7) 50%,
        rgba(59, 130, 246, 0.6) 100%
      );
    }
    to {
      background: linear-gradient(
        135deg,
        rgba(30, 58, 138, 0.9) 0%,
        rgba(30, 64, 175, 0.75) 50%,
        rgba(59, 130, 246, 0.65) 100%
      );
    }
  } */

  .banner-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    animation: contentFloat 4s ease-in-out infinite;
  }

  @keyframes contentFloat {
    0%,
    100% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-10px);
    }
  }

  .logo-container {
    margin-bottom: 2rem;
    animation: logoFloat 3s ease-in-out infinite, logoGlow 2s ease-in-out infinite alternate;
  }

  .banner-logo {
    width: 100px;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 20px rgba(251, 191, 36, 0.3));
    transition: all 0.3s ease;
  }

  .banner-logo:hover {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 30px rgba(251, 191, 36, 0.6));
  }

  @keyframes logoFloat {
    0%,
    100% {
      transform: translateY(0px) rotate(0deg);
    }
    50% {
      transform: translateY(-15px) rotate(2deg);
    }
  }

  @keyframes logoGlow {
    from {
      filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 20px rgba(251, 191, 36, 0.3));
    }
    to {
      filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 40px rgba(251, 191, 36, 0.6));
    }
  }

  .title-container {
    margin-bottom: 2rem;
  }

  .main-title {
    font-size: 3.8rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6);
    animation: titlePulse 3s ease-in-out infinite;
    line-height: 1.1;
  }

  @keyframes titlePulse {
    0%,
    100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.02);
    }
  }

  .title-number {
    color: #fbbf24;
    animation: titleGlow 2s ease-in-out infinite alternate, numberFloat 4s ease-in-out infinite;
    display: inline-block;
    font-size: 3.8rem;
    margin-right: 0.5rem;
    position: relative;
  }

  /* Fix for "12th" visibility */
  .title-number sup {
    font-size: 1.6rem;
    position: absolute;
    top: -0.5em;
    right: -0.3em;
    color: #fbbf24;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    z-index: 10;
  }

  @keyframes numberFloat {
    0%,
    100% {
      transform: translateY(0px) rotate(0deg);
    }
    50% {
      transform: translateY(-5px) rotate(1deg);
    }
  }

  .title-text {
    color: #ffffff; /* Sets the text color to white */

    display: inline-block; /* Retains inline-block display if needed for layout */
  }
/*
  @keyframes textShimmer {
    0%,
    100% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
  }

  @keyframes titleGlow {
    from {
      text-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
    }
    to {
      text-shadow: 0 0 40px rgba(251, 191, 36, 0.9), 0 0 60px rgba(251, 191, 36, 0.5);
    }
  } */

  .subtitle {
    font-size: 1.3rem;
    color: #fef3c7;
    font-weight: 400;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards, subtitleGlow 3s ease-in-out infinite alternate;
    margin-bottom: 2rem;
  }

  @keyframes subtitleGlow {
    from {
      text-shadow: 0 0 10px rgba(254, 243, 199, 0.5);
    }
    to {
      text-shadow: 0 0 20px rgba(254, 243, 199, 0.8);
    }
  }

  /* Motto Styles */
  .motto-container {
    margin: 2rem 0;
    opacity: 0;
    animation: fadeInUp 1s ease 1s forwards;
  }

  .motto-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .motto-line {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(45deg, #fbbf24, #f59e0b, #fef3c7, #fbbf24);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: mottoShimmer 3s ease-in-out infinite;
    line-height: 1.2;
  }

  @keyframes mottoShimmer {
    0%,
    100% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
  }

  .motto-line-1 {
    animation: slideInLeft 1s ease 1.2s forwards, mottoFloat1 4s ease-in-out infinite;
    transform: translateX(-100px);
    opacity: 0;
  }

  .motto-line-2 {
    animation: slideInRight 1s ease 1.4s forwards, mottoFloat2 4s ease-in-out infinite;
    transform: translateX(100px);
    opacity: 0;
  }

  @keyframes mottoFloat1 {
    0%,
    100% {
      transform: translateX(0) translateY(0px);
    }
    50% {
      transform: translateX(5px) translateY(-8px);
    }
  }

  @keyframes mottoFloat2 {
    0%,
    100% {
      transform: translateX(0) translateY(0px);
    }
    50% {
      transform: translateX(-5px) translateY(-8px);
    }
  }

  @keyframes slideInLeft {
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }

  @keyframes slideInRight {
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }

  /* CTA Styles */
  .cta-container {
    margin: 3rem 0 2rem 0;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease 1.6s forwards;
  }

  .register-btn-main {
    background: linear-gradient(135deg, #fbbf24, #f59e0b, #d97706);
    background-size: 200% 200%;
    color: white;
    padding: 18px 36px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: buttonPulse 2s ease-in-out infinite;
  }

  @keyframes buttonPulse {
    0%,
    100% {
      box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
    }
    50% {
      box-shadow: 0 15px 40px rgba(251, 191, 36, 0.6), 0 0 30px rgba(251, 191, 36, 0.3);
    }
  }

  .register-btn-main::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
  }

  .register-btn-main:hover::before {
    left: 100%;
  }

  .register-btn-main:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 20px 50px rgba(251, 191, 36, 0.6);
    background-position: 100% 0;
  }

  .btn-icon {
    transition: transform 0.4s ease;
    font-size: 1.3rem;
  }

  .register-btn-main:hover .btn-icon {
    transform: translateX(8px) rotate(15deg);
  }

  .learn-more-btn {
    background: transparent;
    color: white;
    padding: 18px 36px;
    border: 3px solid #fef3c7;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .learn-more-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fef3c7, #fbbf24);
    transition: left 0.5s;
    z-index: -1;
  }

  .learn-more-btn:hover::before {
    left: 0;
  }

  .learn-more-btn:hover {
    color: #1e3a8a;
    transform: translateY(-5px) scale(1.05);
    border-color: #fbbf24;
    box-shadow: 0 15px 35px rgba(254, 243, 199, 0.4);
  }

  /* Scroll Indicator */
  .scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: #fef3c7;
    font-size: 1rem;
    font-weight: 500;
    opacity: 0;
    animation: fadeInUp 1s ease 2s forwards, indicatorFloat 3s ease-in-out infinite;
  }

  @keyframes indicatorFloat {
    0%,
    100% {
      transform: translateX(-50%) translateY(0px);
    }
    50% {
      transform: translateX(-50%) translateY(-10px);
    }
  }

  .scroll-arrow {
    width: 3px;
    height: 40px;
    background: linear-gradient(to bottom, #fef3c7, #fbbf24);
    position: relative;
    animation: scrollBounce 2s infinite;
    border-radius: 2px;
  }

  .scroll-arrow::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: -4px;
    width: 10px;
    height: 10px;
    border-right: 3px solid #fbbf24;
    border-bottom: 3px solid #fbbf24;
    transform: rotate(45deg);
  }

  @keyframes scrollBounce {
    0%,
    100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(15px);
    }
  }

  /* Particles */
  .particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
  }

  .particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 50%;
    animation: particleFloat 8s infinite linear;
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
  }

  .particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 10s;
  }

  .particle:nth-child(2) {
    left: 30%;
    animation-delay: 2s;
    animation-duration: 8s;
  }

  .particle:nth-child(3) {
    left: 50%;
    animation-delay: 4s;
    animation-duration: 12s;
  }

  .particle:nth-child(4) {
    left: 70%;
    animation-delay: 1s;
    animation-duration: 9s;
  }

  .particle:nth-child(5) {
    left: 90%;
    animation-delay: 3s;
    animation-duration: 11s;
  }

  @keyframes particleFloat {
    0% {
      transform: translateY(100vh) rotate(0deg) scale(0);
      opacity: 0;
    }
    10% {
      opacity: 1;
      transform: scale(1);
    }
    90% {
      opacity: 1;
    }
    100% {
      transform: translateY(-100px) rotate(360deg) scale(0);
      opacity: 0;
    }
  }

  /* Section Styles */
  .section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: sectionHeaderFloat 4s ease-in-out infinite;
  }

  @keyframes sectionHeaderFloat {
    0%,
    100% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-5px);
    }
  }

  .section-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1e3a8a;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6, #1e3a8a);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleShimmer 3s ease-in-out infinite;
    text-shadow: 0 4px 8px rgba(30, 58, 138, 0.3);
  }

  @keyframes titleShimmer {
    0%,
    100% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
  }

  .section-subtitle {
    font-size: 1.3rem;
    color: #666;
    font-weight: 400;
    animation: subtitleFloat 3s ease-in-out infinite;
  }

  @keyframes subtitleFloat {
    0%,
    100% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-3px);
    }
  }

  /* Competitions Section */
  .competitions-section {
    padding: 8rem 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #fef3c7 50%, #ffffff 100%);
    position: relative;
    z-index: 10;
    overflow: hidden;
  }

  .competitions-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(251, 191, 36, 0.1) 0%, transparent 50%);
    animation: sectionGlow 6s ease-in-out infinite alternate;
  }

  @keyframes sectionGlow {
    from {
      opacity: 0.5;
    }
    to {
      opacity: 1;
    }
  }

  .competitions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }

  .competition-card {
    background: linear-gradient(135deg, #fef3c7 0%, #ffffff 100%);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    position: relative;
    border: 3px solid transparent;
    background-clip: padding-box;
    animation: cardFloat 6s ease-in-out infinite;
  }

  @keyframes cardFloat {
    0%,
    100% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-8px);
    }
  }

  .competition-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #fbbf24, #f59e0b, #fbbf24);
    background-size: 200% 200%;
    border-radius: 25px;
    z-index: -1;
    animation: cardBorderShimmer 3s ease-in-out infinite;
  }

  @keyframes cardBorderShimmer {
    0%,
    100% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
  }

  .competition-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2), 0 0 30px rgba(251, 191, 36, 0.3);
  }

  .card-header {
    background: linear-gradient(135deg, #1e3a8a, #1e40af, #3b82f6);
    background-size: 200% 200%;
    color: white;
    padding: 2.5rem;
    position: relative;
    animation: headerShimmer 4s ease-in-out infinite;
  }

  @keyframes headerShimmer {
    0%,
    100% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
  }

  .card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: iconFloat 3s ease-in-out infinite;
  }

  @keyframes iconFloat {
    0%,
    100% {
      transform: translateY(0px) rotate(0deg);
    }
    50% {
      transform: translateY(-5px) rotate(5deg);
    }
  }

  .card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    animation: headerTextFloat 4s ease-in-out infinite;
  }

  @keyframes headerTextFloat {
    0%,
    100% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-2px);
    }
  }

  .card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    animation: badgePulse 2s ease-in-out infinite;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  @keyframes badgePulse {
    0%,
    100% {
      transform: scale(1);
      box-shadow: 0 0 10px rgba(251, 191, 36, 0.3);
    }
    50% {
      transform: scale(1.05);
      box-shadow: 0 0 20px rgba(251, 191, 36, 0.6);
    }
  }

  .card-badge.special {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    animation: specialBadge 2s infinite;
  }

  @keyframes specialBadge {
    0%,
    100% {
      transform: scale(1) rotate(0deg);
    }
    25% {
      transform: scale(1.1) rotate(2deg);
    }
    75% {
      transform: scale(1.1) rotate(-2deg);
    }
  }

  /* Rest of the styles continue with similar enhancements... */
  .card-content {
    padding: 2.5rem;
    animation: contentFloat 5s ease-in-out infinite;
  }

  @keyframes contentFloat {
    0%,
    100% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-3px);
    }
  }

  .card-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.05rem;
  }

  .pricing {
    margin-bottom: 2rem;
  }

  .price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(30, 58, 138, 0.1);
    transition: all 0.3s ease;
  }

  .price-item:hover {
    transform: translateX(5px);
    background: rgba(251, 191, 36, 0.05);
    border-radius: 8px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .price-item:last-child {
    border-bottom: none;
  }

  .price-item.highlight {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    margin: 0.5rem -1rem;
    padding: 1.2rem;
    border-radius: 15px;
    animation: highlightPulse 3s ease-in-out infinite;
  }

  @keyframes highlightPulse {
    0%,
    100% {
      box-shadow: 0 5px 15px rgba(251, 191, 36, 0.3);
    }
    50% {
      box-shadow: 0 10px 25px rgba(251, 191, 36, 0.5);
    }
  }

  .price-label {
    font-weight: 600;
  }

  .price-value {
    font-weight: 800;
    font-size: 1.2rem;
  }

  .register-btn-card {
    background: linear-gradient(135deg, #1e3a8a, #1e40af);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    width: 100%;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
  }

  .register-btn-card::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.5s;
  }

  .register-btn-card:hover::before {
    left: 100%;
  }

  .register-btn-card:hover {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.4);
  }

  /* Timeline Section */
  .timeline-section {
    padding: 8rem 1rem;
    background: linear-gradient(135deg, #fef3c7 0%, #ffffff 50%, #fef3c7 100%);
    position: relative;
    z-index: 10;
    overflow: hidden;
  }

  .timeline-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(30, 58, 138, 0.1) 0%, transparent 50%);
    animation: timelineGlow 8s ease-in-out infinite alternate;
  }

  @keyframes timelineGlow {
    from {
      opacity: 0.3;
    }
    to {
      opacity: 0.7;
    }
  }

  .timeline-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
  }

  .timeline-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    background: linear-gradient(to bottom, #1e3a8a, #3b82f6, #fbbf24, #f59e0b);
    top: 0;
    bottom: 0;
    z-index: 1;
    border-radius: 3px;
    animation: lineGlow 4s ease-in-out infinite alternate;
  }

  @keyframes lineGlow {
    from {
      box-shadow: 0 0 10px rgba(30, 58, 138, 0.3);
    }
    to {
      box-shadow: 0 0 20px rgba(30, 58, 138, 0.6), 0 0 30px rgba(251, 191, 36, 0.3);
    }
  }

  .timeline-item {
    position: relative;
    padding: 2.5rem 0;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
  }

  .timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
    animation: timelineItemFloat 6s ease-in-out infinite;
  }

  @keyframes timelineItemFloat {
    0%,
    100% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-5px);
    }
  }

  .timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    z-index: 2;
    transition: all 0.4s ease;
    box-shadow: 0 0 0 6px white, 0 0 0 12px #fbbf24;
    animation: dotPulse 3s ease-in-out infinite;
  }

  @keyframes dotPulse {
    0%,
    100% {
      box-shadow: 0 0 0 6px white, 0 0 0 12px #fbbf24;
    }
    50% {
      box-shadow: 0 0 0 6px white, 0 0 0 16px #fbbf24, 0 0 20px rgba(251, 191, 36, 0.4);
    }
  }

  .timeline-item:hover .timeline-dot {
    transform: translateX(-50%) scale(1.4);
    box-shadow: 0 0 0 6px white, 0 0 0 16px #fbbf24, 0 0 30px rgba(251, 191, 36, 0.6);
  }

  .timeline-content {
    width: 45%;
    padding: 2.5rem;
    border-radius: 20px;
    background: linear-gradient(135deg, #ffffff, #fef3c7);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    border: 3px solid #fbbf24;
  }

  .timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
  }

  .timeline-item:nth-child(even) .timeline-content {
    margin-right: auto;
  }

  .timeline-content::before {
    content: "";
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 15px solid transparent;
  }

  .timeline-item:nth-child(odd) .timeline-content::before {
    left: -30px;
    border-right-color: #fbbf24;
  }

  .timeline-item:nth-child(even) .timeline-content::before {
    right: -30px;
    border-left-color: #fbbf24;
  }

  .timeline-item:hover .timeline-content {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15), 0 0 30px rgba(251, 191, 36, 0.2);
  }

  .timeline-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: badgeShimmer 3s ease-in-out infinite;
  }

  @keyframes badgeShimmer {
    0%,
    100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.05);
    }
  }

  .timeline-badge.early {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
  }

  .timeline-badge.regular {
    background: linear-gradient(135deg, #1e3a8a, #1e40af);
    color: white;
  }

  .timeline-badge.deadline {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
  }

  .timeline-badge.announcement {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    color: white;
  }

  .timeline-badge.finale {
    background: linear-gradient(135deg, #fbbf24, #f59e0b, #d97706);
    background-size: 200% 200%;
    color: white;
    animation: finaleBadge 2s ease-in-out infinite;
  }

  @keyframes finaleBadge {
    0%,
    100% {
      background-position: 0% 50%;
      box-shadow: 0 0 15px rgba(251, 191, 36, 0.5);
    }
    50% {
      background-position: 100% 50%;
      box-shadow: 0 0 25px rgba(251, 191, 36, 0.8);
    }
  }

  .timeline-content h3 {
    color: #1e3a8a;
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    animation: contentTitleFloat 4s ease-in-out infinite;
  }

  @keyframes contentTitleFloat {
    0%,
    100% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-2px);
    }
  }

  .timeline-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 1.05rem;
  }

  .timeline-date {
    color: #fbbf24;
    font-weight: 700;
    font-size: 1rem;
    animation: dateGlow 3s ease-in-out infinite alternate;
  }

  @keyframes dateGlow {
    from {
      text-shadow: 0 0 5px rgba(251, 191, 36, 0.3);
    }
    to {
      text-shadow: 0 0 10px rgba(251, 191, 36, 0.6);
    }
  }

  /* Contact Section */
  .contact-section {
    padding: 8rem 1rem;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #3b82f6 100%);
    position: relative;
    z-index: 10;
    overflow: hidden;
  }

  .contact-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(251, 191, 36, 0.1) 0%, transparent 70%);
    animation: contactGlow 6s ease-in-out infinite alternate;
  }

  @keyframes contactGlow {
    from {
      opacity: 0.5;
    }
    to {
      opacity: 1;
    }
  }

  .contact-info,
  .location-info {
    display: flex;
    align-items: center;
  }

  .contact-card,
  .location-card {
    background: linear-gradient(135deg, #ffffff, #fef3c7);
    padding: 3.5rem;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    width: 100%;
    border: 4px solid #fbbf24;
    position: relative;
    animation: cardFloat 5s ease-in-out infinite;
  }

  .contact-card::before,
  .location-card::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b, #fbbf24);
    background-size: 200% 200%;
    border-radius: 25px;
    z-index: -1;
    animation: cardBorderFlow 4s ease-in-out infinite;
  }

  @keyframes cardBorderFlow {
    0%,
    100% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
  }

  .contact-card h3,
  .location-card h3 {
    color: #1e3a8a;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    animation: contactTitleFloat 4s ease-in-out infinite;
  }

  @keyframes contactTitleFloat {
    0%,
    100% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-3px);
    }
  }

  .contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
  }

  .contact-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.5rem;
    border-radius: 15px;
    background: linear-gradient(135deg, #fef3c7, #ffffff);
    transition: all 0.4s ease;
    border-left: 5px solid #fbbf24;
    animation: contactItemFloat 6s ease-in-out infinite;
  }

  @keyframes contactItemFloat {
    0%,
    100% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-2px);
    }
  }

  .contact-item:hover {
    transform: translateX(15px) scale(1.02);
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.3);
    background: linear-gradient(135deg, #fbbf24, #fef3c7);
  }

  .contact-icon {
    font-size: 1.8rem;
    min-width: 50px;
    animation: iconBounce 3s ease-in-out infinite;
  }

  @keyframes iconBounce {
    0%,
    100% {
      transform: scale(1) rotate(0deg);
    }
    50% {
      transform: scale(1.1) rotate(5deg);
    }
  }

  .contact-item h4 {
    color: #1e3a8a;
    font-weight: 700;
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
  }

  .contact-item p,
  .contact-item a {
    color: #666;
    text-decoration: none;
    font-weight: 500;
  }

  .contact-item a:hover {
    color: #fbbf24;
    text-decoration: underline;
  }

  .location-details {
    display: flex;
    gap: 1.5rem;
  }

  .location-icon {
    font-size: 2.5rem;
    color: #fbbf24;
    min-width: 60px;
    animation: locationIconFloat 4s ease-in-out infinite;
  }

  @keyframes locationIconFloat {
    0%,
    100% {
      transform: translateY(0px) rotate(0deg);
    }
    50% {
      transform: translateY(-5px) rotate(5deg);
    }
  }

  .location-details h4 {
    color: #1e3a8a;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.3rem;
  }

  .location-details p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
  }

  .maps-link {
    display: inline-block;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
  }

  .maps-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
  }

  .maps-link:hover::before {
    left: 100%;
  }

  .maps-link:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.5);
  }

  /* Footer */
  .footer {
    background: linear-gradient(135deg, #000000, #1a1a1a);
    color: white;
    padding: 4rem 1rem;
    position: relative;
    overflow: hidden;
  }

  .footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(30, 58, 138, 0.1) 0%, transparent 50%);
    animation: footerGlow 8s ease-in-out infinite alternate;
  }

  @keyframes footerGlow {
    from {
      opacity: 0.3;
    }
    to {
      opacity: 0.7;
    }
  }

  .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    position: relative;
    z-index: 2;
  }

  .footer-logo {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    animation: footerLogoFloat 5s ease-in-out infinite;
  }

  @keyframes footerLogoFloat {
    0%,
    100% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-3px);
    }
  }

  .footer-logo-img {
    width: 90px;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(251, 191, 36, 0.3));
  }

  .footer-logo p {
    color: #ccc;
    line-height: 1.6;
    font-size: 1.05rem;
  }

  .footer-social {
    display: flex;
    gap: 1.5rem;
  }

  .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e3a8a, #1e40af);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    animation: socialFloat 4s ease-in-out infinite;
  }

  @keyframes socialFloat {
    0%,
    100% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-5px);
    }
  }

  .social-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.4s ease;
  }

  .social-link:hover::before {
    transform: scale(1);
  }

  .social-link:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.4);
  }

  .social-link svg {
    width: 28px;
    height: 28px;
    position: relative;
    z-index: 2;
  }

  /* Animations */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(50px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Responsive Design */
  @media (max-width: 1200px) {
    .main-title {
      font-size: 3.5rem;
    }

    .title-number {
      font-size: 3.5rem;
    }

    .title-number sup {
      font-size: 1.5rem;
    }

    .motto-line {
      font-size: 2rem;
    }
  }

  @media (max-width: 768px) {
    .main-title {
      font-size: 2.5rem;
    }

    .title-number {
      font-size: 2.5rem;
    }

    .title-number sup {
      font-size: 1.2rem;
      top: -0.4em;
      right: -0.2em;
    }

    #navbar img {
      height: 48px;
    }

    .timeline-line {
      left: 30px;
    }

    .timeline-dot {
      left: 30px;
    }

    .timeline-content {
      width: calc(100% - 100px);
      margin-left: 100px !important;
    }

    .timeline-content::before {
      left: -30px !important;
      right: auto !important;
      border-right-color: #fbbf24 !important;
      border-left-color: transparent !important;
    }

    .competitions-grid {
      grid-template-columns: 1fr;
    }

    .cta-container {
      flex-direction: column;
      align-items: center;
    }

    .footer-content {
      flex-direction: column;
      text-align: center;
    }

    .cursor,
    .cursor-follower {
      display: none;
    }

    .motto-line {
      font-size: 1.8rem;
    }

    .section-title {
      font-size: 2.5rem;
    }

    .subtitle {
      font-size: 1.2rem;
    }
  }

  @media (max-width: 480px) {
    .banner-logo {
      width: 100px;
    }

    .motto-line {
      font-size: 1.5rem;
    }

    .register-btn-main,
    .learn-more-btn {
      width: 100%;
      justify-content: center;
    }

    .cursor,
    .cursor-follower {
      display: none;
    }

    .main-title {
      font-size: 2rem;
    }

    .title-number {
      font-size: 2rem;
    }

    .title-number sup {
      font-size: 1rem;
    }
  }

  /* Zoom-specific adjustments */
  @media screen and (min-width: 1024px) {
    .banner-content {
      max-width: 1000px;
    }

    .main-title {
      font-size: 3.8rem;
      line-height: 1.1;
    }

    .title-number {
      font-size: 3.8rem;
    }

    .title-number sup {
      font-size: 1.6rem;
      position: absolute;
      top: -0.5em;
      right: -0.3em;
      z-index: 10;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    }

    .motto-line {
      font-size: 2rem;
      line-height: 1.2;
    }

    .subtitle {
      font-size: 1.3rem;
    }

    .banner-logo {
      width: 100px;
    }

    .title-container {
      margin-bottom: 2rem;
    }

    .motto-container {
      margin: 2rem 0;
    }

    .cta-container {
      margin: 3rem 0 2rem 0;
    }
  }



