  body {
      margin: 0;
      font-family: fenix, georgia, times new roman, serif;
      font-size: 14pt;
      background-image: url(media/starrybg.png);
      color: #ffffff;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
    }

    .container {
      display: flex;
      gap: 20px;
      padding: 20px;
      flex-wrap: wrap;
      max-width: 1200px;
    }

    .left{
        display: flex;
      flex-direction: column;
      flex: 1;
      min-width: 536px;
    }
    
    .right {
      display: flex;
      flex-direction: column;
      flex: 2;
      min-width: 500px;
    }

    .left {
      gap: 20px;
    }

    .right {
      gap: 0;
    }

    .box {
      background: #4452B3;
      border: 4px solid #9E73B8;
      border-radius: 10px;
      padding: 10px;
      box-sizing: border-box;
      box-shadow: 0 4px 20px rgba(158, 115, 184, 1);
    }

    .image-box img {
      width: 100%;
      border-radius: 8px;
    }

    .links-box {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      text-align: center;
    }

    .links-box a {
      display: block;
      padding: 10px;
      background: #453d6e;
      background: linear-gradient(90deg, rgba(69, 61, 110, 1) 0%, rgba(71, 62, 156, 1) 50%, rgba(50, 92, 217, 1) 100%);
      color: #ffffff;
      text-decoration: none;
      font-weight: bold;
      transition: background 0.3s;
    }

    .links-box a:hover {
      background: #453d6e;
      background: linear-gradient(270deg, rgba(69, 61, 110, 1) 0%, rgba(71, 62, 156, 1) 50%, rgba(50, 92, 217, 1) 100%);
      cursor: default;
    }

    .right .box {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    /* right text box */
    .inner-box {
      flex: 1;
      max-height: 1078px;
      background-color: #4452B3;
      border: 2px solid #9E73B8;
      border-radius: 10px;
      padding: 15px;
      margin-bottom: 10px;
      box-shadow: 0 4px 20px rgba(251, 193, 209, 0.4);
      overflow-y: auto;
    }

    .inner-box h2 {
      color: #A97FD4;
      font-size: 1.4rem;
      margin: 0 0 10px;
      border-bottom: 2px solid #A97FD4;
      padding-bottom: 5px;
    }

    .inner-box strong, b {
      color: #A97FD4;
    }

    .inner-box u {
      text-decoration-color: #A97FD4;
      text-underline-offset: 3px;
    }

    .inner-box em, i {
      color: #A97FD4;
    }

    .inner-box a {
      color: #ffffff;
      text-decoration: none;
      border-bottom: 1px dotted #ffffff;
    }

    .inner-box a:hover {
      color: #A97FD4;
      background: #ffffff;
      text-decoration: none;
    }

    .banner-img {
      width: 100%;
      height: 30%;
      border-radius: 10px;
      border: 2px solid #fbc1d1;
      box-shadow: 0 4px 15px rgba(251, 193, 209, 0.3);
      object-fit: cover;
      object-position: center;
    }

    /* left text box */
    .text-box {
      max-height: 200px;
      overflow-y: auto;
    }

    .site-box {
      max-height: 200px;
      overflow-y: auto;
    }

    .heading-wrap {
      border-bottom: 2px solid #A97FD4;
      margin-bottom: 15px;
    }

    .heading-wrap h2 {
      color: #A97FD4;
      font-size: 1.5rem;
      margin: 0;
      padding-bottom: 8px;
    }

    .text-box strong, 
    .text-box b {
      font-weight: bold;
      color: #A97FD4;
    }

    .text-box u {
      text-decoration: underline;
      text-decoration-color: #A97FD4;
      text-underline-offset: 3px;
    }

    .text-box em,
    .text-box i {
      font-style: italic;
      color: #A97FD4;
    }

    ::-webkit-scrollbar {
      width: 8px;
    }

    ::-webkit-scrollbar-track {
      background: white;
      border-radius: 4px;
    }

    ::-webkit-scrollbar-thumb {
      background: #ffe1f0;
    }

    ::-webkit-scrollbar-thumb:hover {
      background: #ffe1f0;
    }

    @media (max-width: 768px) {
      .container {
        flex-direction: column;
        align-items: stretch;
      }

      .right .box {
        height: auto;
      }

@font-face {
font-family: fenix;
src: url(fenix.ttf);
}

    }