body {
      margin: 0;
      padding: 0;
      font-family: 'Inter', sans-serif;
      background-color: #faf8f6;
      color: #222;
      line-height: 1.6;
    }
    header {
      padding: 4rem 2rem 2rem;
      text-align: center;
    }
    header h1 {
      font-family: 'Playfair Display', serif;
      font-size: 3rem;
      margin-bottom: 0.5rem;
    }
    header p {
      font-size: 1.2rem;
      margin: 0.25rem 0;
    }
    section {
      padding: 2rem;
      max-width: 700px;
      margin: 0 auto;
    }
    section h2 {
      font-size: 1.4rem;
      margin-bottom: 0.25rem;
    }
    section p {
      margin-top: 0;
      margin-bottom: 2rem;
    }
    section a {
      text-decoration: none;
      color: #a00;
      font-weight: 600;
    }
    footer {
      text-align: center;
      padding: 2rem;
      font-size: 0.9rem;
      background-color: #f0edea;
      margin-top: 4rem;
    }
    footer a {
      color: #a00;
      text-decoration: none;
    }

    /* Entry screen styles */
    #age-gate {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: #faf8f6;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      z-index: 9999;
    }
    #age-gate h2 {
      font-size: 1.8rem;
      margin-bottom: 1rem;
    }
    #age-gate p {
      max-width: 500px;
      margin-bottom: 2rem;
    }
    .age-btn {
      padding: 0.6rem 1.2rem;
      margin: 0.5rem;
      font-size: 1rem;
      border: none;
      cursor: pointer;
      background-color: #a00;
      color: #fff;
      border-radius: 4px;
    }
    .age-btn:hover {
      background-color: #800;
    }