    body {
      background-color: #121212;
      color: #f0f0f0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      margin: 0;
      padding: 0;
      min-height: 100vh;
    }

    nav {
      background-color: #1e1e1e;
      padding: 10px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
    }

    .nav-left {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      flex: 1;
    }

    .nav-left a {
      color: white;
      text-decoration: none;
      margin-left: 15px;
      padding: 8px;
    }

    .nav-right {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      flex: 1;
    }

    .nav-right img {
      height: 50px;
      padding-top: 3px;
    }

    .menu-icon {
      display: none;
      font-size: 28px;
      color: white;
      cursor: pointer;
    }

    @media (max-width: 768px) {
      nav {
        flex-direction: column;
        align-items: stretch;
      }

      .menu-icon {
        display: block;
        margin-bottom: 10px;
      }

      .menu-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
      }

      .nav-right {
        justify-content: center;
        width: 100%;
        margin-bottom: 10px;
      }

      .nav-left {
        order: 3;
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
      }

      .nav-left.show {
        display: flex;
      }

      .nav-left a {
        margin: 10px 0;
      }
    }

    #story-container {
      width: 80%;
      padding: 2rem;
      margin: auto auto;
      background-color: #1e1e1e;
      border-radius: 10px;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    }

    h1, h2, h3 {
      text-align: center;
      color: #ffcc00;
    }

    .story-text {
      margin-bottom: 1.5em;
      font-size: 1.2em;
    }

    .story-list {
      list-style: none;
      padding: 50px;
    }

    .story-list li {
      margin: 1rem 0;
    }

    .story-list a, .choice-button, .control-button {
      display: inline-block;
      text-decoration: none;
      color: #ffffff;
      background-color: #4a90e2;
      padding: 0.75rem 1.5rem;
      border-radius: 6px;
      transition: background-color 0.3s ease;
      font-size: 1em;
      text-align: center;
      border: none;
      cursor: pointer;
    }

    .story-list a:hover, .choice-button:hover, .control-button:hover {
      background-color: #357bd8;
    }
	
	.contact-section {
  max-width: 600px;
  margin: auto auto;
 /* background: linear-gradient(to bottom right, #1e293b, #0f172a);*/
  border-radius: 16px;
/*  color: #e2e8f0;*/
  font-family: 'Georgia', serif;
/*  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5); */
}

.contact-section h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  text-align: center;
  color: #facc15;
}

.contact-section p {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1rem;
  color: #cbd5e1;
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: #fcd34d;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1.5rem;
  border: 1px solid #334155;
  border-radius: 8px;
/*  background: #1e293b;*/
/*  color: #f1f5f9;*/
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #facc15;
  box-shadow: 0 0 8px #facc15;
}

.contact-form button {
  display: block;
  width: 100%;
  padding: 0.75rem;
  background: linear-gradient(to right, #facc15, #f59e0b);
  color: #0f172a;
  font-weight: bold;
  font-size: 1.1rem;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.contact-form button:hover {
  background: linear-gradient(to right, #fcd34d, #fbbf24);
  transform: scale(1.02);
}

.contact-form fieldset {
  border: none;
  margin-bottom: 1.5rem;
  padding: 0;
  text-align: center;
}

.contact-form legend {
  font-weight: bold;
  color: #fcd34d;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.radio-group {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #e2e8f0;
  font-size: 1rem;
  background: #1e293b;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: background 0.3s ease;
  cursor: pointer;
}

.radio-option:hover {
  background: #334155;
}

.radio-option input[type="radio"] {
  accent-color: #facc15;
  transform: scale(1.2);
  cursor: pointer;
}
