
    @import url('https://fonts.googleapis.com/css2?family=Geologica:wght@400;600;700&display=swap');

    :root {
      --nav-bg-color: #493552;
      --page-bg-color: #685372;
      --text-color: #F8F2FD;
      --accent-color: #CCC2D6;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: 'Geologica', sans-serif;
      font-weight: 400;
      background-color: var(--page-bg-color);
      color: var(--text-color);
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    header {
      width: 100%;
      background-color: var(--nav-bg-color);
      position: sticky;
      top: 0;
      padding: 1rem 2rem;
      display: flex;
      justify-content: space-between; /* change from flex-end */
      align-items: center;
      z-index: 1000;
      height: 60px;
      box-sizing: border-box;
    }

    .contact-pill {
      background-color: #573e69;
      color: #f8f2fd;
      font-weight: 600;
      border-radius: 9999px;
      padding: 0.5rem 1.5rem;
      box-shadow: 0 2px 8px rgba(87, 62, 105, 0.7);
      font-family: 'Geologica', sans-serif;
      font-size: 1rem;
      text-align: center;
      margin: 2rem auto;
      display: inline-block;
    }

    .logo {
      font-weight: 700;
      font-size: 1.5rem;
      color: var(--text-color);
    }

    nav {
      display: flex;
      gap: 2rem;
      align-items: center;
      height: 100%;
    }

    nav a {
      color: var(--text-color);
      font-weight: 700;
      text-decoration: none;
      font-size: 0.9rem;
      line-height: 60px;
    }

    nav a:hover {
      text-decoration: underline;
    }

    nav a.active {
      border-bottom: 2px solid var(--accent-color);
    }

    .hero-image {
      position: relative;
      height: calc(100vh - 60px);
      width: 100%;
      background-image: url('media/romastreet.jpg');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }

    .hero-text {
      color: var(--text-color);
      font-size: 2.5rem;
      font-weight: 700;
      text-align: center;
      text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
      max-width: 90%;
      padding: 0 1rem;
    }
    a {
      color: #00e2ff
  }
  
  a:visited {
      color: #0099d4
  }
    .hero-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      max-width: 90%;
      padding: 0 1rem;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
    @media (min-width: 601px) {
      .hero-image {
        background-attachment: fixed;
      }
    }

    @media (max-width: 600px) {
      .hero-text {
        font-size: 1.5rem;
      }
    }

    main {
      text-align: center;
      padding: 4rem 2rem;
      width: 100%;
      max-width: 900px;
    }

    .title {
      font-size: 3rem;
      margin-bottom: 2rem;
      font-weight: 600;
    }

    .info-box {
      background: #573e69;
      border-radius: 30px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
      padding: 3rem;
      margin-top: 2rem;
      text-align: left;
      font-size: 1.1rem;
      font-weight: 200;
      border: none;
    }

.panel {
  position: relative;
}

.made-with-love {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #573e69;
  color: #f8f2fd;
  font-weight: 600;
  border-radius: 9999px;
  padding: 0.5rem 1.5rem;
  box-shadow: 0 2px 8px rgba(87, 62, 105, 0.7);
  font-family: 'Geologica', sans-serif;
  font-size: 1rem;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 10;
}

    @media (max-width: 600px) {
      .title {
        font-size: 2rem;
      }
      nav a {
        font-size: 0.8rem;
      }
      .info-box {
        font-size: 0.95rem;
      }
    }

    .join-button {
      display: inline-block;
      margin-top: 1.5rem;
      padding: 0.75rem 1.5rem;
      background-color: var(--nav-bg-color);
      color: var(--text-color);
      font-weight: 600;
      font-size: 1rem;
      border-radius: 999px;
      text-decoration: none;
      box-shadow: 2px 2px 6px rgba(0,0,0,0.3);
      transition: background-color 0.2s ease, transform 0.2s ease;
    }

    .join-button:hover {
      background-color: #5a3f63;
      transform: scale(1.05);
    }

    .panels {
      display: flex;
      flex-direction: column;
      gap: 2rem;
      padding: 4rem 2rem;
      width: 100%;
      max-width: 1100px;
      margin: 0 auto;
    }

    .panel {
      display: flex;
      gap: 2rem;
      align-items: center;
      position: relative;
    }

    .panel img {
      width: 60%;
      border-radius: 32px;
      height: 40vh;
      object-fit: cover;
      max-width: 100%;
    }

    .panel .made-with-love {
      position: absolute;
      bottom: 12px;
      left: 50%;
      transform: translateX(-50%);
      background-color: #573e69;
      color: #f8f2fd;
      font-weight: 600;
      border-radius: 9999px;
      padding: 0.5rem 1.5rem;
      box-shadow: 0 2px 8px rgba(87, 62, 105, 0.7);
      font-family: 'Geologica', sans-serif;
      font-size: 1rem;
      pointer-events: none;
      user-select: none;
      white-space: nowrap;
      z-index: 10;
    }

    .panel-text {
      display: flex;
      flex-direction: column;
      justify-content: center;
      color: var(--text-color);
      font-weight: 400;
      width: 40%;
    }

    .panel-text h2 {
      font-size: 1.8rem;
      margin-bottom: 0.5rem;
      font-weight: 600;
    }

    .panel-text p {
      font-size: 1rem;
      font-weight: 400;
    }

    .panel.panel-middle {
      flex-direction: row;
      text-align: left;
    }

    .panel.panel-middle .panel-text {
      width: 40%;
    }

    .panel.panel-middle img {
      width: 60%;
      margin-top: 0;
      height: 40vh;
      object-fit: cover;
      max-width: 100%;
    }

  @media (max-width: 800px) {
    .panel {
      flex-direction: column;
    }

    .panel img,
    .panel-text {
      width: 100%;
    }

    .panel.panel-middle .panel-text,
    .panel.panel-middle img {
      width: 100%;
    }

    .panel.panel-middle {
      flex-direction: column-reverse;
    }
  }
  .call-to-action {
    height: calc(100vh - 60px);
    background-image: url('media/finale.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-color);
    position: relative;
    overflow: hidden;
    width: 100vw;
  }

  .cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
    background-color: rgba(0,0,0,0.6);
    border-radius: 12px;
  }

  /* .cta-sparkles {
    display: none;
  }

  @keyframes sparkle-float {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(-10px); opacity: 0.8; }
  } */

  .call-to-action h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
  }

  .cta-button {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: var(--accent-color);
    color: #000;
    font-weight: bold;
    text-decoration: none;
    border-radius: 999px;
    font-size: 1.1rem;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
  }

  .cta-button:hover {
    background-color: #eae3f0;
  }

  footer {
    width: 100vw;
    max-width: 100%;
    padding: 1.5rem 2rem;
    background-color: var(--nav-bg-color);
    color: var(--text-color);
    text-align: center;
    font-size: 0.9rem;
    margin-top: 4rem;
    position: relative;
    left: 0;
    right: 0;
  }

  html {
    scroll-behavior: smooth;
  }

  #back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--accent-color);
    color: #000;
    border: none;
    padding: 0.5rem 1rem;
    font-weight: bold;
    border-radius: 999px;
    cursor: pointer;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
    z-index: 2000;
  }

  .dark-mode {
    --nav-bg-color: #1e1e1e;
    --page-bg-color: #121212;
    --text-color: #ffffff;
    --accent-color: #ee90ee;
  }

  #dark-toggle {
    position: fixed;
    bottom: 20px;
    right: 100px;
    background: var(--accent-color);
    color: #000;
    border: none;
    padding: 0.5rem 1rem;
    font-weight: bold;
    border-radius: 999px;
    cursor: pointer;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
    z-index: 2000;
  }

  .meet-the-team {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 2rem;
    text-align: center;
  }

  .team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
  }

  .team-member {
    background: #573e69;
    padding: 1rem;
    border-radius: 12px;
    max-width: 200px;
    color: var(--text-color);
  }

  .team-member img {
    width: 100%;
    border-radius: 50%;
    margin-bottom: 1rem;
  }

  .team-member p.secondary {
    color: var(--accent-color);
  }

  .faq {
    max-width: 800px;
    margin: 0;
    padding: 2rem;
    text-align: center;
  }
  .faq-discord-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 4rem auto;
    padding: 0 2rem;
  }

  .discord-widget {
    flex: 0 0 350px;
  }

  .faq {
    flex: 1 1 500px;
  }

  .faq-item {
    margin-bottom: 1rem;
    text-align: left;
  }

  .faq-question {
    width: 100%;
    background: var(--accent-color);
    color: #000;
    font-weight: bold;
    border: none;
    padding: 1rem;
    cursor: pointer;
    text-align: left;
    border-radius: 8px;
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    background: #573e69;
    color: var(--text-color);
    padding: 0 1rem;
    border-radius: 0 0 8px 8px;
  }

  .faq-question.active + .faq-answer {
    max-height: 200px;
    padding: 1rem;
  }
body {
  margin: 0;
  padding: 0;
}

.call-to-action {
  margin-bottom: 0;
}
