    :root {
      --neon-orange: #ff5a1f;
      --electric-blue: #00f6ff;
      --desert-red: #ff3366;
      --mountain-purple: #6b48ff;
    }
    
    body {
      margin: 0;
      font-family: 'Montserrat', sans-serif;
      background-color: #111;
      color: white;
    }

    .glow-text {
      text-shadow: 0 0 10px var(--electric-blue),
                   0 0 20px var(--electric-blue),
                   0 0 30px var(--electric-blue);
    }

    #title {
      background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)),
                  url('/api/placeholder/1200/600');
      background-size: cover;
      background-position: center;
      min-height: 30vh;
      display: flex;
      align-items: center;
      justify-content: center;  /* Added this line */
      position: relative;
      overflow: hidden;
      width: 100%;  /* Added this line */
      padding: 50px 0 0 0;
    }

    #title::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(45deg, 
                  var(--neon-orange) 0%,
                  transparent 20%,
                  transparent 80%,
                  var(--desert-red) 100%);
      opacity: 0.5;
      animation: gradientShift 5s infinite alternate;
    }

    @keyframes gradientShift {
      0% { opacity: 0.3; }
      100% { opacity: 0.7; }
    }

    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      padding: 2rem;
    }

    h1 {
      font-family: 'Permanent Marker', cursive;
      font-size: 5rem;
      margin: 0;
      color: white;
      animation: titlePulse 2s infinite;
    }

    @keyframes titlePulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); }
      100% { transform: scale(1); }
    }

    .navbar {
      background: rgba(0,0,0,0.8);
      padding: 1rem;
      position: fixed;
      width: 100%;
      z-index: 1000;
      border-bottom: 2px solid var(--electric-blue);
    }

    .navbar-brand {
      font-family: 'Permanent Marker', cursive;
      color: white;
      font-size: 1.8rem;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .card {
      background: rgba(0,0,0,0.8);
      border: 2px solid var(--neon-orange);
      border-radius: 15px;
      padding: 2rem;
      margin: 1rem;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      text-align: center;
    }

    .card:hover {
      transform: translateY(-10px) rotate(1deg);
      border-color: var(--electric-blue);
      box-shadow: 0 0 20px var(--electric-blue);
    }

    .btn-wild {
      background: var(--desert-red);
      color: white;
      border: none;
      padding: 1rem 2rem;
      font-size: 1.2rem;
      font-weight: bold;
      border-radius: 50px;
      text-decoration: none;
      transition: all 0.3s ease;
      display: inline-block;
      text-transform: uppercase;
      letter-spacing: 2px;
      position: relative;
      overflow: hidden;
    }

    .btn-wild::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: 0.5s;
    }

    .btn-wild:hover::before {
      left: 100%;
    }

    .btn-wild:hover {
      background: var(--mountain-purple);
      transform: scale(1.1);
      box-shadow: 0 0 20px var(--mountain-purple);
    }

    .profile-card {
      background: linear-gradient(45deg, #000, #222);
      border: 3px solid var(--neon-orange);
      border-radius: 20px;
      padding: 2rem;
      margin: 2rem 0;
      transition: all 0.3s ease;
    }

    .profile-card:hover {
      transform: scale(1.02);
      border-color: var(--electric-blue);
    }

    .profile-image {
      width: 200px;
      height: 200px;
      border-radius: 50%;
      border: 4px solid var(--desert-red);
      margin: 0 auto;
      display: block;
      transition: all 0.3s ease;
    }

    .profile-image:hover {
      transform: rotate(5deg);
      border-color: var(--electric-blue);
      box-shadow: 0 0 30px var(--electric-blue);
    }

    footer {
      background: black;
      color: white;
      text-align: center;
      padding: 2rem;
      border-top: 2px solid var(--neon-orange);
    }

    .stats {
      display: flex;
      justify-content: space-around;
      margin: 3rem 0;
    }

    .stat-item {
      text-align: center;
      position: relative;
    }
ve a
    .stat-number {
      font-size: 3.5rem;
      font-weight: bold;
      color: var(--electric-blue);
      text-shadow: 0 0 10px var(--electric-blue);
      animation: numberPulse 2s infinite;
    }

    @keyframes numberPulse {
      0% { transform: scale(1); opacity: 1; }
      50% { transform: scale(1.1); opacity: 0.8; }
      100% { transform: scale(1); opacity: 1; }
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    @media (max-width: 768px) {
      h1 { font-size: 3rem; }
      .stats { flex-direction: column; gap: 2rem; }
    }

    .form-container {
      max-width: 600px;
      margin: 2rem auto;
      padding: 2rem;
      background: rgba(0,0,0,0.8);
      border: 2px solid var(--neon-orange);
      border-radius: 15px;
    }

    .form-container input,
    .form-container textarea {
      width: 100%;
      margin: 0.5rem 0;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid var(--electric-blue);
      border-radius: 5px;
      color: white;
      height: 40px;
    }

    .form-container textarea {
      height: 150px;
    }

    .form-container label {
      color: var(--electric-blue);
      font-weight: bold;
    }

    .form-container input[type="submit"] {
      background: var(--desert-red);
      color: white;
      border: none;
      font-size: 1.2rem;
      font-weight: bold;
      border-radius: 50px;
      cursor: pointer;
      transition: all 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 2px;
    }

    .form-container input[type="submit"]:hover {
      background: var(--mountain-purple);
      transform: scale(1.1);
      box-shadow: 0 0 20px var(--mountain-purple);
    }

    .waiver-text {
      background: rgba(0,0,0,0.8);
      border: 2px solid var(--neon-orange);
      border-radius: 15px;
      padding: 2rem;
      margin: 2rem auto;
      max-width: 800px;
      line-height: 1.6;
    }

    button[type="submit"] {
	  display: flex;
   	  justify-content: center;
      align-items: center;
	}
