
    body {
      margin: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background-image: url("/files/site/background.png");
      background-position: center;
      background-repeat: repeat;
      background-size: 25px;
      image-rendering: pixelated;
      color: rgb(172, 236, 141);
      font-family: Arial, sans-serif;
    }

    .body-inner {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
      padding: 40px 0;
      box-sizing: border-box;
      width: 90%;
      max-width: 1200px;
    }

    .layout {
      display: flex;
      flex-wrap: wrap;
      align-items: flex-start;
      justify-content: center;
      gap: 20px;
      width: 100%;
      max-width: 1200px;
      margin-top: 20px;
    }

    .screen-container {
      position: relative;
      background: linear-gradient(to bottom, rgba(22, 45, 25, 0.9), rgba(14, 29, 13, 0.9));
      border: 2px solid #1f2c3a;
      box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7), inset 0px 0px 30px rgba(0, 0, 0, 0.8);
      overflow-y: auto;
      display: flex;
      flex-direction: column;
      padding: 20px;
      box-sizing: border-box;
      border-radius: 10px;
    }

    .main-container {
      flex: 1;
      min-width: 280px;
      max-width: 750px;
      height: auto;
    }

    .left-column {
      display: flex;
      flex-direction: column;
      gap: 20px;
      flex: 0.3;
      min-width: 250px;
    }

    .secondary-container {
      flex: 0.3;
      min-width: 250px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      gap: 10px;
    }

    .image-container {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .image-container img {
      width: 64px;
      height: 64px;
      border: 2px solid #1f3a26;
      box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7), inset 0px 0px 10px rgba(0, 0, 0, 0.5);
    }

    .image-container h1 {
      color: #89d48d;
      font-size: 18px;
    }

    .content {
      h1 {
        text-align: center;
      }
      h2 {
        line-height: 0px;
        margin-bottom: 25px;
      }
      color: #89d49c;
      font-size: 16px;
    }

    a img {
      width: 32px;
      height: 32px;
      margin: 5px;
      transition: transform 0.2s ease;
    }

    a:hover img {
      transform: scale(1.1);
    }

    @media (max-width: 768px) {
      .layout {
        flex-direction: column;
        align-items: center;
      }
      .main-container, .secondary-container {
        width: 100%;
      }
      .image-container {
        flex-direction: column;
        text-align: center;
      }
      .image-container h1 {
        font-size: 16px;
      }
    }

    .screen-container::-webkit-scrollbar {
      width: 12px;
    }

    .screen-container::-webkit-scrollbar-thumb {
      background: #89d49c;
      border-radius: 6px;
      border: 2px solid #1f3a21;
    }

    .screen-container::-webkit-scrollbar-track {
      background: #0e1d0d;
    }

    .attention-content {
      width: 70%;
      max-width: 1200px;
      margin-top: 20px;
      background: linear-gradient(to bottom, #391c1c, #1d0d0d);
      border: 2px solid #1f2c3a;
      box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7), inset 0px 0px 30px rgba(0, 0, 0, 0.8);
      padding: 10px;
      box-sizing: border-box;
      opacity: .95;
      border-radius: 10px;
      text-align: center;
      color: #d48989;

      a:link {
        color: rgb(190, 0, 0);
        text-decoration: none;
      }
    }

    .message-container{
      max-width:720px;margin:0 auto
      h1{font-size:20px;margin:0 0 16px}
      .messages{display:flex;flex-direction:column;gap:12px}


      .message{text-align:left;display:flex;gap:12px;background:rgba(57, 117, 54, 0.6);padding:12px;border-radius:12px;box-shadow:0 1px 0 rgba(0,0,0,0.04);}
      .avatar{width:48px;height:48px;border-radius:50%;overflow:hidden;flex:0 0 48px;background:#eee;display:flex;align-items:center;justify-content:center}
      .avatar img{width:100%;height:100%;object-fit:cover;display:block}
      .body{flex:1;min-width:0}
      .meta{display:flex;align-items:center;gap:8px;margin-bottom:6px}
      .name{font-weight:600;font-size:14px}
      .date{font-size:12px;margin-left:auto}
      .text{font-size:14px;color:#cdf7d8;white-space:pre-wrap}
      .text video, .text img, .text iframe {max-width:100%;border-radius:8px;margin-top:6px;}

      .empty{background:transparent;border:2px dashed #e5e7eb;padding:20px;text-align:center;color:#6b7280}
    }

    /* === TEXT LINKS === */
    a {
      color: #6bcc37;
      text-decoration: none;
      position: relative;
      transition: all 0.2s ease;
    }

    /* underline effect (animated) */
    a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -2px;
      width: 0%;
      height: 2px;
      background: #89d49c;
      transition: width 0.2s ease;
    }

    a:hover {
      color: #c8ffb8;
      text-shadow: 0 0 6px rgba(137, 212, 156, 0.6);
    }

    a:hover::after {
      width: 100%;
    }

    /* click effect */
    a:active {
      transform: scale(0.98);
    }


    /* === COLLAPSIBLE BLOCK === */
    .collapse {
      margin: 15px 0;
      border: 2px solid #1f2c3a;
      border-radius: 10px;
      background: linear-gradient(to bottom, rgba(22, 45, 25, 0.9), rgba(14, 29, 13, 0.9));
      box-shadow: 0px 0px 10px rgba(0,0,0,0.7),
                  inset 0px 0px 20px rgba(0,0,0,0.6);
      overflow: hidden;
    }

    /* Header */
    .collapse summary {
      cursor: pointer;
      list-style: none;
      padding: 10px 14px;
      font-size: 15px;
      color: #89d49c;
      background: rgba(40, 80, 40, 0.5);
      border-bottom: 1px solid #1f3a26;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: all 0.2s ease;
    }

    /* Remove default arrow */
    .collapse summary::-webkit-details-marker {
      display: none;
    }

    /* Custom arrow */
    .collapse summary::after {
      content: "▶";
      font-size: 12px;
      color: #9be38c;
      transition: transform 0.2s ease;
    }

    /* Open state arrow */
    .collapse[open] summary::after {
      transform: rotate(90deg);
    }

    /* Hover */
    .collapse summary:hover {
      background: rgba(60, 120, 60, 0.6);
      color: #c8ffb8;
    }

    /* Content */
    .collapse-content {
      padding: 12px;
      color: #cdf7d8;
      font-size: 14px;
    }
  }