body {
      margin: 0;
      padding: 0;
      background: #f2e6d4;
      font-family: 'Songti SC', serif;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
    }

    .container {
      width: 100%;
      max-width: 900px;
      padding: 10px;
      box-sizing: border-box;
    }

    header {
      text-align: center;
      font-size: 2rem;
      margin-bottom: 10px;
      color: #5c4433;
      font-weight: bold;
      border-bottom: 2px solid #c0a77d;
      padding-bottom: 10px;
    }

    .book {
      position: relative;
      background: #fffef7;
      border: 2px solid #cbb994;
      border-radius: 10px;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
      overflow: hidden;
      height: 80vh;
    }

    .page {
      position: absolute;
      width: 100%;
      height: 100%;
      padding: 20px;
      box-sizing: border-box;
      background: #fffef7;
      overflow-y: auto;
      transition: transform 0.6s ease-in-out;
      transform-origin: left;
      backface-visibility: hidden;
    }

    .page h2 {
      margin-top: 0;
      font-size: 1.5rem;
      color: #5c4433;
      border-bottom: 1px solid #cbb994;
      padding-bottom: 5px;
    }

    .page img {
      max-width: 100%;
      height: auto;
      margin: 10px 0;
      border: 1px solid #cbb994;
      border-radius: 4px;
    }

    .controls {
      position: absolute;
      bottom: 10px;
      left: 0;
      right: 0;
      display: flex;
      justify-content: space-between;
      padding: 0 20px;
    }

    .btn {
      background: #c0a77d;
      color: white;
      border: none;
      padding: 8px 16px;
      border-radius: 4px;
      cursor: pointer;
      font-size: 1rem;
    }

    footer {
      text-align: center;
      font-size: 0.85rem;
      color: #8b6f47;
      margin-top: 20px;
    }

    @media (max-width: 768px) {
      .book {
        height: 85vh;
      }

      .page {
        font-size: 0.95rem;
        padding: 15px;
      }

      header {
        font-size: 1.5rem;
      }
    }

    .none {
        color:#5c4433;
        text-decoration: none;
        line-height: 30px;
    }

    #name {
    color:darkmagenta;
}

#uname {
    color:lime;
}

#red {
    color:red;
}

#ins {
    color:blue;
}

#hot {
    color:hotpink
}