<style>
    /* Font and base styles */
    html, body {
      font-family: 'Inter', 'Montserrat', 'Fira Mono', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
      background: linear-gradient(120deg, #18181b 0%, #232323 50%, #10151c 100%);
      min-height: 100vh;
      scroll-behavior: smooth;
    }
    main {
      flex-grow: 1;
    }
    /* Animated underline for nav links */
    .nav-link {
      position: relative;
      overflow: hidden;
    }
    .nav-underline {
      display: block;
      position: absolute;
      left: 50%;
      bottom: 0;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, #22d3ee 0%, #22c55e 100%);
      transition: width 0.3s cubic-bezier(.4,0,.2,1), left 0.3s cubic-bezier(.4,0,.2,1);
    }
    .nav-link:hover .nav-underline,
    .nav-link:focus .nav-underline {
      width: 100%;
      left: 0;
    }
    /* Discord dropdown */
    #discordProfile .dropdown-visible {
      opacity: 1 !important;
      pointer-events: auto !important;
      transition: opacity 0.2s;
      z-index: 100;
      display: block !important;
    }
    #discordProfile .dropdown-hidden {
      opacity: 0 !important;
      pointer-events: none !important;
      transition: opacity 0.2s;
      z-index: 100;
      display: none !important;
    }
    /* Fade page transitions */
    .fade-page {
      opacity: 1;
      transition: opacity 0.4s cubic-bezier(.4,0,.2,1);
    }
    .fade-page.fade-out {
      opacity: 0;
      pointer-events: none;
    }
    /* Focus outlines */
    button:focus, a:focus, input:focus, select:focus, textarea:focus {
      outline: 2px solid #22d3ee;
      outline-offset: 2px;
    }
    /* Animated background gradient */
    body::before {
      content: "";
      position: fixed;
      z-index: -1;
      inset: 0;
      background: linear-gradient(120deg, #1e293b 0%, #232323 50%, #10151c 100%);
      animation: gradientMove 12s ease-in-out infinite alternate;
      opacity: 0.7;
    }
    @keyframes gradientMove {
      0% { background-position: 0% 50%; }
      100% { background-position: 100% 50%; }
    }
    /* Fade-in for main content */
    main > section {
      opacity: 0;
      transform: translateY(30px);
      animation: fadeInMain 0.9s cubic-bezier(.4,0,.2,1) 0.2s forwards;
    }
    @keyframes fadeInMain {
      to {
        opacity: 1;
        transform: none;
      }
    }
    /* Back to Top button */
    #backToTopBtn {
      position: fixed;
      bottom: 32px;
      right: 32px;
      z-index: 50;
      background: linear-gradient(90deg, #22d3ee 0%, #a78bfa 100%);
      color: #fff;
      border: none;
      border-radius: 50%;
      width: 48px;
      height: 48px;
      box-shadow: 0 4px 24px 0 rgba(34,197,94,0.18), 0 0 0 0 #a78bfa;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      cursor: pointer;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s, box-shadow 0.3s, transform 0.2s;
    }
    #backToTopBtn.show {
      opacity: 1;
      pointer-events: auto;
      box-shadow: 0 8px 32px 0 #22d3ee55, 0 0 0 8px #a78bfa22;
    }
    #backToTopBtn:hover {
      transform: scale(1.12) rotate(-6deg);
      box-shadow: 0 12px 36px 0 #22d3ee99, 0 0 0 12px #a78bfa33;
    }
    /* Card glassmorphism & hover */
    .event-card {
      backdrop-filter: blur(14px) saturate(160%);
      background: rgba(25, 25, 34, 0.85);
      border: 2px solid rgba(60, 60, 80, 0.25);
      box-shadow: 0 8px 32px 0 rgba(34,197,94,0.10), 0 1.5px 8px 0 rgba(0,0,0,0.12);
      transition: transform 0.18s cubic-bezier(.4,0,.2,1), box-shadow 0.18s cubic-bezier(.4,0,.2,1), border-color 0.18s cubic-bezier(.4,0,.2,1);
      position: relative;
      overflow: hidden;
    }
    .event-card:hover {
      transform: translateY(-10px) scale(1.035) rotate(-1deg);
      box-shadow: 0 16px 48px 0 #22d3ee33, 0 2px 12px 0 #a78bfa33;
      border-color: #22d3ee;
    }
    .event-card::after {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      border-radius: 1.5rem;
      box-shadow: 0 0 80px 0 #a78bfa22, 0 0 40px 0 #22d3ee22;
      opacity: 0.4;
      z-index: 1;
    }
    /* Sparkle animation for section title */
    .sparkle {
      position: absolute;
      top: 0.18em;
      right: 0.18em;
      width: 1.2em;
      height: 1.2em;
      pointer-events: none;
      z-index: 2;
      animation: sparkleTwinkle 1.8s infinite;
    }
    @keyframes sparkleTwinkle {
      0%, 100% { opacity: 0.7; transform: scale(1) rotate(0deg);}
      50% { opacity: 1; transform: scale(1.18) rotate(20deg);}
    }
    /* Countdown glowing border */
    #countdown {
      display: block !important;
      opacity: 1 !important;
      color: #4ade80 !important; /* Tailwind green-300 */
      font-size: 2rem !important;
      border-radius: 0.75rem;
      padding: 0.5em 1em;
      background: rgba(30, 41, 59, 0.85);
      box-shadow: 0 2px 16px 0 #22d3ee33, 0 1px 4px 0 #a78bfa22;
      border: 2px solid #22d3ee;
      background-clip: padding-box;
      font-weight: bold;
      letter-spacing: 0.04em;
    }
    /* Modal overlay glass effect */
    #applyModal, #squidGamesModal {
      background: rgba(16, 21, 28, 0.72);
      backdrop-filter: blur(8px) saturate(120%);
      transition: background 0.3s;
    }
    #applyModal .animate__fadeInDown,
    #squidGamesModal .animate__fadeInDown {
      animation-duration: 0.5s;
    }
    /* Modal card glassmorphism */
    #applyModal > div, #squidGamesModal > div {
      background: rgba(35, 35, 35, 0.98);
      box-shadow: 0 8px 40px 0 #22d3ee33, 0 2px 12px 0 #a78bfa33;
      border-radius: 2rem;
      border: 2px solid #22d3ee33;
      transition: box-shadow 0.2s;
    }
    #applyModal > div:hover, #squidGamesModal > div:hover {
      box-shadow: 0 16px 64px 0 #22d3ee55, 0 4px 24px 0 #a78bfa55;
    }
    /* Buttons - glowing and animated */
    button, .btn {
      transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
    }
    button:hover, .btn:hover {
      box-shadow: 0 0 16px 0 #22d3ee99, 0 0 32px 0 #a78bfa66;
      transform: translateY(-2px) scale(1.04);
    }
    button:active, .btn:active {
      transform: scale(0.98);
    }
    /* Social links in footer */
    footer a {
      transition: color 0.2s, background 0.2s, box-shadow 0.2s;
    }
    footer a:hover {
      color: #22d3ee;
      background: #232323;
      box-shadow: 0 2px 12px 0 #22d3ee33;
    }
    /* Responsive tweaks */
    @media (max-width: 640px) {
      .event-card {
        border-radius: 1rem;
      }
      #applyModal > div, #squidGamesModal > div {
        border-radius: 1.2rem;
      }
    }
  </style>