    :root {
      --primary: #0a0096;
      --bg: #131415;
      --text: #f5f5f5;
    }

    body {
      margin: 0;
      background-color: var(--bg);
      color: var(--text);
      font-family: 'Segoe UI', sans-serif;
      line-height: 1.6;
    }

    header {
      background-color: #131415;
      padding: 2rem;
      text-align: center;
    }

    header h1 {
      color: var(--primary);
      font-size: 3rem;
      margin: 0;
      font-family: 'Copperplate', 'Segoe UI', sans-serif;
    }

    .sponsors {
      background-color: #1a1a1a;
      padding: 2rem;
      text-align: center;
      border-top: 1px solid #333;
    }

    .sponsors h2 {
      color: var(--primary);
      margin-bottom: 1.5rem;
    }

    .sponsor-logos {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 2rem;
      text-align: center;
      margin: 0;
      background-color: var(--bg);
      color: var(--text);
      font-family: 'Segoe UI', sans-serif;
      line-height: 1.6;
    }

    .sponsor-logos img {
      max-height: 60px;
      border-radius: 50%;
      filter: grayscale(100%);
      transition: filter 0.3s ease;
    }

    .sponsor-logos img:hover {
      filter: grayscale(0%);
    }


    .hero {
      text-align: center;
      padding: 1rem;
    }

    .hero img {
      max-width: 250px;
      margin-bottom: 1rem;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    .hero p {
      font-size: 1.2rem;
      color: var(--text);
    }

    .btn {
      display: inline-block;
      background-color: var(--primary);
      color: #000;
      padding: 0.8rem 1.5rem;
      text-decoration: none;
      border-radius: 5px;
      font-weight: bold;
      margin: 1rem auto;
      text-align: center;
    }

    .btn-container {
      text-align: center;
      margin-top: 1rem;
    }

    section {
      padding: 2rem;
      max-width: 900px;
      margin: 0 auto;
    }

    .faq {
      background-color: #1a1a1a;
      border-radius: 8px;
      padding: 1rem;
      margin-bottom: 1rem;
    }

    .coming-soon,
    .mezcal {
      background-color: #1a1a1a;
      border-radius: 8px;
      padding: 1rem;
      margin-bottom: 1rem;
      text-align: center;
    }

    .coming-soon h2,
    .mezcal h2 {
      color: var(--primary);
    }

    .coming-soon p,
    .mezcal p {
      margin: 0.5rem 0;
    }

    footer {
      background-color: #111;
      text-align: center;
      padding: 2rem;
      font-size: 0.9rem;
      color: #777;
    }

    img.banner {
      width: 100%;
      max-height: 550px;
      object-fit: cover;
      border-radius: 8px;
    }

    #easterEgg {
      position: fixed;
      bottom: 1rem;
      right: 1rem;
      width: 40px;
      height: 40px;
      background: url('images/book.png') no-repeat center;
      background-size: contain;
      opacity: 0.2;
      transition: opacity 0.3s ease;
      z-index: 1000;
    }

    #easterEgg:hover {
      opacity: 1;
      cursor: pointer;
    }