 * { 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: #eaeaea; padding: 20px 0; text-align: center; color: #fff; }
  header img { max-height: 80px; }

  /* 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);
}
/* ===== STYLE TABLE ===== */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 15px;
}

table th {
  background-color: #f3f4f6;
  color: #111827;
  text-align: left;
  padding: 10px;
  border: 1px solid #e5e7eb;
}

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

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

/* ===== STYLE BLOCKQUOTE (AVIS / ÉVALUATIONS) ===== */
blockquote {
  margin: 20px 0;
  padding: 15px 20px;
  background-color: #f9fafb;
  border-left: 4px solid #eb2525;
  font-style: italic;
}

blockquote p {
  margin: 0;
  color: #374151;
}

blockquote strong {
  font-style: normal;
  color: #111827;
}
  @media (max-width: 768px) {
    .social-share-inline a { font-size: 0.8rem; padding: 5px 10px; }
    #mw-text .image img { max-width: 100%; }
  }
:root {
  --bg: #111317;
  --bg-soft: #1a1d23;
  --card: #181c22;
  --card-2: #20252d;
  --text: #f4f6f8;
  --text-soft: #b7bec8;
  --line: #2b313b;
  --accent: #84d447;
  --accent-hover: #73c13b;
  --accent-dark: #5fa22c;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  --radius: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  background:
    radial-gradient(circle at top center, rgba(132, 212, 71, 0.08), transparent 32%),
    linear-gradient(180deg, #0f1115 0%, #14181d 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(100% - 32px, 1120px);
  margin: 0 auto;
}

header {
  top: 0;
  z-index: 100;
  background: rgba(10, 12, 16, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

header::after {
  content: "";
  display: block;
  height: 3px;
  opacity: 0.9;
}

header img {
  height: 58px;
  width: auto;
  max-width: min(320px, 72vw);
  margin: 0 auto;
  padding: 18px 0 16px;
}

.hero {
  position: relative;
  text-align: center;
  padding: 72px 0 48px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 20px 0 auto;
  height: 220px;
  background: radial-gradient(circle, rgba(132, 212, 71, 0.18), transparent 68%);
  pointer-events: none;
}

.hero h1,
.hero p,
.hero .social-share-inline,
.hero .block {
  position: relative;
  z-index: 1;
}

.hero h1 {
  max-width: 900px;
  margin: 0 auto 16px;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #fff;
  text-transform: uppercase;
}

.hero p {
  max-width: 700px;
  margin: 0 auto 28px;
  font-size: 1.05rem;
  color: var(--text-soft);
}

.social-share-inline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 26px;
}

.social-share-inline a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 110px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.social-share-inline a:hover {
  transform: translateY(-2px);
  border-color: rgba(132, 212, 71, 0.5);
  background: rgba(132, 212, 71, 0.08);
}

.social-share-inline img {
  width: 18px;
  height: 18px;
}

.share-count {
  min-width: 22px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(132, 212, 71, 0.14);
  color: #d7ffc0;
  font-size: 0.875rem;
  line-height: 1.4;
}

.block {
  margin-top: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 10px;
  border: 1px solid var(--accent-dark);
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(132, 212, 71, 0.25);
}

.btn-focus {
  color: #101410;
  background: linear-gradient(180deg, #99ea5d 0%, var(--accent) 100%);
}

.btn-lg.more-padding {
  min-width: 270px;
  padding-inline: 34px;
}

#mw-text {
  margin: 16px auto 64px;
  padding: 34px 34px 42px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

#mw-text > :first-child {
  margin-top: 0;
}

#mw-text p {
  margin: 0 0 18px;
  color: #e6ebf0;
}

#mw-text h2 {
  margin: 38px 0 14px;
  padding-left: 14px;
  border-left: 4px solid var(--accent);
  font-size: 1.6rem;
  line-height: 1.3;
  color: #fff;
}

#mw-text h3 {
  margin: 28px 0 10px;
  font-size: 1.15rem;
  line-height: 1.4;
  color: #f8fafc;
}

#mw-text ul {
  margin: 0 0 20px 10px;
  padding: 0 0 0 18px;
  list-style: none;
}

#mw-text li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 24px;
  color: #dfe5ec;
}

#mw-text li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(132, 212, 71, 0.14);
}

.image {
  margin: 26px 0 30px;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
}

.image img {
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 8px;
}

footer {
  padding: 24px 16px 36px;
  text-align: center;
  color: #97a0ab;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: #0d1014;
}

@media (max-width: 768px) {
  header img {
    height: 44px;
    max-width: min(260px, 78vw);
    padding: 14px 0 12px;
  }

  .hero {
    padding: 52px 0 30px;
  }

  .hero p {
    margin-bottom: 22px;
  }

  .social-share-inline {
    gap: 10px;
  }

  .social-share-inline a {
    min-width: calc(50% - 8px);
    justify-content: center;
    padding: 10px 12px;
  }

  #mw-text {
    margin-bottom: 42px;
    padding: 22px 18px 28px;
    border-radius: 12px;
  }

  #mw-text h2 {
    font-size: 1.35rem;
    margin-top: 30px;
  }

  .btn-lg.more-padding {
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 20px, 1120px);
  }

  .hero h1 {
    font-size: 1.7rem;
  }

  .social-share-inline a {
    min-width: 100%;
  }

  #mw-text {
    padding: 20px 14px 26px;
  }

  #mw-text h2 {
    padding-left: 12px;
    font-size: 1.25rem;
  }
}
header img {
  height: 74px;
  width: auto;
  max-width: min(380px, 82vw);
  margin: 0 auto;
  padding: 20px 0 18px;
}

#mw-text ul {
  margin: 0 0 20px 28px;
  padding: 0;
  list-style: none;
  overflow: visible;
}

#mw-text li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 0;
  color: #dfe5ec;
  border-bottom: none;
}

#mw-text li::before {
  content: "";
  position: absolute;
  left: -22px;
  top: 0.78em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(132, 212, 71, 0.14);
}

@media (max-width: 768px) {
  header img {
    height: 56px;
    max-width: min(300px, 84vw);
    padding: 16px 0 14px;
  }
}

@media (max-width: 520px) {
  header img {
    height: 50px;
    max-width: min(280px, 86vw);
  }
}