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

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

  /* Header */
  header { background-color: #333; padding: 20px 0; text-align: center; color: #fff; }
  header img { height: 50px; }

  /* Hero / Home Button */
  .hero { text-align: center; padding: 30px 0; }
  .hero h1 { color: #222; margin-bottom: 10px; }
  .hero p { color: #555; margin-bottom: 20px; }
  .hero .home-btn { display: inline-block; padding: 12px 25px; background-color: #555; color: #fff; border-radius: 5px; text-decoration: none; transition: 0.3s; }
  .hero .home-btn:hover { background-color: #333; }

  /* Content */
  #mw-text { padding: 30px 0; }
  #mw-text h1, #mw-text h2, #mw-text h3 { color: #222; margin-bottom: 15px; }
  #mw-text p { margin-bottom: 15px; color: #555; }
  #mw-text ul { list-style-type: none; padding-left: 0; margin-bottom: 15px; }
  #mw-text ul li { padding: 5px 0; border-bottom: 1px solid #eee; }

  /* Image chính giữa */
  #mw-text .image { text-align: center; margin: 20px 0; }
  #mw-text .image img { max-width: 80%; border-radius: 8px; }

  /* Social Share rectangle */
  .social-share-inline { display: flex; justify-content: center; gap: 10px; margin-bottom: 15px; 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; }

  /* Torrent Cards */
  .torrent-card { background-color: #f9f9f9; padding: 20px; margin-bottom: 20px; border-radius: 8px; border: 1px solid #eee; transition: 0.3s; }
  .torrent-card:hover { background-color: #f1f1f1; }
  .torrent-card a.download-btn { display: inline-block; padding: 10px 15px; background-color: #555; color: #fff; border-radius: 5px; margin-top: 10px; }
  .torrent-card a.download-btn:hover { background-color: #333; }

  /* Footer */
  footer { background-color: #f8f8f8; padding: 20px 0; text-align: center; border-top: 1px solid #ddd; color: #777; font-size: 0.9em; }
.block .btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #555;
  color: #fff;
  font-size: 1rem;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  cursor: pointer;
  margin-top: 20px;
  font-weight: 600;
}

.block .btn:hover {
  background-color: #333; 
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

.block .btn:active {
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}
  @media (max-width: 768px) {
    .social-share-inline a { font-size: 0.8rem; padding: 5px 10px; }
    #mw-text .image img { max-width: 100%; }
  }