* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Roboto', 'Microsoft YaHei', sans-serif; }
body { background: #fff8fc; color: #222; line-height: 1.7; }
a { text-decoration: none; transition: 0.3s; }

.container { width: 90%; max-width: 1100px; margin: 0 auto; }

header {
  background: linear-gradient(90deg, #2b1328, #4a1f46);
  padding: 20px 0;
  text-align: center;
  color: #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}
header img { max-height: 42px; }

.hero { text-align: center; padding: 36px 0 18px; }
.hero h1 { color: #2b1328; margin-bottom: 10px; font-size: 2rem; }
.hero p { color: #6e4d65; margin-bottom: 20px; font-size: 1.05rem; }

#mw-text { padding: 22px 0 36px; }
#mw-text h1, #mw-text h2, #mw-text h3 { color: #2b1328; }
#mw-text h2 {
  margin: 26px 0 14px;
  padding-left: 14px;
  border-left: 5px solid #dd5aa0;
  font-size: 1.55rem;
}
#mw-text h3 { margin: 18px 0 10px; font-size: 1.12rem; }
#mw-text p { margin-bottom: 15px; color: #4e4550; font-size: 1rem; }
#mw-text ul { list-style-type: none; padding-left: 0; margin-bottom: 15px; }
#mw-text ul li {
  padding: 10px 12px;
  border-bottom: 1px solid #f1d9e8;
  background: rgba(255,255,255,0.7);
}

#mw-text .image { text-align: center; margin: 24px 0 28px; }
#mw-text .image img {
  width: 100%;
  max-width: 1000px;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(86, 33, 74, 0.18);
}

.social-share-inline { display: flex; justify-content: center; gap: 10px; margin-bottom: 12px; flex-wrap: wrap; }
.social-share-inline a {
  display: flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 8px;
  color: #fff;
  font-size: 0.9rem;
  transition: 0.3s;
}
.social-share-inline a img { width: 20px; height: 20px; margin-right: 6px; }
.social-share-inline a span.share-count { font-weight: bold; }

.social-telegram { background-color: #0088cc; }
.social-telegram:hover { background-color: #006699; }
.social-twitter { background-color: #1da1f2; }
.social-twitter:hover { background-color: #0d95e8; }
.social-facebook { background-color: #1877f2; }
.social-facebook:hover { background-color: #145dbf; }
.social-reddit { background-color: #ff4500; }
.social-reddit:hover { background-color: #cc3700; }
.social-sharethis { background-color: #ff9900; }
.social-sharethis:hover { background-color: #e68a00; }

.block .btn {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(90deg, #d84f99, #a244d8);
  color: #fff;
  font-size: 1rem;
  border-radius: 999px;
  box-shadow: 0 6px 15px rgba(168, 68, 156, 0.22);
  cursor: pointer;
  margin-top: 12px;
  font-weight: 700;
}
.block .btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(168, 68, 156, 0.28);
}
.block .btn:active { box-shadow: 0 6px 15px rgba(168, 68, 156, 0.22); }

table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 15px;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
}

table th {
  background-color: #f7dcec;
  color: #3d2239;
  text-align: left;
  padding: 10px;
  border: 1px solid #f1d9e8;
}

table td {
  padding: 10px;
  border: 1px solid #f1d9e8;
}

table tr:nth-child(even) { background-color: #fff8fc; }

blockquote {
  margin: 24px 0 10px;
  padding: 16px 20px;
  background-color: #fff;
  border-left: 4px solid #d84f99;
  font-style: normal;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}
blockquote p { margin: 0; color: #4e4550; }
blockquote strong { color: #2b1328; }

footer {
  background-color: #fff;
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid #f0d9e7;
  color: #8a7285;
  font-size: 0.9em;
}

@media (max-width: 768px) {
  .hero h1 { font-size: 1.55rem; }
  .hero p { font-size: 0.98rem; }
  .social-share-inline a { font-size: 0.8rem; padding: 5px 10px; }
  #mw-text .image img { max-width: 100%; }
  table { display: block; overflow-x: auto; }
}
