:root {
    --container: 1100px;
    --gap: 16px;
    --border: #e8e8e8;
    --text: #111;
    --muted: #666;
  }
  
  * { box-sizing: border-box; }
  body {
    margin: 0;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--text);
    background: #fff;
  }
  a { color: inherit; text-decoration: none; }
  a:hover { text-decoration: underline; }
  
  .container {
    width: min(var(--container), calc(100% - 32px));
    margin-inline: auto;
  }
  
  .header-section {
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 10;
  }
  .header-inner {
    display: flex;
    align-items: center;
    gap: var(--gap);
    padding: 14px 0;
  }
  .site-logo img { display: block; height: auto; }
  
  .site-nav { margin-left: auto; }
  .menu {
    display: flex;
    gap: 18px;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .menu li.active a { font-weight: 700; }
  
  .mobile-menu {
    display: none;
    margin-left: auto;
    font-size: 22px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 8px 10px;
  }
  
  /* Main */
  .content-part { padding: 26px 0 50px; }
  h1 { margin: 0 0 14px; font-size: 34px; line-height: 1.15; }
  h2 { margin-top: 28px; }
  
  .author-box {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 12px 0 6px;
  }
  .author-avatar { border-radius: 50%; }
  .author-meta { color: var(--muted); }
  .author-meta .lbl { color: var(--text); font-weight: 600; }
  
  .intro {
    position: relative;
    padding: 14px 14px 10px;
    margin: 14px 0 18px;
  }
  .intro-content[data-collapsed="true"] .more { display: none; }
  .intro-toggle {
    border: 0;
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    padding: 8px 0 0;
    font-weight: 600;
  }
  
  .toplist {
    display: grid;
    gap: 12px;
    margin: 10px 0 18px;
  }
  .offer {
    display: grid;
    grid-template-columns: 150px 1fr 120px 140px;
    align-items: center;
    gap: 14px;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 14px;
  }
  .offer-logo img { max-width: 100%; height: auto; display: block; }
  .brand-name { font-weight: 800; margin-bottom: 4px; }
  .offer-desc { color: var(--muted); }
  
  .offer-rating { text-align: center; }
  .rating-num { font-size: 20px; font-weight: 800; }
  .rating-stars { color: #0a0; letter-spacing: 1px; }
  
  .btn {
    display: inline-block;
    text-align: center;
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid var(--border);
    font-weight: 700;
  }
  .btn:hover { text-decoration: none; }
  
  .table-wrap { overflow-x: auto; }
  table {
    width: 100%;
    border-collapse: collapse;
    margin: 10px 0 0;
  }
  th, td {
    border: 1px solid var(--border);
    padding: 10px;
    text-align: left;
  }
  th { background: #fafafa; }
  
  .footer {
    border-top: 1px solid var(--border);
    padding: 18px 0;
    color: var(--muted);
    text-align: center;
  }
  
  /* Responsive */
  @media (max-width: 900px) {
    .offer { grid-template-columns: 120px 1fr; }
    .offer-rating, .offer-cta { justify-self: start; }
  }
  @media (max-width: 780px) {
    .mobile-menu { display: inline-flex; }
    .site-nav { display: none; width: 100%; }
    .site-nav.open { display: block; }
    .menu { flex-direction: column; padding: 10px 0; }
    .header-inner { flex-wrap: wrap; }
  }
  
  .review-figure {
    margin: 16px 0;
  }
  
  .review-figure img {
    max-width: 100%;
    height: auto;
    display: block;
  }

  /* ✅ ADD these at the BOTTOM of style.css */

/* Make brand images round + consistent */
.offer-logo img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 50%;
  display: block;
  border: 1px solid var(--border);
  background: #fff;
  padding: 6px;
}

/* Red Play Now button with white text */
.btn {
  background: #d60000;
  color: #fff;
  border-color: #d60000;
}

.btn:hover {
  background: #b80000;
  border-color: #b80000;
  text-decoration: none;
}

/* Make offer cards look better on mobile */
@media (max-width: 900px) {
  .offer {
    grid-template-columns: 88px 1fr;
    grid-template-areas:
      "logo info"
      "rating cta";
    align-items: center;
  }

  .offer-logo { grid-area: logo; }
  .offer-info { grid-area: info; }
  .offer-rating { grid-area: rating; text-align: left; }
  .offer-cta { grid-area: cta; }

  .offer-cta .btn {
    width: 100%;
    max-width: 220px;
  }
}

@media (max-width: 480px) {
  .offer {
    grid-template-columns: 1fr;
    grid-template-areas:
      "logo"
      "info"
      "rating"
      "cta";
    text-align: left;
  }

  .offer-logo img {
    margin: 0;
  }

  .offer-cta .btn {
    width: 100%;
    max-width: none;
  }
}

/* Intro toggle label switching */
.intro-toggle .show-less { display: none; }

.intro-toggle[data-expanded="true"] .show-more { display: none; }
.intro-toggle[data-expanded="true"] .show-less { display: inline; }
