[html]
<center>
<!DOCTYPE html>
<html lang="ru">
<head>
  <meta charset="UTF-8" />
  <title>Эпизод</title>
  <style>
    body {
      margin: 0;
      padding: 40px;
      background: #000;
      font-family: Georgia, serif;
      display: flex;
      flex-direction: column;
      align-items: center;
      min-height: 100vh;
      gap: 20px;
    }

    .frame-wrapper {
      width: 90vw;
      max-width: 650px;
      background: url('https://e.radikal.host/2025/07/15/23dce2a3f3d4d41f26527b43ceb98256.jpg') no-repeat center center;
      background-size: cover;
      border-radius: 16px;
      overflow: hidden;
      aspect-ratio: 768 / 859;
      position: relative;
    }

    .frame-overlay {
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      background: url('https://e.radikal.host/2025/07/16/Project-202507161619.png') no-repeat center center;
      background-size: 100% 100%;
      pointer-events: none;
      z-index: 10;
    }

    .main-episode {
      position: absolute;
      top: 27.4%;
      left: 36.1%;
      width: 25.7%;
      aspect-ratio: 380 / 550;
      background: url('https://upforme.ru/uploads/001c/7d/d4/85/32481.png') no-repeat center;
      background-size: cover;
      border-radius: 0px;
      z-index: 5;
    }

    .avatar-top-right,
    .avatar-bottom-left {
      position: absolute;
      background-size: cover;
      background-repeat: no-repeat;
      z-index: 7;
      width: 20.5%;
      aspect-ratio: 1 / 1;
      border-radius: 0;
    }

    .avatar-top-right {
      top: 15.8%;
      right: 12%;
      background-image: url('https://upforme.ru/uploads/001c/7d/d4/85/341534.jpg ');
    }

    .avatar-bottom-left {
      bottom: 19.2%;
      left: 14.8%;
      background-image: url('https://e.radikal.host/2025/07/16/Project-202507152329.png');
    }

    .info-left,
    .info-right {
      color: #fff !important;
      text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
      font-size: 14px;
      line-height: 1.6;
      padding: 10px 15px;
      box-sizing: border-box;
      position: absolute;
      z-index: 8;
    }

    .info-left {
      top: 11%;
      left: 3%;
      width: 300px;
      text-align: center;
      font-size: 10px;
    }

    .info-right {
      bottom: 10%;
      left: 63%;
      transform: translateX(-50%);
      width: 55%;
      text-align: center;
    }

    .info-right .title {
      font-size: 16px;
      font-weight: bold;
      margin-bottom: 5px;
    }

    .spoiler-box {
      width: 90vw;
      max-width: 650px;
      background: url('https://e.radikal.host/2025/07/15/23dce2a3f3d4d41f26527b43ceb98256.jpg') no-repeat center center;
      background-size: cover;
      border-radius: 12px;
      padding: 15px;
      color: #fff;
      font-size: 13px;
      line-height: 1.5;
      box-sizing: border-box;
    }

    details {
      background-color: rgba(0, 0, 0, 0.4);
      border: 1px solid #444;
      border-radius: 8px;
      padding: 10px;
    }

    summary {
      cursor: pointer;
      font-weight: bold;
      font-size: 14px;
    }

    .spoiler-images {
      margin-top: 10px;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
    }

    .spoiler-images img {
      max-width: 100%;
      height: auto;
      border-radius: 4px;
      max-height: 260px;
    }

    @media (max-width: 400px) {
      .info-left,
      .info-right {
        font-size: 12px;
        padding: 8px 12px;
        width: auto;
      }

      .spoiler-images img {
        max-height: 140px;
      }
    }
  </style>
</head>
<body>
  <!-- Верхний блок с рамкой -->
  <div class="frame-wrapper">
    <div class="main-episode"></div>
    <div class="avatar-top-right"></div>
    <div class="avatar-bottom-left"></div>
    <div class="info-left">
      <div><i>10.02.2016</i></div>
      <div><i>21:21 / - 5°C снег</i></div>
      <div><i>Фейблтаун</i></div>
      <div><i>лавка «Thorn Sleep»</i></div>
    </div>
    <div class="info-right">
      <div class="title"><b>Букет для Безумного Чаепития</b></div>
      <div><i>“Когда ведьма собирает букет для безумца, знайте: это чаепитие закончится не только смехом, но и честной правдой. Не для слабонервных„</i></div>
    </div>
    <div class="frame-overlay"></div>
  </div>

  <!-- Отдельный блок со спойлером -->
  <div class="spoiler-box">
    <details>
      <summary>лавка «Thorn Sleep»</summary>
      <div class="spoiler-images">
        <img src="https://e.radikal.host/2025/07/25/Project-202507251938.png" alt="Картинка 1">
        <img src="https://e.radikal.host/2025/07/25/Project-202507251939.png" alt="Картинка 2">
        <img src="https://e.radikal.host/2025/07/25/Project-202507251951.png" alt="Картинка 3">
      </div>
    </details>
  </div>
</body>
</html>
</center>
[/html]

Отредактировано Fairy (27.07.2025 00:49:39)