/* Общие стили */
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: url('https://muzlet.ucoz.net/fon1.jpg') no-repeat center center fixed;
  background-size: cover;
  color: white;
  line-height: 1.6;
}

/* Шапка */
header {
  position: relative;
  text-align: center;
  background: rgba(0, 0, 0, 0.75);
  padding: 50px 0;
}
header img {
  display: block;
  margin: 0 auto;
  max-width: 95%;
  max-height: 250px;
  position: relative;
  z-index: 1;
}

/* Контейнеры */
.wrapper {
  display: flex;
  justify-content: center;
  padding: 20px 10px;
}
.container {
  flex: 1 1 600px;
  max-width: 900px;
  margin: 20px auto;
  padding: 30px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

/* Заголовки */
.eTitle {
  font-size: 24px;
  font-weight: bold;
  color: #ffd700;
  margin-bottom: 20px;
}

/* Сообщение (контент) */
.eMessage {
  font-size: 16px;
  line-height: 1.6;
}
.eMessage h2 {
  color: #ffd700;
  font-size: 20px;
  margin: 0 0 10px;
  font-weight: bold;
}
.eMessage p {
  margin: 8px 0;
  font-size: 15px;
  color: #e0e0e0;
}
.eMessage strong {
  color: #fff;
}
.eMessage img {
  max-width: 250px;
  height: auto;
  flex-shrink: 0;
  border-radius: 8px;
  margin: 0 25px 15px 0;
  float: left;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* Спойлер */
.spoiler {
  margin-top: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 5px;
}
.spoiler details {
  background: rgba(255, 255, 255, 0.1);
  padding: 10px;
  border-radius: 6px;
}
.spoiler summary {
  cursor: pointer;
  background: #2a2a2a;
  padding: 10px 15px;
  border-radius: 6px;
  color: #fff;
  font-weight: bold;
  font-size: 15px;
  transition: background-color 0.2s ease-in-out;
}
.spoiler summary:hover {
  background-color: #3a3a3a;
}
.eMessage details[open] summary {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.eMessage details div {
  max-height: 350px;
  overflow: auto;
  margin-top: 5px;
  font-size: 14px;
  line-height: 1.6;
  padding: 10px 15px;
  background-color: rgba(0, 0, 0, 0.2);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  color: #ddd;
}
.eMessage pre {
  white-space: pre-wrap;
  margin: 0;
}

/* Ссылки */
a {
  color: #ffd700;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* Кнопки и ссылки загрузки */
.download-link {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 25px;
  background-color: #00e6e6;
  color: black;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background-color 0.2s ease-in-out, transform 0.1s ease-in-out;
}
.download-link:hover {
  background-color: #00cccc;
  transform: translateY(-2px);
}
.download-link:active {
  transform: translateY(0);
}

/* Мета-информация */
.meta {
  margin-top: 25px;
  font-size: 14px;
  color: #ccc;
}

/* Кнопка возврата */
.back-button {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 20px;
  background-color: #ffd700;
  color: #000;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
}
.back-button:hover {
  background-color: #e0c200;
}

/* Стили для поста */
.post-item {
  background: rgba(0, 0, 0, 0.6);
  padding: 20px;
  margin-bottom: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease-in-out;
}
.post-item .eTitle {
  margin-bottom: 15px;
}
.post-item .eTitle a {
  color: #ffd700;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}
.post-item .eTitle a:hover {
  color: #ffea00;
}
.post-item .eMessage {
  clear: both;
}

/* Скрытые SEO-теги */
.seo-tags {
  visibility: hidden;
  height: 0;
  overflow: hidden;
}

/* Подвал */
#powered {
  font-size: 10px;
  opacity: 0.03;
  position: absolute;
  bottom: 5px;
  right: 5px;
  color: rgba(255, 255, 255, 0.1);
}

/* Адаптив */
@media (max-width: 768px) {
  header {
    padding: 35px 0;
  }
  header img {
    max-height: 180px;
  }
  .wrapper {
    padding: 10px 5px;
  }
  .container {
    padding: 20px 15px;
    border-radius: 8px;
  }
  .eMessage img {
    float: none;
    margin: 0 auto 20px auto;
    display: block;
  }
  .eMessage h2 {
    font-size: 18px;
  }
  .eMessage p {
    font-size: 14px;
  }
  .download-link {
    padding: 10px 20px;
    font-size: 14px;
  }
  .container {
    margin: 10px auto;
  }
}
```0