/* From: index.html */
:root {
      --bg: #f6f7fb;
      --card: #ffffff;
      --text: #1f2937;
      --muted: #6b7280;
      --border: #e5e7eb;
      --accent: #3b82f6;
      --accent-dark: #2563eb;
      --header: #ffffff;
      --footer: #111827;
      --footer-text: #d1d5db;
      --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
      --games-red: #ef7a7a;
      --farting-black: #333333;
    }

    body.dark-mode {
      --bg: #0f172a;
      --card: #172033;
      --text: #f9fafb;
      --muted: #cbd5e1;
      --border: #263449;
      --accent: #60a5fa;
      --accent-dark: #3b82f6;
      --header: #111827;
      --footer: #020617;
      --footer-text: #cbd5e1;
      --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
      --games-red: #fca5a5;
      --farting-black: #e5e7eb;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      transition: background 0.25s ease, color 0.25s ease;
    }

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

    .site-header {
      background: var(--header);
      border-bottom: 1px solid var(--border);
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
    }

    .header-inner {
      max-width: 1180px;
      margin: 0 auto;
      padding: 14px 20px;
      display: flex;
      align-items: center;
      gap: 22px;
      position: relative;
    }

    .logo {
      font-size: 22px;
      font-weight: 800;
      white-space: nowrap;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .logo-icon {
      font-size: 24px;
      line-height: 1;
    }

    .logo-farting {
      color: var(--farting-black);
    }

    .logo-games {
      color: var(--games-red);
    }

    .logo-dotcom {
      color: var(--accent-dark);
    }

    .mobile-menu-toggle {
      display: none;
      border: 1px solid var(--border);
      background: var(--bg);
      color: var(--text);
      width: 42px;
      height: 42px;
      border-radius: 12px;
      cursor: pointer;
      font-size: 22px;
      line-height: 1;
      margin-left: auto;
    }

    .main-nav {
      display: flex;
      align-items: center;
      gap: 18px;
      margin-left: auto;
    }

    .main-nav a {
      font-size: 15px;
      font-weight: 600;
      color: var(--text);
      opacity: 0.9;
    }

    .main-nav a:hover {
      color: var(--accent-dark);
    }

    .header-search {
      display: flex;
      align-items: center;
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 999px;
      padding: 7px 12px;
      min-width: 210px;
    }

    .header-search input {
      width: 100%;
      border: none;
      outline: none;
      background: transparent;
      color: var(--text);
      font-size: 14px;
    }

    .header-search input::placeholder {
      color: var(--muted);
    }

    .theme-toggle {
      border: 1px solid var(--border);
      background: #ffffff;
      color: #111111;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      cursor: pointer;
      font-size: 18px;
      display: grid;
      place-items: center;
      transition: transform 0.2s ease, background 0.2s ease;
      flex-shrink: 0;
    }

    body.dark-mode .theme-toggle {
      background: #111111;
      color: #ffffff;
      border-color: #ffffff;
    }

    .theme-toggle:hover {
      transform: translateY(-1px);
    }

    .page-wrap {
      max-width: 1180px;
      margin: 0 auto;
      padding: 30px 20px 46px;
    }

    .site-intro {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 22px 24px;
      box-shadow: var(--shadow);
      margin-bottom: 28px;
    }

    .site-intro p {
      color: var(--muted);
      font-size: 15px;
      max-width: 920px;
    }

    .content-section {
      margin-bottom: 34px;
    }

    .section-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      margin-bottom: 14px;
    }

    .section-header h2 {
      font-size: 24px;
      line-height: 1.2;
    }

    .view-more {
      color: var(--accent-dark);
      font-size: 14px;
      font-weight: 700;
      white-space: nowrap;
    }

    .view-more:hover {
      text-decoration: underline;
    }

    .popular-section {
      background:
        radial-gradient(circle at top left, rgba(59, 130, 246, 0.16), transparent 34%),
        radial-gradient(circle at bottom right, rgba(239, 122, 122, 0.18), transparent 34%),
        var(--card);
      border: 1px solid var(--border);
      border-radius: 22px;
      padding: 22px;
      box-shadow: var(--shadow);
      margin-bottom: 34px;
    }

    .popular-section .section-header h2 {
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .popular-section .section-header h2::before {
      content: "★";
      color: #f59e0b;
      font-size: 18px;
    }

    .popular-section .content-card {
      background: rgba(255, 255, 255, 0.72);
      border: 1px solid rgba(59, 130, 246, 0.22);
      box-shadow: 0 10px 26px rgba(59, 130, 246, 0.08);
      position: relative;
      overflow: hidden;
    }

    body.dark-mode .popular-section .content-card {
      background: rgba(23, 32, 51, 0.78);
      border-color: rgba(96, 165, 250, 0.28);
    }

    .popular-section .content-card::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 5px;
      background: linear-gradient(to bottom, #3b82f6, #ef7a7a);
    }

    .popular-section .badge {
      background: rgba(239, 122, 122, 0.14);
      color: #dc2626;
    }

    body.dark-mode .popular-section .badge {
      color: #fca5a5;
    }

    .popular-section .template-image {
      box-shadow: 0 8px 18px rgba(59, 130, 246, 0.18);
    }

    .content-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
    }

    .content-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 18px;
      box-shadow: var(--shadow);
      display: flex;
      gap: 14px;
      align-items: flex-start;
      min-width: 0;
    }

    .template-image {
      width: 62px;
      height: 62px;
      border-radius: 15px;
      display: block;
      flex-shrink: 0;
      overflow: hidden;
      transition: transform 0.2s ease, opacity 0.2s ease;
      background: var(--bg);
    }

    .template-image img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
    }

    .template-image:hover {
      transform: translateY(-2px);
      opacity: 0.9;
    }

    .template-content {
      flex: 1;
      min-width: 0;
    }

    .title-row {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
      margin-bottom: 8px;
    }

    .template-content h3 {
      font-size: 19px;
      line-height: 1.25;
      margin: 0;
    }

    .card-title-link:hover {
      color: var(--accent-dark);
    }

    .badge {
      display: inline-flex;
      align-items: center;
      border-radius: 999px;
      background: rgba(59, 130, 246, 0.12);
      color: var(--accent-dark);
      padding: 4px 8px;
      font-size: 11px;
      font-weight: 700;
      white-space: nowrap;
      transition: background 0.2s ease, transform 0.2s ease;
    }

    .badge:hover {
      background: rgba(59, 130, 246, 0.2);
      transform: translateY(-1px);
    }

    .template-content p {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.5;
    }

    .content-actions {
      display: none;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 14px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 999px;
      padding: 8px 13px;
      font-size: 12px;
      font-weight: 700;
      border: 1px solid var(--border);
      cursor: pointer;
    }

    .btn-primary {
      background: var(--accent);
      color: #ffffff;
      border-color: var(--accent);
    }

    .btn-secondary {
      background: var(--bg);
      color: var(--text);
    }

    .site-footer {
      background: var(--footer);
      color: var(--footer-text);
      padding: 42px 20px 18px;
    }

    .footer-inner {
      max-width: 1180px;
      margin: 0 auto;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1fr 2fr 1.5fr;
      gap: 28px;
      margin-bottom: 28px;
    }

    .footer-box h3 {
      color: #ffffff;
      font-size: 18px;
      margin-bottom: 12px;
      letter-spacing: 0.01em;
      position: relative;
      padding-bottom: 8px;
    }


    .footer-box h3::after {
      content: "";
      display: block;
      width: 42px;
      height: 3px;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--accent), var(--games-red));
      margin-top: 8px;
    }

    .footer-box p {
      font-size: 14px;
      color: var(--footer-text);
    }

    .footer-links {
      list-style: none;
      display: grid;
      gap: 8px;
    }

    .footer-links a {
      color: var(--footer-text);
      font-size: 14px;
    }

    .footer-links a:hover {
      color: #ffffff;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.12);
      padding-top: 16px;
      font-size: 14px;
      text-align: center;
    }

    .footer-bottom a {
      color: var(--footer-text);
      margin: 0 6px;
    }

    .footer-bottom a:hover {
      color: #ffffff;
    }

    @media (max-width: 900px) {
      .header-inner {
        flex-wrap: wrap;
        gap: 12px;
      }

      .mobile-menu-toggle {
        display: grid;
        place-items: center;
      }

      .main-nav {
        display: none;
        order: 3;
        width: 100%;
        margin-left: 0;
        background: var(--card);
        border: 1px solid var(--border);
        border-radius: 16px;
        box-shadow: var(--shadow);
        overflow: hidden;
      }

      .main-nav.is-open {
        display: block;
      }

      .main-nav a {
        display: block;
        padding: 14px 16px;
        border-bottom: 1px solid var(--border);
        font-size: 15px;
      }

      .main-nav a:last-child {
        border-bottom: none;
      }

      .main-nav a:hover {
        background: var(--bg);
      }

      .header-search {
        order: 4;
        width: 100%;
        margin-left: 0;
      }

      .theme-toggle {
        order: 2;
      }

      .content-grid {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 600px) {
      .logo {
        font-size: 20px;
      }

      .site-intro {
        padding: 20px;
      }

      .section-header h2 {
        font-size: 22px;
      }

      .popular-section {
        padding: 16px;
      }

      .content-card {
        padding: 16px;
        gap: 12px;
      }

      .template-image {
        width: 56px;
        height: 56px;
        border-radius: 14px;
      }

      .template-content h3 {
        font-size: 18px;
      }

      .badge {
        font-size: 11px;
        padding: 4px 8px;
      }

      .content-actions {
        flex-direction: column;
      }

      .btn {
        width: 100%;
      }
    }

    @media (max-width: 420px) {
      .page-wrap {
        padding-left: 14px;
        padding-right: 14px;
      }

      .content-card {
        gap: 10px;
        padding: 14px;
      }

      .template-image {
        width: 52px;
        height: 52px;
      }

      .template-content h3 {
        font-size: 17px;
      }

      .title-row {
        gap: 6px;
      }

      .template-content p {
        font-size: 13px;
      }
    }


/* From: articles/farting-games-article-template-full-width-updated.html */
:root {
      --bg: #f6f7fb;
      --card: #ffffff;
      --text: #1f2937;
      --muted: #6b7280;
      --border: #e5e7eb;
      --accent: #3b82f6;
      --accent-dark: #2563eb;
      --header: #ffffff;
      --footer: #111827;
      --footer-text: #d1d5db;
      --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
      --games-red: #ef7a7a;
      --farting-black: #333333;
      --article-highlight: #eff6ff;
    }

    body.dark-mode {
      --bg: #0f172a;
      --card: #172033;
      --text: #f9fafb;
      --muted: #cbd5e1;
      --border: #263449;
      --accent: #60a5fa;
      --accent-dark: #3b82f6;
      --header: #111827;
      --footer: #020617;
      --footer-text: #cbd5e1;
      --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
      --games-red: #fca5a5;
      --farting-black: #e5e7eb;
      --article-highlight: #13213a;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      transition: background 0.25s ease, color 0.25s ease;
    }

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

    .site-header {
      background: var(--header);
      border-bottom: 1px solid var(--border);
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
    }

    .header-inner {
      max-width: 1180px;
      margin: 0 auto;
      padding: 14px 20px;
      display: flex;
      align-items: center;
      gap: 22px;
      position: relative;
    }

    .logo {
      font-size: 22px;
      font-weight: 800;
      white-space: nowrap;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .logo-icon {
      font-size: 24px;
      line-height: 1;
    }

    .logo-farting {
      color: var(--farting-black);
    }

    .logo-games {
      color: var(--games-red);
    }

    .logo-dotcom {
      color: var(--accent-dark);
    }

    .mobile-menu-toggle {
      display: none;
      border: 1px solid var(--border);
      background: var(--bg);
      color: var(--text);
      width: 42px;
      height: 42px;
      border-radius: 12px;
      cursor: pointer;
      font-size: 22px;
      line-height: 1;
      margin-left: auto;
    }

    .main-nav {
      display: flex;
      align-items: center;
      gap: 18px;
      margin-left: auto;
    }

    .main-nav a {
      font-size: 15px;
      font-weight: 600;
      color: var(--text);
      opacity: 0.9;
    }

    .main-nav a:hover {
      color: var(--accent-dark);
    }

    .header-search {
      display: flex;
      align-items: center;
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 999px;
      padding: 7px 12px;
      min-width: 210px;
    }

    .header-search input {
      width: 100%;
      border: none;
      outline: none;
      background: transparent;
      color: var(--text);
      font-size: 14px;
    }

    .header-search input::placeholder {
      color: var(--muted);
    }

    .theme-toggle {
      border: 1px solid var(--border);
      background: #ffffff;
      color: #111111;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      cursor: pointer;
      font-size: 18px;
      display: grid;
      place-items: center;
      transition: transform 0.2s ease, background 0.2s ease;
      flex-shrink: 0;
    }

    body.dark-mode .theme-toggle {
      background: #111111;
      color: #ffffff;
      border-color: #ffffff;
    }

    .theme-toggle:hover {
      transform: translateY(-1px);
    }

    .page-wrap {
      max-width: 1180px;
      margin: 0 auto;
      padding: 30px 20px 46px;
    }


    .article-card {
      width: 100%;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 22px;
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .article-hero {
      padding: 32px 34px 26px;
      background:
        radial-gradient(circle at top left, rgba(59, 130, 246, 0.14), transparent 34%),
        radial-gradient(circle at bottom right, rgba(239, 122, 122, 0.16), transparent 34%),
        var(--card);
      border-bottom: 1px solid var(--border);
    }

    .article-kicker {
      display: inline-flex;
      align-items: center;
      border-radius: 999px;
      background: rgba(59, 130, 246, 0.12);
      color: var(--accent-dark);
      padding: 5px 10px;
      font-size: 12px;
      font-weight: 800;
      margin-bottom: 12px;
    }

    .article-hero h1 {
      font-size: 34px;
      line-height: 1.15;
      margin-bottom: 12px;
      color: var(--text);
    }

    .article-summary {
      color: var(--muted);
      font-size: 16px;
      max-width: 920px;
    }

    .article-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 16px;
      color: var(--muted);
      font-size: 13px;
    }

    .article-meta span {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 999px;
      padding: 5px 10px;
    }

    .article-content {
      padding: 34px;
      max-width: 980px;
      margin: 0 auto;
    }

    .article-content h2 {
      font-size: 25px;
      line-height: 1.25;
      margin: 32px 0 12px;
      color: var(--text);
    }

    .article-content h2:first-child {
      display: none;
    }

    .article-content h3 {
      font-size: 19px;
      line-height: 1.3;
      margin: 24px 0 8px;
      color: var(--text);
    }

    .article-content p {
      color: var(--muted);
      font-size: 16px;
      line-height: 1.75;
      margin-bottom: 16px;
    }

    .article-content ul {
      margin: 12px 0 20px 22px;
      color: var(--muted);
    }

    .article-content li {
      margin-bottom: 7px;
      padding-left: 3px;
    }

    .article-content a {
      color: var(--accent-dark);
      font-weight: 700;
      text-decoration: underline;
      text-decoration-thickness: 1px;
      text-underline-offset: 3px;
    }

    .article-content a:hover {
      color: var(--accent);
    }









    .site-footer {
      background: var(--footer);
      color: var(--footer-text);
      padding: 42px 20px 18px;
    }

    .footer-inner {
      max-width: 1180px;
      margin: 0 auto;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1fr 2fr 1.5fr;
      gap: 28px;
      margin-bottom: 28px;
    }

    .footer-box h3 {
      color: #ffffff;
      font-size: 18px;
      margin-bottom: 12px;
    }

    .footer-box p {
      font-size: 14px;
      color: var(--footer-text);
    }

    .footer-links {
      list-style: none;
      display: grid;
      gap: 8px;
    }

    .footer-links a {
      color: var(--footer-text);
      font-size: 14px;
    }

    .footer-links a:hover {
      color: #ffffff;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.12);
      padding-top: 16px;
      font-size: 14px;
      text-align: center;
    }

    .footer-bottom a {
      color: var(--footer-text);
      margin: 0 6px;
    }

    .footer-bottom a:hover {
      color: #ffffff;
    }

    @media (max-width: 900px) {
      .header-inner {
        flex-wrap: wrap;
        gap: 12px;
      }

      .mobile-menu-toggle {
        display: grid;
        place-items: center;
      }

      .main-nav {
        display: none;
        order: 3;
        width: 100%;
        margin-left: 0;
        background: var(--card);
        border: 1px solid var(--border);
        border-radius: 16px;
        box-shadow: var(--shadow);
        overflow: hidden;
      }

      .main-nav.is-open {
        display: block;
      }

      .main-nav a {
        display: block;
        padding: 14px 16px;
        border-bottom: 1px solid var(--border);
        font-size: 15px;
      }

      .main-nav a:last-child {
        border-bottom: none;
      }

      .main-nav a:hover {
        background: var(--bg);
      }

      .header-search {
        order: 4;
        width: 100%;
        margin-left: 0;
      }

      .theme-toggle {
        order: 2;
      }

.article-sidebar {
        position: static;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 600px) {
      .logo {
        font-size: 20px;
      }

      .article-hero {
        padding: 24px 20px 20px;
      }

      .article-hero h1 {
        font-size: 28px;
      }

      .article-content {
        padding: 24px 20px;
        max-width: 100%;
      }

      .article-content h2 {
        font-size: 22px;
      }

      .article-content h3 {
        font-size: 18px;
      }

      .article-content p {
        font-size: 15px;
      }
    }

    @media (max-width: 420px) {
      .page-wrap {
        padding-left: 14px;
        padding-right: 14px;
      }

      .article-hero h1 {
        font-size: 25px;
      }
    }


/* From: products/fart-bombs-for-pranks-best-fart-bombs-to-buy.html */
:root {
      --bg: #f6f7fb;
      --card: #ffffff;
      --text: #1f2937;
      --muted: #6b7280;
      --border: #e5e7eb;
      --accent: #3b82f6;
      --accent-dark: #2563eb;
      --header: #ffffff;
      --footer: #111827;
      --footer-text: #d1d5db;
      --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
      --games-red: #ef7a7a;
      --farting-black: #333333;
      --article-highlight: #eff6ff;
    }

    body.dark-mode {
      --bg: #0f172a;
      --card: #172033;
      --text: #f9fafb;
      --muted: #cbd5e1;
      --border: #263449;
      --accent: #60a5fa;
      --accent-dark: #3b82f6;
      --header: #111827;
      --footer: #020617;
      --footer-text: #cbd5e1;
      --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
      --games-red: #fca5a5;
      --farting-black: #e5e7eb;
      --article-highlight: #13213a;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      transition: background 0.25s ease, color 0.25s ease;
    }

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

    .site-header {
      background: var(--header);
      border-bottom: 1px solid var(--border);
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
    }

    .header-inner {
      max-width: 1180px;
      margin: 0 auto;
      padding: 14px 20px;
      display: flex;
      align-items: center;
      gap: 22px;
      position: relative;
    }

    .logo {
      font-size: 22px;
      font-weight: 800;
      white-space: nowrap;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .logo-icon {
      font-size: 24px;
      line-height: 1;
    }

    .logo-farting {
      color: var(--farting-black);
    }

    .logo-games {
      color: var(--games-red);
    }

    .logo-dotcom {
      color: var(--accent-dark);
    }

    .mobile-menu-toggle {
      display: none;
      border: 1px solid var(--border);
      background: var(--bg);
      color: var(--text);
      width: 42px;
      height: 42px;
      border-radius: 12px;
      cursor: pointer;
      font-size: 22px;
      line-height: 1;
      margin-left: auto;
    }

    .main-nav {
      display: flex;
      align-items: center;
      gap: 18px;
      margin-left: auto;
    }

    .main-nav a {
      font-size: 15px;
      font-weight: 600;
      color: var(--text);
      opacity: 0.9;
    }

    .main-nav a:hover {
      color: var(--accent-dark);
    }

    .header-search {
      display: flex;
      align-items: center;
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 999px;
      padding: 7px 12px;
      min-width: 210px;
    }

    .header-search input {
      width: 100%;
      border: none;
      outline: none;
      background: transparent;
      color: var(--text);
      font-size: 14px;
    }

    .header-search input::placeholder {
      color: var(--muted);
    }

    .theme-toggle {
      border: 1px solid var(--border);
      background: #ffffff;
      color: #111111;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      cursor: pointer;
      font-size: 18px;
      display: grid;
      place-items: center;
      transition: transform 0.2s ease, background 0.2s ease;
      flex-shrink: 0;
    }

    body.dark-mode .theme-toggle {
      background: #111111;
      color: #ffffff;
      border-color: #ffffff;
    }

    .theme-toggle:hover {
      transform: translateY(-1px);
    }

    .page-wrap {
      max-width: 1180px;
      margin: 0 auto;
      padding: 30px 20px 46px;
    }


    .article-card {
      width: 100%;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 22px;
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .article-hero {
      padding: 32px 34px 26px;
      background:
        radial-gradient(circle at top left, rgba(59, 130, 246, 0.14), transparent 34%),
        radial-gradient(circle at bottom right, rgba(239, 122, 122, 0.16), transparent 34%),
        var(--card);
      border-bottom: 1px solid var(--border);
    }

    .article-kicker {
      display: inline-flex;
      align-items: center;
      border-radius: 999px;
      background: rgba(59, 130, 246, 0.12);
      color: var(--accent-dark);
      padding: 5px 10px;
      font-size: 12px;
      font-weight: 800;
      margin-bottom: 12px;
    }

    .article-hero h1 {
      font-size: 34px;
      line-height: 1.15;
      margin-bottom: 12px;
      color: var(--text);
    }

    .article-summary {
      color: var(--muted);
      font-size: 16px;
      max-width: 920px;
    }

    .article-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 16px;
      color: var(--muted);
      font-size: 13px;
    }

    .article-meta span {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 999px;
      padding: 5px 10px;
    }

    .article-content {
      padding: 34px;
      max-width: 980px;
      margin: 0 auto;
    }

    .article-content h2 {
      font-size: 25px;
      line-height: 1.25;
      margin: 32px 0 12px;
      color: var(--text);
    }

    .article-content h2:first-child {
      display: none;
    }

    .article-content h3 {
      font-size: 19px;
      line-height: 1.3;
      margin: 24px 0 8px;
      color: var(--text);
    }

    .article-content p {
      color: var(--muted);
      font-size: 16px;
      line-height: 1.75;
      margin-bottom: 16px;
    }

    .article-content ul {
      margin: 12px 0 20px 22px;
      color: var(--muted);
    }

    .article-content li {
      margin-bottom: 7px;
      padding-left: 3px;
    }

    .article-content a {
      color: var(--accent-dark);
      font-weight: 700;
      text-decoration: underline;
      text-decoration-thickness: 1px;
      text-underline-offset: 3px;
    }

    .article-content a:hover {
      color: var(--accent);
    }









    .rank-grid {
      display: grid;
      gap: 16px;
      margin: 22px 0 28px;
    }

    .rank-card {
      display: grid;
      grid-template-columns: 56px 1fr;
      gap: 14px;
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 16px;
      box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
    }

    .rank-badge {
      width: 46px;
      height: 46px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, var(--accent), var(--games-red));
      color: #fff;
      font-size: 18px;
      font-weight: 900;
    }

    .rank-body h3 {
      margin: 8px 0 8px;
      font-size: 19px;
      line-height: 1.25;
      color: var(--text);
    }

    .rank-body p {
      margin-bottom: 10px;
      font-size: 15px;
    }

    .rank-body a {
      display: inline-flex;
      margin-top: 4px;
      border-radius: 999px;
      background: rgba(59, 130, 246, 0.12);
      padding: 8px 12px;
      text-decoration: none;
      font-size: 14px;
    }

    .product-tag {
      display: inline-flex;
      border-radius: 999px;
      background: rgba(239, 122, 122, 0.14);
      color: var(--games-red);
      padding: 5px 10px;
      font-size: 12px;
      font-weight: 800;
    }

    body.dark-mode .rank-card {
      background: rgba(255,255,255,0.03);
    }

    @media (max-width: 520px) {
      .rank-card {
        grid-template-columns: 1fr;
      }

      .rank-badge {
        width: 42px;
        height: 42px;
      }
    }


    .site-footer {
      background: var(--footer);
      color: var(--footer-text);
      padding: 42px 20px 18px;
    }

    .footer-inner {
      max-width: 1180px;
      margin: 0 auto;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1fr 2fr 1.5fr;
      gap: 28px;
      margin-bottom: 28px;
    }

    .footer-box h3 {
      color: #ffffff;
      font-size: 18px;
      margin-bottom: 12px;
    }

    .footer-box p {
      font-size: 14px;
      color: var(--footer-text);
    }

    .footer-links {
      list-style: none;
      display: grid;
      gap: 8px;
    }

    .footer-links a {
      color: var(--footer-text);
      font-size: 14px;
    }

    .footer-links a:hover {
      color: #ffffff;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.12);
      padding-top: 16px;
      font-size: 14px;
      text-align: center;
    }

    .footer-bottom a {
      color: var(--footer-text);
      margin: 0 6px;
    }

    .footer-bottom a:hover {
      color: #ffffff;
    }

    @media (max-width: 900px) {
      .header-inner {
        flex-wrap: wrap;
        gap: 12px;
      }

      .mobile-menu-toggle {
        display: grid;
        place-items: center;
      }

      .main-nav {
        display: none;
        order: 3;
        width: 100%;
        margin-left: 0;
        background: var(--card);
        border: 1px solid var(--border);
        border-radius: 16px;
        box-shadow: var(--shadow);
        overflow: hidden;
      }

      .main-nav.is-open {
        display: block;
      }

      .main-nav a {
        display: block;
        padding: 14px 16px;
        border-bottom: 1px solid var(--border);
        font-size: 15px;
      }

      .main-nav a:last-child {
        border-bottom: none;
      }

      .main-nav a:hover {
        background: var(--bg);
      }

      .header-search {
        order: 4;
        width: 100%;
        margin-left: 0;
      }

      .theme-toggle {
        order: 2;
      }

.article-sidebar {
        position: static;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 600px) {
      .logo {
        font-size: 20px;
      }

      .article-hero {
        padding: 24px 20px 20px;
      }

      .article-hero h1 {
        font-size: 28px;
      }

      .article-content {
        padding: 24px 20px;
        max-width: 100%;
      }

      .article-content h2 {
        font-size: 22px;
      }

      .article-content h3 {
        font-size: 18px;
      }

      .article-content p {
        font-size: 15px;
      }
    }

    @media (max-width: 420px) {
      .page-wrap {
        padding-left: 14px;
        padding-right: 14px;
      }

      .article-hero h1 {
        font-size: 25px;
      }
    }


/* From: sounds/download-fart-sounds-for-free-mp3-wav-format-compact-review-style.html */
:root {
      --bg: #f6f7fb;
      --card: #ffffff;
      --text: #1f2937;
      --muted: #6b7280;
      --border: #e5e7eb;
      --accent: #3b82f6;
      --accent-dark: #2563eb;
      --header: #ffffff;
      --footer: #111827;
      --footer-text: #d1d5db;
      --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
      --games-red: #ef7a7a;
      --farting-black: #333333;
      --article-highlight: #eff6ff;
    }

    body.dark-mode {
      --bg: #0f172a;
      --card: #172033;
      --text: #f9fafb;
      --muted: #cbd5e1;
      --border: #263449;
      --accent: #60a5fa;
      --accent-dark: #3b82f6;
      --header: #111827;
      --footer: #020617;
      --footer-text: #cbd5e1;
      --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
      --games-red: #fca5a5;
      --farting-black: #e5e7eb;
      --article-highlight: #13213a;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      transition: background 0.25s ease, color 0.25s ease;
    }

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

    .site-header {
      background: var(--header);
      border-bottom: 1px solid var(--border);
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
    }

    .header-inner {
      max-width: 1180px;
      margin: 0 auto;
      padding: 14px 20px;
      display: flex;
      align-items: center;
      gap: 22px;
      position: relative;
    }

    .logo {
      font-size: 22px;
      font-weight: 800;
      white-space: nowrap;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .logo-icon {
      font-size: 24px;
      line-height: 1;
    }

    .logo-farting {
      color: var(--farting-black);
    }

    .logo-games {
      color: var(--games-red);
    }

    .logo-dotcom {
      color: var(--accent-dark);
    }

    .mobile-menu-toggle {
      display: none;
      border: 1px solid var(--border);
      background: var(--bg);
      color: var(--text);
      width: 42px;
      height: 42px;
      border-radius: 12px;
      cursor: pointer;
      font-size: 22px;
      line-height: 1;
      margin-left: auto;
    }

    .main-nav {
      display: flex;
      align-items: center;
      gap: 18px;
      margin-left: auto;
    }

    .main-nav a {
      font-size: 15px;
      font-weight: 600;
      color: var(--text);
      opacity: 0.9;
    }

    .main-nav a:hover {
      color: var(--accent-dark);
    }

    .header-search {
      display: flex;
      align-items: center;
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 999px;
      padding: 7px 12px;
      min-width: 210px;
    }

    .header-search input {
      width: 100%;
      border: none;
      outline: none;
      background: transparent;
      color: var(--text);
      font-size: 14px;
    }

    .header-search input::placeholder {
      color: var(--muted);
    }

    .theme-toggle {
      border: 1px solid var(--border);
      background: #ffffff;
      color: #111111;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      cursor: pointer;
      font-size: 18px;
      display: grid;
      place-items: center;
      transition: transform 0.2s ease, background 0.2s ease;
      flex-shrink: 0;
    }

    body.dark-mode .theme-toggle {
      background: #111111;
      color: #ffffff;
      border-color: #ffffff;
    }

    .theme-toggle:hover {
      transform: translateY(-1px);
    }

    .page-wrap {
      max-width: 1180px;
      margin: 0 auto;
      padding: 30px 20px 46px;
    }


    .article-card {
      width: 100%;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 22px;
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .article-hero {
      padding: 32px 34px 26px;
      background:
        radial-gradient(circle at top left, rgba(59, 130, 246, 0.14), transparent 34%),
        radial-gradient(circle at bottom right, rgba(239, 122, 122, 0.16), transparent 34%),
        var(--card);
      border-bottom: 1px solid var(--border);
    }

    .article-kicker {
      display: inline-flex;
      align-items: center;
      border-radius: 999px;
      background: rgba(59, 130, 246, 0.12);
      color: var(--accent-dark);
      padding: 5px 10px;
      font-size: 12px;
      font-weight: 800;
      margin-bottom: 12px;
    }

    .article-hero h1 {
      font-size: 34px;
      line-height: 1.15;
      margin-bottom: 12px;
      color: var(--text);
    }

    .article-summary {
      color: var(--muted);
      font-size: 16px;
      max-width: 920px;
    }

    .article-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 16px;
      color: var(--muted);
      font-size: 13px;
    }

    .article-meta span {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 999px;
      padding: 5px 10px;
    }

    .article-content {
      padding: 34px;
      max-width: 980px;
      margin: 0 auto;
    }

    .article-content h2 {
      font-size: 25px;
      line-height: 1.25;
      margin: 32px 0 12px;
      color: var(--text);
    }

    .article-content h2:first-child {
      display: none;
    }

    .article-content h3 {
      font-size: 19px;
      line-height: 1.3;
      margin: 24px 0 8px;
      color: var(--text);
    }

    .article-content p {
      color: var(--muted);
      font-size: 16px;
      line-height: 1.75;
      margin-bottom: 16px;
    }

    .article-content ul {
      margin: 12px 0 20px 22px;
      color: var(--muted);
    }

    .article-content li {
      margin-bottom: 7px;
      padding-left: 3px;
    }

    .article-content a {
      color: var(--accent-dark);
      font-weight: 700;
      text-decoration: underline;
      text-decoration-thickness: 1px;
      text-underline-offset: 3px;
    }

    .article-content a:hover {
      color: var(--accent);
    }









    .video-grid {
      display: grid;
      gap: 18px;
      margin: 22px 0 30px;
    }

    .video-card {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
    }

    .video-frame {
      position: relative;
      width: 100%;
      aspect-ratio: 16 / 9;
      background: #111827;
    }

    .video-frame iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: 0;
      display: block;
    }

    .video-copy {
      padding: 16px;
    }

    .video-copy h3 {
      margin: 0 0 8px;
      font-size: 19px;
      line-height: 1.3;
      color: var(--text);
    }

    .video-copy p {
      margin-bottom: 0;
      font-size: 15px;
    }

    body.dark-mode .video-card {
      background: rgba(255,255,255,0.03);
    }
.site-footer {
      background: var(--footer);
      color: var(--footer-text);
      padding: 42px 20px 18px;
    }

    .footer-inner {
      max-width: 1180px;
      margin: 0 auto;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1fr 2fr 1.5fr;
      gap: 28px;
      margin-bottom: 28px;
    }

    .footer-box h3 {
      color: #ffffff;
      font-size: 18px;
      margin-bottom: 12px;
    }

    .footer-box p {
      font-size: 14px;
      color: var(--footer-text);
    }

    .footer-links {
      list-style: none;
      display: grid;
      gap: 8px;
    }

    .footer-links a {
      color: var(--footer-text);
      font-size: 14px;
    }

    .footer-links a:hover {
      color: #ffffff;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.12);
      padding-top: 16px;
      font-size: 14px;
      text-align: center;
    }

    .footer-bottom a {
      color: var(--footer-text);
      margin: 0 6px;
    }

    .footer-bottom a:hover {
      color: #ffffff;
    }

    @media (max-width: 900px) {
      .header-inner {
        flex-wrap: wrap;
        gap: 12px;
      }

      .mobile-menu-toggle {
        display: grid;
        place-items: center;
      }

      .main-nav {
        display: none;
        order: 3;
        width: 100%;
        margin-left: 0;
        background: var(--card);
        border: 1px solid var(--border);
        border-radius: 16px;
        box-shadow: var(--shadow);
        overflow: hidden;
      }

      .main-nav.is-open {
        display: block;
      }

      .main-nav a {
        display: block;
        padding: 14px 16px;
        border-bottom: 1px solid var(--border);
        font-size: 15px;
      }

      .main-nav a:last-child {
        border-bottom: none;
      }

      .main-nav a:hover {
        background: var(--bg);
      }

      .header-search {
        order: 4;
        width: 100%;
        margin-left: 0;
      }

      .theme-toggle {
        order: 2;
      }

.article-sidebar {
        position: static;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 600px) {
      .logo {
        font-size: 20px;
      }

      .article-hero {
        padding: 24px 20px 20px;
      }

      .article-hero h1 {
        font-size: 28px;
      }

      .article-content {
        padding: 24px 20px;
        max-width: 100%;
      }

      .article-content h2 {
        font-size: 22px;
      }

      .article-content h3 {
        font-size: 18px;
      }

      .article-content p {
        font-size: 15px;
      }
    }

    @media (max-width: 420px) {
      .page-wrap {
        padding-left: 14px;
        padding-right: 14px;
      }

      .article-hero h1 {
        font-size: 25px;
      }
    }


    .rank-grid {
      display: grid;
      gap: 16px;
      margin: 22px 0 28px;
    }

    .rank-card {
      display: grid;
      grid-template-columns: 56px 1fr;
      gap: 14px;
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 16px;
      box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
    }

    .rank-badge {
      width: 46px;
      height: 46px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, var(--accent), var(--games-red));
      color: #fff;
      font-size: 18px;
      font-weight: 900;
    }

    .rank-body h3 {
      margin: 8px 0 8px;
      font-size: 19px;
      line-height: 1.25;
      color: var(--text);
    }

    .rank-body p {
      margin-bottom: 10px;
      font-size: 15px;
      line-height: 1.65;
      color: var(--muted);
    }

    .rank-body a,
    .rank-body .rank-cta {
      display: inline-flex;
      margin-top: 4px;
      border-radius: 999px;
      background: rgba(59, 130, 246, 0.12);
      color: var(--accent-dark);
      padding: 8px 12px;
      text-decoration: none;
      font-size: 14px;
      font-weight: 800;
      text-underline-offset: 0;
    }

    .rank-body a:hover,
    .rank-body .rank-cta:hover {
      background: rgba(59, 130, 246, 0.20);
      color: var(--accent-dark);
      text-decoration: none;
    }

    .product-tag {
      display: inline-flex;
      border-radius: 999px;
      background: rgba(239, 122, 122, 0.14);
      color: var(--games-red);
      padding: 5px 10px;
      font-size: 12px;
      font-weight: 800;
      line-height: 1;
    }

    body.dark-mode .rank-card {
      background: rgba(255,255,255,0.03);
    }

    @media (max-width: 520px) {
      .rank-card {
        grid-template-columns: 1fr;
      }

      .rank-badge {
        width: 42px;
        height: 42px;
      }
    }


/* From: fart-apps.html */
:root {
      --bg: #f6f7fb;
      --card: #ffffff;
      --text: #1f2937;
      --muted: #6b7280;
      --border: #e5e7eb;
      --accent: #3b82f6;
      --accent-dark: #2563eb;
      --header: #ffffff;
      --footer: #111827;
      --footer-text: #d1d5db;
      --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
      --games-red: #ef7a7a;
      --farting-black: #333333;
      --article-highlight: #eff6ff;
    }

    body.dark-mode {
      --bg: #0f172a;
      --card: #172033;
      --text: #f9fafb;
      --muted: #cbd5e1;
      --border: #263449;
      --accent: #60a5fa;
      --accent-dark: #3b82f6;
      --header: #111827;
      --footer: #020617;
      --footer-text: #cbd5e1;
      --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
      --games-red: #fca5a5;
      --farting-black: #e5e7eb;
      --article-highlight: #13213a;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      transition: background 0.25s ease, color 0.25s ease;
    }

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

    .site-header {
      background: var(--header);
      border-bottom: 1px solid var(--border);
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
    }

    .header-inner {
      max-width: 1180px;
      margin: 0 auto;
      padding: 14px 20px;
      display: flex;
      align-items: center;
      gap: 22px;
      position: relative;
    }

    .logo {
      font-size: 22px;
      font-weight: 800;
      white-space: nowrap;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .logo-icon {
      font-size: 24px;
      line-height: 1;
    }

    .logo-farting {
      color: var(--farting-black);
    }

    .logo-games {
      color: var(--games-red);
    }

    .logo-dotcom {
      color: var(--accent-dark);
    }

    .mobile-menu-toggle {
      display: none;
      border: 1px solid var(--border);
      background: var(--bg);
      color: var(--text);
      width: 42px;
      height: 42px;
      border-radius: 12px;
      cursor: pointer;
      font-size: 22px;
      line-height: 1;
      margin-left: auto;
    }

    .main-nav {
      display: flex;
      align-items: center;
      gap: 18px;
      margin-left: auto;
    }

    .main-nav a {
      font-size: 15px;
      font-weight: 600;
      color: var(--text);
      opacity: 0.9;
    }

    .main-nav a:hover {
      color: var(--accent-dark);
    }

    .header-search {
      display: flex;
      align-items: center;
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 999px;
      padding: 7px 12px;
      min-width: 210px;
    }

    .header-search input {
      width: 100%;
      border: none;
      outline: none;
      background: transparent;
      color: var(--text);
      font-size: 14px;
    }

    .header-search input::placeholder {
      color: var(--muted);
    }

    .theme-toggle {
      border: 1px solid var(--border);
      background: #ffffff;
      color: #111111;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      cursor: pointer;
      font-size: 18px;
      display: grid;
      place-items: center;
      transition: transform 0.2s ease, background 0.2s ease;
      flex-shrink: 0;
    }

    body.dark-mode .theme-toggle {
      background: #111111;
      color: #ffffff;
      border-color: #ffffff;
    }

    .theme-toggle:hover {
      transform: translateY(-1px);
    }

    .page-wrap {
      max-width: 1180px;
      margin: 0 auto;
      padding: 30px 20px 46px;
    }

    .article-card {
      width: 100%;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 22px;
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .article-hero {
      padding: 32px 34px 26px;
      background:
        radial-gradient(circle at top left, rgba(59, 130, 246, 0.14), transparent 34%),
        radial-gradient(circle at bottom right, rgba(239, 122, 122, 0.16), transparent 34%),
        var(--card);
      border-bottom: 1px solid var(--border);
    }

    .article-kicker {
      display: inline-flex;
      align-items: center;
      border-radius: 999px;
      background: rgba(59, 130, 246, 0.12);
      color: var(--accent-dark);
      padding: 5px 10px;
      font-size: 12px;
      font-weight: 800;
      margin-bottom: 12px;
    }

    .article-hero h1 {
      font-size: 34px;
      line-height: 1.15;
      margin-bottom: 12px;
      color: var(--text);
    }

    .article-summary {
      color: var(--muted);
      font-size: 16px;
      max-width: 920px;
    }

    .article-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 16px;
      color: var(--muted);
      font-size: 13px;
    }

    .article-meta span {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 999px;
      padding: 5px 10px;
    }

    .article-content {
      padding: 34px;
      max-width: 1180px;
      margin: 0 auto;
    }

    .fwb-tools-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 34px;
      margin: 0;
    }

    .fwb-tool-card {
      position: relative;
      display: block;
      text-decoration: none;
      background: #f7f7f8;
      border: 1px solid #dddde3;
      border-radius: 28px;
      box-shadow: 0 10px 28px rgba(20, 20, 43, 0.08);
      padding: 22px;
      transition: transform 0.18s ease, box-shadow 0.18s ease;
      overflow: hidden;
    }

    body.dark-mode .fwb-tool-card {
      background: #172033;
      border-color: #263449;
      box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
    }

    .fwb-tool-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 34px rgba(20, 20, 43, 0.11);
    }

    .fwb-tool-card.no-link:hover {
      transform: none;
    }

    .fwb-tool-topbar {
      display: block;
      height: 7px;
      width: calc(100% - 4px);
      margin: 0 auto 18px auto;
      border-radius: 999px;
    }

    .fwb-tool-card.blue .fwb-tool-topbar { background: #2176ff; }
    .fwb-tool-card.orange .fwb-tool-topbar { background: #f59e0b; }
    .fwb-tool-card.green .fwb-tool-topbar { background: #18c37e; }
    .fwb-tool-card.purple .fwb-tool-topbar { background: #7c3aed; }

    .fwb-tool-inner {
      display: grid;
      grid-template-columns: 96px 1fr 84px;
      gap: 18px;
      align-items: start;
    }

    .fwb-tool-icon-wrap {
      width: 88px;
      height: 88px;
      border-radius: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 2px solid;
      font-size: 38px;
      line-height: 1;
    }

    .fwb-tool-card.blue .fwb-tool-icon-wrap {
      background: rgba(33, 118, 255, 0.08);
      border-color: rgba(33, 118, 255, 0.12);
      color: #2176ff;
    }

    .fwb-tool-card.orange .fwb-tool-icon-wrap {
      background: rgba(245, 158, 11, 0.10);
      border-color: rgba(245, 158, 11, 0.18);
      color: #b96c00;
    }

    .fwb-tool-card.green .fwb-tool-icon-wrap {
      background: rgba(24, 195, 126, 0.10);
      border-color: rgba(24, 195, 126, 0.18);
      color: #129b64;
    }

    .fwb-tool-card.purple .fwb-tool-icon-wrap {
      background: rgba(124, 58, 237, 0.10);
      border-color: rgba(124, 58, 237, 0.18);
      color: #7c3aed;
    }

    .fwb-tool-content h3 {
      margin: 0 0 8px 0;
      font-size: 27px;
      line-height: 1.08;
      font-weight: 800;
      letter-spacing: -0.03em;
      color: #0e0f18;
    }

    body.dark-mode .fwb-tool-content h3 {
      color: #f9fafb;
    }

    .fwb-tool-content p {
      margin: 0;
      font-size: 23px;
      line-height: 1.55;
      color: #6a7082;
    }

    body.dark-mode .fwb-tool-content p {
      color: #cbd5e1;
    }

    .fwb-tool-content p a {
      color: #3d465c;
      font-weight: 600;
      text-decoration: underline;
    }

    body.dark-mode .fwb-tool-content p a {
      color: #cbd5e1;
    }

    .fwb-tool-arrow {
      width: 74px;
      height: 74px;
      border-radius: 22px;
      border: 2px solid #dddddf;
      color: #2d2d2f;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 54px;
      line-height: 1;
      align-self: center;
      justify-self: end;
      background: rgba(255,255,255,0.45);
    }

    body.dark-mode .fwb-tool-arrow {
      border-color: #334155;
      color: #f9fafb;
      background: rgba(255,255,255,0.06);
    }

    .fwb-tool-arrow.static {
      pointer-events: none;
    }

    .site-footer {
      background: var(--footer);
      color: var(--footer-text);
      padding: 42px 20px 18px;
    }

    .footer-inner {
      max-width: 1180px;
      margin: 0 auto;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1fr 2fr 1.5fr;
      gap: 28px;
      margin-bottom: 28px;
    }

    .footer-box h3 {
      color: #ffffff;
      font-size: 18px;
      margin-bottom: 12px;
    }

    .footer-box p {
      font-size: 14px;
      color: var(--footer-text);
    }

    .footer-links {
      list-style: none;
      display: grid;
      gap: 8px;
    }

    .footer-links a {
      color: var(--footer-text);
      font-size: 14px;
    }

    .footer-links a:hover {
      color: #ffffff;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.12);
      padding-top: 16px;
      font-size: 14px;
      text-align: center;
    }

    .footer-bottom a {
      color: var(--footer-text);
      margin: 0 6px;
    }

    .footer-bottom a:hover {
      color: #ffffff;
    }

    @media (max-width: 1200px) {
      .fwb-tool-content h3 {
        font-size: 23px;
      }

      .fwb-tool-content p {
        font-size: 19px;
      }
    }

    @media (max-width: 900px) {
      .header-inner {
        flex-wrap: wrap;
        gap: 12px;
      }

      .mobile-menu-toggle {
        display: grid;
        place-items: center;
      }

      .main-nav {
        display: none;
        order: 3;
        width: 100%;
        margin-left: 0;
        background: var(--card);
        border: 1px solid var(--border);
        border-radius: 16px;
        box-shadow: var(--shadow);
        overflow: hidden;
      }

      .main-nav.is-open {
        display: block;
      }

      .main-nav a {
        display: block;
        padding: 14px 16px;
        border-bottom: 1px solid var(--border);
        font-size: 15px;
      }

      .main-nav a:last-child {
        border-bottom: none;
      }

      .main-nav a:hover {
        background: var(--bg);
      }

      .header-search {
        order: 4;
        width: 100%;
        margin-left: 0;
      }

      .theme-toggle {
        order: 2;
      }

      .fwb-tools-grid {
        grid-template-columns: 1fr;
        gap: 22px;
      }

      .fwb-tool-inner {
        grid-template-columns: 82px 1fr 66px;
        gap: 16px;
      }

      .fwb-tool-icon-wrap {
        width: 76px;
        height: 76px;
        border-radius: 22px;
        font-size: 30px;
      }

      .fwb-tool-arrow {
        width: 58px;
        height: 58px;
        border-radius: 18px;
        font-size: 42px;
      }

      .fwb-tool-content h3 {
        font-size: 22px;
      }

      .fwb-tool-content p {
        font-size: 18px;
        line-height: 1.5;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 640px) {
      .fwb-tool-card {
        padding: 18px;
        border-radius: 22px;
      }

      .fwb-tool-topbar {
        margin-bottom: 16px;
      }

      .fwb-tool-inner {
        grid-template-columns: 70px 1fr 52px;
        gap: 14px;
      }

      .fwb-tool-icon-wrap {
        width: 64px;
        height: 64px;
        border-radius: 18px;
        font-size: 24px;
      }

      .fwb-tool-arrow {
        width: 48px;
        height: 48px;
        border-radius: 16px;
        font-size: 34px;
      }

      .fwb-tool-content h3 {
        font-size: 18px;
      }

      .fwb-tool-content p {
        font-size: 15px;
      }

      .article-hero {
        padding: 24px 20px 20px;
      }

      .article-hero h1 {
        font-size: 28px;
      }

      .article-content {
        padding: 24px 20px;
        max-width: 100%;
      }
    }

    @media (max-width: 420px) {
      .page-wrap {
        padding-left: 14px;
        padding-right: 14px;
      }

      .article-hero h1 {
        font-size: 25px;
      }
    }


/* From: sounds/Funny Animals Farting.html */
:root {
      --bg: #f6f7fb;
      --card: #ffffff;
      --text: #1f2937;
      --muted: #6b7280;
      --border: #e5e7eb;
      --accent: #3b82f6;
      --accent-dark: #2563eb;
      --header: #ffffff;
      --footer: #111827;
      --footer-text: #d1d5db;
      --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
      --games-red: #ef7a7a;
      --farting-black: #333333;
      --article-highlight: #eff6ff;
    }

    body.dark-mode {
      --bg: #0f172a;
      --card: #172033;
      --text: #f9fafb;
      --muted: #cbd5e1;
      --border: #263449;
      --accent: #60a5fa;
      --accent-dark: #3b82f6;
      --header: #111827;
      --footer: #020617;
      --footer-text: #cbd5e1;
      --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
      --games-red: #fca5a5;
      --farting-black: #e5e7eb;
      --article-highlight: #13213a;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      transition: background 0.25s ease, color 0.25s ease;
    }

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

    .site-header {
      background: var(--header);
      border-bottom: 1px solid var(--border);
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
    }

    .header-inner {
      max-width: 1180px;
      margin: 0 auto;
      padding: 14px 20px;
      display: flex;
      align-items: center;
      gap: 22px;
      position: relative;
    }

    .logo {
      font-size: 22px;
      font-weight: 800;
      white-space: nowrap;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .logo-icon {
      font-size: 24px;
      line-height: 1;
    }

    .logo-farting {
      color: var(--farting-black);
    }

    .logo-games {
      color: var(--games-red);
    }

    .logo-dotcom {
      color: var(--accent-dark);
    }

    .mobile-menu-toggle {
      display: none;
      border: 1px solid var(--border);
      background: var(--bg);
      color: var(--text);
      width: 42px;
      height: 42px;
      border-radius: 12px;
      cursor: pointer;
      font-size: 22px;
      line-height: 1;
      margin-left: auto;
    }

    .main-nav {
      display: flex;
      align-items: center;
      gap: 18px;
      margin-left: auto;
    }

    .main-nav a {
      font-size: 15px;
      font-weight: 600;
      color: var(--text);
      opacity: 0.9;
    }

    .main-nav a:hover {
      color: var(--accent-dark);
    }

    .header-search {
      display: flex;
      align-items: center;
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 999px;
      padding: 7px 12px;
      min-width: 210px;
    }

    .header-search input {
      width: 100%;
      border: none;
      outline: none;
      background: transparent;
      color: var(--text);
      font-size: 14px;
    }

    .header-search input::placeholder {
      color: var(--muted);
    }

    .theme-toggle {
      border: 1px solid var(--border);
      background: #ffffff;
      color: #111111;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      cursor: pointer;
      font-size: 18px;
      display: grid;
      place-items: center;
      transition: transform 0.2s ease, background 0.2s ease;
      flex-shrink: 0;
    }

    body.dark-mode .theme-toggle {
      background: #111111;
      color: #ffffff;
      border-color: #ffffff;
    }

    .theme-toggle:hover {
      transform: translateY(-1px);
    }

    .page-wrap {
      max-width: 1180px;
      margin: 0 auto;
      padding: 30px 20px 46px;
    }


    .article-card {
      width: 100%;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 22px;
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .article-hero {
      padding: 32px 34px 26px;
      background:
        radial-gradient(circle at top left, rgba(59, 130, 246, 0.14), transparent 34%),
        radial-gradient(circle at bottom right, rgba(239, 122, 122, 0.16), transparent 34%),
        var(--card);
      border-bottom: 1px solid var(--border);
    }

    .article-kicker {
      display: inline-flex;
      align-items: center;
      border-radius: 999px;
      background: rgba(59, 130, 246, 0.12);
      color: var(--accent-dark);
      padding: 5px 10px;
      font-size: 12px;
      font-weight: 800;
      margin-bottom: 12px;
    }

    .article-hero h1 {
      font-size: 34px;
      line-height: 1.15;
      margin-bottom: 12px;
      color: var(--text);
    }

    .article-summary {
      color: var(--muted);
      font-size: 16px;
      max-width: 920px;
    }

    .article-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 16px;
      color: var(--muted);
      font-size: 13px;
    }

    .article-meta span {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 999px;
      padding: 5px 10px;
    }

    .article-content {
      padding: 34px;
      max-width: 980px;
      margin: 0 auto;
    }

    .article-content h2 {
      font-size: 25px;
      line-height: 1.25;
      margin: 32px 0 12px;
      color: var(--text);
    }

    .article-content h2:first-child {
      display: none;
    }

    .article-content h3 {
      font-size: 19px;
      line-height: 1.3;
      margin: 24px 0 8px;
      color: var(--text);
    }

    .article-content p {
      color: var(--muted);
      font-size: 16px;
      line-height: 1.75;
      margin-bottom: 16px;
    }

    .article-content ul {
      margin: 12px 0 20px 22px;
      color: var(--muted);
    }

    .article-content li {
      margin-bottom: 7px;
      padding-left: 3px;
    }

    .article-content a {
      color: var(--accent-dark);
      font-weight: 700;
      text-decoration: underline;
      text-decoration-thickness: 1px;
      text-underline-offset: 3px;
    }

    .article-content a:hover {
      color: var(--accent);
    }









    .video-grid {
      display: grid;
      gap: 18px;
      margin: 22px 0 30px;
    }

    .video-card {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
    }

    .video-frame {
      position: relative;
      width: 100%;
      aspect-ratio: 16 / 9;
      background: #111827;
    }

    .video-frame iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: 0;
      display: block;
    }

    .video-copy {
      padding: 16px;
    }

    .video-copy h3 {
      margin: 0 0 8px;
      font-size: 19px;
      line-height: 1.3;
      color: var(--text);
    }

    .video-copy p {
      margin-bottom: 0;
      font-size: 15px;
    }

    body.dark-mode .video-card {
      background: rgba(255,255,255,0.03);
    }
.site-footer {
      background: var(--footer);
      color: var(--footer-text);
      padding: 42px 20px 18px;
    }

    .footer-inner {
      max-width: 1180px;
      margin: 0 auto;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1fr 2fr 1.5fr;
      gap: 28px;
      margin-bottom: 28px;
    }

    .footer-box h3 {
      color: #ffffff;
      font-size: 18px;
      margin-bottom: 12px;
    }

    .footer-box p {
      font-size: 14px;
      color: var(--footer-text);
    }

    .footer-links {
      list-style: none;
      display: grid;
      gap: 8px;
    }

    .footer-links a {
      color: var(--footer-text);
      font-size: 14px;
    }

    .footer-links a:hover {
      color: #ffffff;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.12);
      padding-top: 16px;
      font-size: 14px;
      text-align: center;
    }

    .footer-bottom a {
      color: var(--footer-text);
      margin: 0 6px;
    }

    .footer-bottom a:hover {
      color: #ffffff;
    }

    @media (max-width: 900px) {
      .header-inner {
        flex-wrap: wrap;
        gap: 12px;
      }

      .mobile-menu-toggle {
        display: grid;
        place-items: center;
      }

      .main-nav {
        display: none;
        order: 3;
        width: 100%;
        margin-left: 0;
        background: var(--card);
        border: 1px solid var(--border);
        border-radius: 16px;
        box-shadow: var(--shadow);
        overflow: hidden;
      }

      .main-nav.is-open {
        display: block;
      }

      .main-nav a {
        display: block;
        padding: 14px 16px;
        border-bottom: 1px solid var(--border);
        font-size: 15px;
      }

      .main-nav a:last-child {
        border-bottom: none;
      }

      .main-nav a:hover {
        background: var(--bg);
      }

      .header-search {
        order: 4;
        width: 100%;
        margin-left: 0;
      }

      .theme-toggle {
        order: 2;
      }

.article-sidebar {
        position: static;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 600px) {
      .logo {
        font-size: 20px;
      }

      .article-hero {
        padding: 24px 20px 20px;
      }

      .article-hero h1 {
        font-size: 28px;
      }

      .article-content {
        padding: 24px 20px;
        max-width: 100%;
      }

      .article-content h2 {
        font-size: 22px;
      }

      .article-content h3 {
        font-size: 18px;
      }

      .article-content p {
        font-size: 15px;
      }
    }

    @media (max-width: 420px) {
      .page-wrap {
        padding-left: 14px;
        padding-right: 14px;
      }

      .article-hero h1 {
        font-size: 25px;
      }
    }


/* From: games/swf-template.html */
:root {
      --bg: #f6f7fb;
      --card: #ffffff;
      --text: #1f2937;
      --muted: #6b7280;
      --border: #e5e7eb;
      --accent: #3b82f6;
      --accent-dark: #2563eb;
      --header: #ffffff;
      --footer: #111827;
      --footer-text: #d1d5db;
      --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
      --games-red: #ef7a7a;
      --farting-black: #333333;
      --article-highlight: #eff6ff;
    }

    body.dark-mode {
      --bg: #0f172a;
      --card: #172033;
      --text: #f9fafb;
      --muted: #cbd5e1;
      --border: #263449;
      --accent: #60a5fa;
      --accent-dark: #3b82f6;
      --header: #111827;
      --footer: #020617;
      --footer-text: #cbd5e1;
      --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
      --games-red: #fca5a5;
      --farting-black: #e5e7eb;
      --article-highlight: #13213a;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      transition: background 0.25s ease, color 0.25s ease;
    }

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

    .site-header {
      background: var(--header);
      border-bottom: 1px solid var(--border);
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
    }

    .header-inner {
      max-width: 1180px;
      margin: 0 auto;
      padding: 14px 20px;
      display: flex;
      align-items: center;
      gap: 22px;
      position: relative;
    }

    .logo {
      font-size: 22px;
      font-weight: 800;
      white-space: nowrap;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .logo-icon {
      font-size: 24px;
      line-height: 1;
    }

    .logo-farting {
      color: var(--farting-black);
    }

    .logo-games {
      color: var(--games-red);
    }

    .logo-dotcom {
      color: var(--accent-dark);
    }

    .mobile-menu-toggle {
      display: none;
      border: 1px solid var(--border);
      background: var(--bg);
      color: var(--text);
      width: 42px;
      height: 42px;
      border-radius: 12px;
      cursor: pointer;
      font-size: 22px;
      line-height: 1;
      margin-left: auto;
    }

    .main-nav {
      display: flex;
      align-items: center;
      gap: 18px;
      margin-left: auto;
    }

    .main-nav a {
      font-size: 15px;
      font-weight: 600;
      color: var(--text);
      opacity: 0.9;
    }

    .main-nav a:hover {
      color: var(--accent-dark);
    }

    .header-search {
      display: flex;
      align-items: center;
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 999px;
      padding: 7px 12px;
      min-width: 210px;
    }

    .header-search input {
      width: 100%;
      border: none;
      outline: none;
      background: transparent;
      color: var(--text);
      font-size: 14px;
    }

    .header-search input::placeholder {
      color: var(--muted);
    }

    .theme-toggle {
      border: 1px solid var(--border);
      background: #ffffff;
      color: #111111;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      cursor: pointer;
      font-size: 18px;
      display: grid;
      place-items: center;
      transition: transform 0.2s ease, background 0.2s ease;
      flex-shrink: 0;
    }

    body.dark-mode .theme-toggle {
      background: #111111;
      color: #ffffff;
      border-color: #ffffff;
    }

    .theme-toggle:hover {
      transform: translateY(-1px);
    }

    .page-wrap {
      max-width: 1180px;
      margin: 0 auto;
      padding: 30px 20px 46px;
    }


    .article-card {
      width: 100%;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 22px;
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .article-hero {
      padding: 32px 34px 26px;
      background:
        radial-gradient(circle at top left, rgba(59, 130, 246, 0.14), transparent 34%),
        radial-gradient(circle at bottom right, rgba(239, 122, 122, 0.16), transparent 34%),
        var(--card);
      border-bottom: 1px solid var(--border);
    }

    .article-kicker {
      display: inline-flex;
      align-items: center;
      border-radius: 999px;
      background: rgba(59, 130, 246, 0.12);
      color: var(--accent-dark);
      padding: 5px 10px;
      font-size: 12px;
      font-weight: 800;
      margin-bottom: 12px;
    }

    .article-hero h1 {
      font-size: 34px;
      line-height: 1.15;
      margin-bottom: 12px;
      color: var(--text);
    }

    .article-summary {
      color: var(--muted);
      font-size: 16px;
      max-width: 920px;
    }

    .article-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 16px;
      color: var(--muted);
      font-size: 13px;
    }

    .article-meta span {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 999px;
      padding: 5px 10px;
    }

    .article-content {
      padding: 34px;
      max-width: 980px;
      margin: 0 auto;
    }

    .article-content h2 {
      font-size: 25px;
      line-height: 1.25;
      margin: 32px 0 12px;
      color: var(--text);
    }

    .article-content h2:first-child {
      display: none;
    }

    .article-content h3 {
      font-size: 19px;
      line-height: 1.3;
      margin: 24px 0 8px;
      color: var(--text);
    }

    .article-content p {
      color: var(--muted);
      font-size: 16px;
      line-height: 1.75;
      margin-bottom: 16px;
    }

    .article-content ul {
      margin: 12px 0 20px 22px;
      color: var(--muted);
    }

    .article-content li {
      margin-bottom: 7px;
      padding-left: 3px;
    }

    .article-content a {
      color: var(--accent-dark);
      font-weight: 700;
      text-decoration: underline;
      text-decoration-thickness: 1px;
      text-underline-offset: 3px;
    }

    .article-content a:hover {
      color: var(--accent);
    }









    .rank-grid {
      display: grid;
      gap: 16px;
      margin: 22px 0 28px;
    }

    .rank-card {
      display: grid;
      grid-template-columns: 56px 1fr;
      gap: 14px;
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 16px;
      box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
    }

    .rank-badge {
      width: 46px;
      height: 46px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, var(--accent), var(--games-red));
      color: #fff;
      font-size: 18px;
      font-weight: 900;
    }

    .rank-body h3 {
      margin: 8px 0 8px;
      font-size: 19px;
      line-height: 1.25;
      color: var(--text);
    }

    .rank-body p {
      margin-bottom: 10px;
      font-size: 15px;
    }

    .rank-body a {
      display: inline-flex;
      margin-top: 4px;
      border-radius: 999px;
      background: rgba(59, 130, 246, 0.12);
      padding: 8px 12px;
      text-decoration: none;
      font-size: 14px;
    }

    .product-tag {
      display: inline-flex;
      border-radius: 999px;
      background: rgba(239, 122, 122, 0.14);
      color: var(--games-red);
      padding: 5px 10px;
      font-size: 12px;
      font-weight: 800;
    }

    body.dark-mode .rank-card {
      background: rgba(255,255,255,0.03);
    }

    @media (max-width: 520px) {
      .rank-card {
        grid-template-columns: 1fr;
      }

      .rank-badge {
        width: 42px;
        height: 42px;
      }
    }


    .swf-game-card {
      width: 100%;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 22px;
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .swf-game-hero {
      padding: 28px 30px 22px;
      background:
        radial-gradient(circle at top left, rgba(59, 130, 246, 0.14), transparent 34%),
        radial-gradient(circle at bottom right, rgba(239, 122, 122, 0.16), transparent 34%),
        var(--card);
      border-bottom: 1px solid var(--border);
    }

    .swf-game-hero h1 {
      font-size: 30px;
      line-height: 1.15;
      margin-bottom: 10px;
      color: var(--text);
    }

    .swf-game-hero p {
      color: var(--muted);
      font-size: 15px;
      max-width: 900px;
      line-height: 1.65;
    }

    .swf-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 12px;
    }

    .swf-tag {
      display: inline-flex;
      align-items: center;
      border-radius: 999px;
      background: rgba(59, 130, 246, 0.12);
      color: var(--accent-dark);
      padding: 5px 10px;
      font-size: 12px;
      font-weight: 800;
    }

    .swf-player-wrap {
      padding: 26px;
    }

    .swf-player-box {
      width: 100%;
      max-width: var(--game-width, 900px);
      margin: 0 auto;
      background: #111827;
      border-radius: 18px;
      border: 1px solid var(--border);
      box-shadow: 0 16px 38px rgba(15, 23, 42, 0.20);
      overflow: hidden;
    }

    .swf-ratio {
      position: relative;
      width: 100%;
      aspect-ratio: var(--game-aspect, 4 / 3);
      min-height: 260px;
      background:
        radial-gradient(circle at center, rgba(59, 130, 246, 0.20), transparent 40%),
        #111827;
    }

    .swf-ratio object,
    .swf-ratio embed {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      display: block;
      border: 0;
    }

    .swf-fallback {
      position: absolute;
      inset: 0;
      display: grid;
      place-items: center;
      text-align: center;
      padding: 22px;
      color: #ffffff;
      background: linear-gradient(135deg, #111827, #1f2937);
    }

    .swf-fallback-inner {
      max-width: 520px;
    }

    .swf-fallback-inner h2 {
      font-size: 24px;
      line-height: 1.2;
      margin-bottom: 10px;
    }

    .swf-fallback-inner p {
      color: rgba(255,255,255,0.78);
      font-size: 15px;
      line-height: 1.6;
      margin-bottom: 12px;
    }

    .swf-download-link {
      display: inline-flex;
      border-radius: 999px;
      background: var(--accent);
      color: #ffffff;
      padding: 10px 14px;
      font-weight: 800;
      font-size: 14px;
      text-decoration: none;
    }

    .swf-settings-note {
      margin: 18px auto 0;
      max-width: var(--game-width, 900px);
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 16px;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.65;
    }

    .swf-settings-note code {
      background: rgba(59, 130, 246, 0.10);
      color: var(--accent-dark);
      padding: 2px 5px;
      border-radius: 6px;
      font-size: 13px;
    }

    @media (max-width: 600px) {
      .swf-game-hero {
        padding: 24px 20px 20px;
      }

      .swf-game-hero h1 {
        font-size: 25px;
      }

      .swf-player-wrap {
        padding: 18px;
      }

      .swf-ratio {
        min-height: 220px;
      }
    }


    .site-footer {
      background: var(--footer);
      color: var(--footer-text);
      padding: 42px 20px 18px;
    }

    .footer-inner {
      max-width: 1180px;
      margin: 0 auto;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1fr 2fr 1.5fr;
      gap: 28px;
      margin-bottom: 28px;
    }

    .footer-box h3 {
      color: #ffffff;
      font-size: 18px;
      margin-bottom: 12px;
    }

    .footer-box p {
      font-size: 14px;
      color: var(--footer-text);
    }

    .footer-links {
      list-style: none;
      display: grid;
      gap: 8px;
    }

    .footer-links a {
      color: var(--footer-text);
      font-size: 14px;
    }

    .footer-links a:hover {
      color: #ffffff;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.12);
      padding-top: 16px;
      font-size: 14px;
      text-align: center;
    }

    .footer-bottom a {
      color: var(--footer-text);
      margin: 0 6px;
    }

    .footer-bottom a:hover {
      color: #ffffff;
    }

    @media (max-width: 900px) {
      .header-inner {
        flex-wrap: wrap;
        gap: 12px;
      }

      .mobile-menu-toggle {
        display: grid;
        place-items: center;
      }

      .main-nav {
        display: none;
        order: 3;
        width: 100%;
        margin-left: 0;
        background: var(--card);
        border: 1px solid var(--border);
        border-radius: 16px;
        box-shadow: var(--shadow);
        overflow: hidden;
      }

      .main-nav.is-open {
        display: block;
      }

      .main-nav a {
        display: block;
        padding: 14px 16px;
        border-bottom: 1px solid var(--border);
        font-size: 15px;
      }

      .main-nav a:last-child {
        border-bottom: none;
      }

      .main-nav a:hover {
        background: var(--bg);
      }

      .header-search {
        order: 4;
        width: 100%;
        margin-left: 0;
      }

      .theme-toggle {
        order: 2;
      }

.article-sidebar {
        position: static;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 600px) {
      .logo {
        font-size: 20px;
      }

      .article-hero {
        padding: 24px 20px 20px;
      }

      .article-hero h1 {
        font-size: 28px;
      }

      .article-content {
        padding: 24px 20px;
        max-width: 100%;
      }

      .article-content h2 {
        font-size: 22px;
      }

      .article-content h3 {
        font-size: 18px;
      }

      .article-content p {
        font-size: 15px;
      }
    }

    @media (max-width: 420px) {
      .page-wrap {
        padding-left: 14px;
        padding-right: 14px;
      }

      .article-hero h1 {
        font-size: 25px;
      }
    }


/* From: games/fart-sfx-mixer-integrated-template.html */
:root {
      --bg: #f6f7fb;
      --card: #ffffff;
      --text: #1f2937;
      --muted: #6b7280;
      --border: #e5e7eb;
      --accent: #3b82f6;
      --accent-dark: #2563eb;
      --header: #ffffff;
      --footer: #111827;
      --footer-text: #d1d5db;
      --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
      --games-red: #ef7a7a;
      --farting-black: #333333;
      --article-highlight: #eff6ff;
    }

    body.dark-mode {
      --bg: #0f172a;
      --card: #172033;
      --text: #f9fafb;
      --muted: #cbd5e1;
      --border: #263449;
      --accent: #60a5fa;
      --accent-dark: #3b82f6;
      --header: #111827;
      --footer: #020617;
      --footer-text: #cbd5e1;
      --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
      --games-red: #fca5a5;
      --farting-black: #e5e7eb;
      --article-highlight: #13213a;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      transition: background 0.25s ease, color 0.25s ease;
    }

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

    .site-header {
      background: var(--header);
      border-bottom: 1px solid var(--border);
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
    }

    .header-inner {
      max-width: 1180px;
      margin: 0 auto;
      padding: 14px 20px;
      display: flex;
      align-items: center;
      gap: 22px;
      position: relative;
    }

    .logo {
      font-size: 22px;
      font-weight: 800;
      white-space: nowrap;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .logo-icon {
      font-size: 24px;
      line-height: 1;
    }

    .logo-farting {
      color: var(--farting-black);
    }

    .logo-games {
      color: var(--games-red);
    }

    .logo-dotcom {
      color: var(--accent-dark);
    }

    .mobile-menu-toggle {
      display: none;
      border: 1px solid var(--border);
      background: var(--bg);
      color: var(--text);
      width: 42px;
      height: 42px;
      border-radius: 12px;
      cursor: pointer;
      font-size: 22px;
      line-height: 1;
      margin-left: auto;
    }

    .main-nav {
      display: flex;
      align-items: center;
      gap: 18px;
      margin-left: auto;
    }

    .main-nav a {
      font-size: 15px;
      font-weight: 600;
      color: var(--text);
      opacity: 0.9;
    }

    .main-nav a:hover {
      color: var(--accent-dark);
    }

    .header-search {
      display: flex;
      align-items: center;
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 999px;
      padding: 7px 12px;
      min-width: 210px;
    }

    .header-search input {
      width: 100%;
      border: none;
      outline: none;
      background: transparent;
      color: var(--text);
      font-size: 14px;
    }

    .header-search input::placeholder {
      color: var(--muted);
    }

    .theme-toggle {
      border: 1px solid var(--border);
      background: #ffffff;
      color: #111111;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      cursor: pointer;
      font-size: 18px;
      display: grid;
      place-items: center;
      transition: transform 0.2s ease, background 0.2s ease;
      flex-shrink: 0;
    }

    body.dark-mode .theme-toggle {
      background: #111111;
      color: #ffffff;
      border-color: #ffffff;
    }

    .theme-toggle:hover {
      transform: translateY(-1px);
    }

    .page-wrap {
      max-width: 1180px;
      margin: 0 auto;
      padding: 30px 20px 46px;
    }


    .article-card {
      width: 100%;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 22px;
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .article-hero {
      padding: 32px 34px 26px;
      background:
        radial-gradient(circle at top left, rgba(59, 130, 246, 0.14), transparent 34%),
        radial-gradient(circle at bottom right, rgba(239, 122, 122, 0.16), transparent 34%),
        var(--card);
      border-bottom: 1px solid var(--border);
    }

    .article-kicker {
      display: inline-flex;
      align-items: center;
      border-radius: 999px;
      background: rgba(59, 130, 246, 0.12);
      color: var(--accent-dark);
      padding: 5px 10px;
      font-size: 12px;
      font-weight: 800;
      margin-bottom: 12px;
    }

    .article-hero h1 {
      font-size: 34px;
      line-height: 1.15;
      margin-bottom: 12px;
      color: var(--text);
    }

    .article-summary {
      color: var(--muted);
      font-size: 16px;
      max-width: 920px;
    }

    .article-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 16px;
      color: var(--muted);
      font-size: 13px;
    }

    .article-meta span {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 999px;
      padding: 5px 10px;
    }

    .article-content {
      padding: 34px;
      max-width: 980px;
      margin: 0 auto;
    }

    .article-content h2 {
      font-size: 25px;
      line-height: 1.25;
      margin: 32px 0 12px;
      color: var(--text);
    }

    .article-content h2:first-child {
      display: none;
    }

    .article-content h3 {
      font-size: 19px;
      line-height: 1.3;
      margin: 24px 0 8px;
      color: var(--text);
    }

    .article-content p {
      color: var(--muted);
      font-size: 16px;
      line-height: 1.75;
      margin-bottom: 16px;
    }

    .article-content ul {
      margin: 12px 0 20px 22px;
      color: var(--muted);
    }

    .article-content li {
      margin-bottom: 7px;
      padding-left: 3px;
    }

    .article-content a {
      color: var(--accent-dark);
      font-weight: 700;
      text-decoration: underline;
      text-decoration-thickness: 1px;
      text-underline-offset: 3px;
    }

    .article-content a:hover {
      color: var(--accent);
    }









    .site-footer {
      background: var(--footer);
      color: var(--footer-text);
      padding: 42px 20px 18px;
    }

    .footer-inner {
      max-width: 1180px;
      margin: 0 auto;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1fr 2fr 1.5fr;
      gap: 28px;
      margin-bottom: 28px;
    }

    .footer-box h3 {
      color: #ffffff;
      font-size: 18px;
      margin-bottom: 12px;
    }

    .footer-box p {
      font-size: 14px;
      color: var(--footer-text);
    }

    .footer-links {
      list-style: none;
      display: grid;
      gap: 8px;
    }

    .footer-links a {
      color: var(--footer-text);
      font-size: 14px;
    }

    .footer-links a:hover {
      color: #ffffff;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.12);
      padding-top: 16px;
      font-size: 14px;
      text-align: center;
    }

    .footer-bottom a {
      color: var(--footer-text);
      margin: 0 6px;
    }

    .footer-bottom a:hover {
      color: #ffffff;
    }

    @media (max-width: 900px) {
      .header-inner {
        flex-wrap: wrap;
        gap: 12px;
      }

      .mobile-menu-toggle {
        display: grid;
        place-items: center;
      }

      .main-nav {
        display: none;
        order: 3;
        width: 100%;
        margin-left: 0;
        background: var(--card);
        border: 1px solid var(--border);
        border-radius: 16px;
        box-shadow: var(--shadow);
        overflow: hidden;
      }

      .main-nav.is-open {
        display: block;
      }

      .main-nav a {
        display: block;
        padding: 14px 16px;
        border-bottom: 1px solid var(--border);
        font-size: 15px;
      }

      .main-nav a:last-child {
        border-bottom: none;
      }

      .main-nav a:hover {
        background: var(--bg);
      }

      .header-search {
        order: 4;
        width: 100%;
        margin-left: 0;
      }

      .theme-toggle {
        order: 2;
      }

.article-sidebar {
        position: static;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 600px) {
      .logo {
        font-size: 20px;
      }

      .article-hero {
        padding: 24px 20px 20px;
      }

      .article-hero h1 {
        font-size: 28px;
      }

      .article-content {
        padding: 24px 20px;
        max-width: 100%;
      }

      .article-content h2 {
        font-size: 22px;
      }

      .article-content h3 {
        font-size: 18px;
      }

      .article-content p {
        font-size: 15px;
      }
    }

    @media (max-width: 420px) {
      .page-wrap {
        padding-left: 14px;
        padding-right: 14px;
      }

      .article-hero h1 {
        font-size: 25px;
      }
    }
    .tool-top-title {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      margin-bottom: 16px;
    }

    .tool-top-title h1 {
      font-size: 24px;
      line-height: 1.2;
      margin: 0;
    }

    .tool-tags {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      flex-wrap: wrap;
    }

    .tool-tag {
      display: inline-flex;
      align-items: center;
      border-radius: 999px;
      background: rgba(59, 130, 246, 0.12);
      color: var(--accent-dark);
      padding: 4px 9px;
      font-size: 12px;
      font-weight: 800;
      white-space: nowrap;
    }

    @media (max-width: 600px) {
      .tool-top-title h1 {
        font-size: 21px;
      }

      .tool-tag {
        font-size: 11px;
        padding: 4px 8px;
      }
    }

    .tool-page-intro {
      background:
        radial-gradient(circle at top left, rgba(59, 130, 246, 0.14), transparent 34%),
        radial-gradient(circle at bottom right, rgba(239, 122, 122, 0.16), transparent 34%),
        var(--card);
      border: 1px solid var(--border);
      border-radius: 22px;
      box-shadow: var(--shadow);
      padding: 24px;
      margin-bottom: 22px;
    }

    .tool-page-intro h1 {
      font-size: 30px;
      line-height: 1.2;
      margin-bottom: 8px;
    }

    .tool-page-intro p {
      color: var(--muted);
      font-size: 15px;
      max-width: 880px;
    }

    .tool-frame-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 22px;
      box-shadow: var(--shadow);
      overflow: hidden;
      padding: 0;
      margin-bottom: 28px;
    }

    .tool-frame {
      width: 100%;
      height: 760px;
      display: block;
      border: 0;
      background: var(--bg);
    }

    @media (max-width: 700px) {
      .tool-page-intro {
        padding: 20px;
      }

      .tool-page-intro h1 {
        font-size: 25px;
      }

      .tool-frame {
        height: 700px;
      }
    }


/* From: games/fart-sounds.html */
:root {
      --bg: #f6f7fb;
      --card: #ffffff;
      --text: #1f2937;
      --muted: #6b7280;
      --border: #e5e7eb;
      --accent: #3b82f6;
      --accent-dark: #2563eb;
      --header: #ffffff;
      --footer: #111827;
      --footer-text: #d1d5db;
      --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
      --games-red: #ef7a7a;
      --farting-black: #333333;
      --article-highlight: #eff6ff;
    }

    body.dark-mode {
      --bg: #0f172a;
      --card: #172033;
      --text: #f9fafb;
      --muted: #cbd5e1;
      --border: #263449;
      --accent: #60a5fa;
      --accent-dark: #3b82f6;
      --header: #111827;
      --footer: #020617;
      --footer-text: #cbd5e1;
      --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
      --games-red: #fca5a5;
      --farting-black: #e5e7eb;
      --article-highlight: #13213a;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      transition: background 0.25s ease, color 0.25s ease;
    }

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

    .site-header {
      background: var(--header);
      border-bottom: 1px solid var(--border);
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
    }

    .header-inner {
      max-width: 1180px;
      margin: 0 auto;
      padding: 14px 20px;
      display: flex;
      align-items: center;
      gap: 22px;
      position: relative;
    }

    .logo {
      font-size: 22px;
      font-weight: 800;
      white-space: nowrap;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .logo-icon {
      font-size: 24px;
      line-height: 1;
    }

    .logo-farting {
      color: var(--farting-black);
    }

    .logo-games {
      color: var(--games-red);
    }

    .logo-dotcom {
      color: var(--accent-dark);
    }

    .mobile-menu-toggle {
      display: none;
      border: 1px solid var(--border);
      background: var(--bg);
      color: var(--text);
      width: 42px;
      height: 42px;
      border-radius: 12px;
      cursor: pointer;
      font-size: 22px;
      line-height: 1;
      margin-left: auto;
    }

    .main-nav {
      display: flex;
      align-items: center;
      gap: 18px;
      margin-left: auto;
    }

    .main-nav a {
      font-size: 15px;
      font-weight: 600;
      color: var(--text);
      opacity: 0.9;
    }

    .main-nav a:hover {
      color: var(--accent-dark);
    }

    .header-search {
      display: flex;
      align-items: center;
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 999px;
      padding: 7px 12px;
      min-width: 210px;
    }

    .header-search input {
      width: 100%;
      border: none;
      outline: none;
      background: transparent;
      color: var(--text);
      font-size: 14px;
    }

    .header-search input::placeholder {
      color: var(--muted);
    }

    .theme-toggle {
      border: 1px solid var(--border);
      background: #ffffff;
      color: #111111;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      cursor: pointer;
      font-size: 18px;
      display: grid;
      place-items: center;
      transition: transform 0.2s ease, background 0.2s ease;
      flex-shrink: 0;
    }

    body.dark-mode .theme-toggle {
      background: #111111;
      color: #ffffff;
      border-color: #ffffff;
    }

    .theme-toggle:hover {
      transform: translateY(-1px);
    }

    .page-wrap {
      max-width: 1180px;
      margin: 0 auto;
      padding: 30px 20px 46px;
    }


    .article-card {
      width: 100%;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 22px;
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .article-hero {
      padding: 32px 34px 26px;
      background:
        radial-gradient(circle at top left, rgba(59, 130, 246, 0.14), transparent 34%),
        radial-gradient(circle at bottom right, rgba(239, 122, 122, 0.16), transparent 34%),
        var(--card);
      border-bottom: 1px solid var(--border);
    }

    .article-kicker {
      display: inline-flex;
      align-items: center;
      border-radius: 999px;
      background: rgba(59, 130, 246, 0.12);
      color: var(--accent-dark);
      padding: 5px 10px;
      font-size: 12px;
      font-weight: 800;
      margin-bottom: 12px;
    }

    .article-hero h1 {
      font-size: 34px;
      line-height: 1.15;
      margin-bottom: 12px;
      color: var(--text);
    }

    .article-summary {
      color: var(--muted);
      font-size: 16px;
      max-width: 920px;
    }

    .article-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 16px;
      color: var(--muted);
      font-size: 13px;
    }

    .article-meta span {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 999px;
      padding: 5px 10px;
    }

    .article-content {
      padding: 34px;
      max-width: 980px;
      margin: 0 auto;
    }

    .article-content h2 {
      font-size: 25px;
      line-height: 1.25;
      margin: 32px 0 12px;
      color: var(--text);
    }

    .article-content h2:first-child {
      display: none;
    }

    .article-content h3 {
      font-size: 19px;
      line-height: 1.3;
      margin: 24px 0 8px;
      color: var(--text);
    }

    .article-content p {
      color: var(--muted);
      font-size: 16px;
      line-height: 1.75;
      margin-bottom: 16px;
    }

    .article-content ul {
      margin: 12px 0 20px 22px;
      color: var(--muted);
    }

    .article-content li {
      margin-bottom: 7px;
      padding-left: 3px;
    }

    .article-content a {
      color: var(--accent-dark);
      font-weight: 700;
      text-decoration: underline;
      text-decoration-thickness: 1px;
      text-underline-offset: 3px;
    }

    .article-content a:hover {
      color: var(--accent);
    }









    .site-footer {
      background: var(--footer);
      color: var(--footer-text);
      padding: 42px 20px 18px;
    }

    .footer-inner {
      max-width: 1180px;
      margin: 0 auto;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1fr 2fr 1.5fr;
      gap: 28px;
      margin-bottom: 28px;
    }

    .footer-box h3 {
      color: #ffffff;
      font-size: 18px;
      margin-bottom: 12px;
    }

    .footer-box p {
      font-size: 14px;
      color: var(--footer-text);
    }

    .footer-links {
      list-style: none;
      display: grid;
      gap: 8px;
    }

    .footer-links a {
      color: var(--footer-text);
      font-size: 14px;
    }

    .footer-links a:hover {
      color: #ffffff;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.12);
      padding-top: 16px;
      font-size: 14px;
      text-align: center;
    }

    .footer-bottom a {
      color: var(--footer-text);
      margin: 0 6px;
    }

    .footer-bottom a:hover {
      color: #ffffff;
    }

    @media (max-width: 900px) {
      .header-inner {
        flex-wrap: wrap;
        gap: 12px;
      }

      .mobile-menu-toggle {
        display: grid;
        place-items: center;
      }

      .main-nav {
        display: none;
        order: 3;
        width: 100%;
        margin-left: 0;
        background: var(--card);
        border: 1px solid var(--border);
        border-radius: 16px;
        box-shadow: var(--shadow);
        overflow: hidden;
      }

      .main-nav.is-open {
        display: block;
      }

      .main-nav a {
        display: block;
        padding: 14px 16px;
        border-bottom: 1px solid var(--border);
        font-size: 15px;
      }

      .main-nav a:last-child {
        border-bottom: none;
      }

      .main-nav a:hover {
        background: var(--bg);
      }

      .header-search {
        order: 4;
        width: 100%;
        margin-left: 0;
      }

      .theme-toggle {
        order: 2;
      }

.article-sidebar {
        position: static;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 600px) {
      .logo {
        font-size: 20px;
      }

      .article-hero {
        padding: 24px 20px 20px;
      }

      .article-hero h1 {
        font-size: 28px;
      }

      .article-content {
        padding: 24px 20px;
        max-width: 100%;
      }

      .article-content h2 {
        font-size: 22px;
      }

      .article-content h3 {
        font-size: 18px;
      }

      .article-content p {
        font-size: 15px;
      }
    }

    @media (max-width: 420px) {
      .page-wrap {
        padding-left: 14px;
        padding-right: 14px;
      }

      .article-hero h1 {
        font-size: 25px;
      }
    }
    .tool-top-title {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      margin-bottom: 16px;
    }

    .tool-top-title h1 {
      font-size: 24px;
      line-height: 1.2;
      margin: 0;
    }

    .tool-tags {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      flex-wrap: wrap;
    }

    .tool-tag {
      display: inline-flex;
      align-items: center;
      border-radius: 999px;
      background: rgba(59, 130, 246, 0.12);
      color: var(--accent-dark);
      padding: 4px 9px;
      font-size: 12px;
      font-weight: 800;
      white-space: nowrap;
    }

    @media (max-width: 600px) {
      .tool-top-title h1 {
        font-size: 21px;
      }

      .tool-tag {
        font-size: 11px;
        padding: 4px 8px;
      }
    }

    .tool-page-intro {
      background:
        radial-gradient(circle at top left, rgba(59, 130, 246, 0.14), transparent 34%),
        radial-gradient(circle at bottom right, rgba(239, 122, 122, 0.16), transparent 34%),
        var(--card);
      border: 1px solid var(--border);
      border-radius: 22px;
      box-shadow: var(--shadow);
      padding: 24px;
      margin-bottom: 22px;
    }

    .tool-page-intro h1 {
      font-size: 30px;
      line-height: 1.2;
      margin-bottom: 8px;
    }

    .tool-page-intro p {
      color: var(--muted);
      font-size: 15px;
      max-width: 880px;
    }

    .tool-frame-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 22px;
      box-shadow: var(--shadow);
      overflow: hidden;
      padding: 0;
      margin-bottom: 28px;
    }

    .tool-frame {
      width: 100%;
      height: 760px;
      display: block;
      border: 0;
      background: var(--bg);
    }

    @media (max-width: 700px) {
      .tool-page-intro {
        padding: 20px;
      }

      .tool-page-intro h1 {
        font-size: 25px;
      }

      .tool-frame {
        height: 720px;
      }
    }


/* From: games/whoopie-cushion-integrated-template.html */
:root {
      --bg: #f6f7fb;
      --card: #ffffff;
      --text: #1f2937;
      --muted: #6b7280;
      --border: #e5e7eb;
      --accent: #3b82f6;
      --accent-dark: #2563eb;
      --header: #ffffff;
      --footer: #111827;
      --footer-text: #d1d5db;
      --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
      --games-red: #ef7a7a;
      --farting-black: #333333;
      --article-highlight: #eff6ff;
    }

    body.dark-mode {
      --bg: #0f172a;
      --card: #172033;
      --text: #f9fafb;
      --muted: #cbd5e1;
      --border: #263449;
      --accent: #60a5fa;
      --accent-dark: #3b82f6;
      --header: #111827;
      --footer: #020617;
      --footer-text: #cbd5e1;
      --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
      --games-red: #fca5a5;
      --farting-black: #e5e7eb;
      --article-highlight: #13213a;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      transition: background 0.25s ease, color 0.25s ease;
    }

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

    .site-header {
      background: var(--header);
      border-bottom: 1px solid var(--border);
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
    }

    .header-inner {
      max-width: 1180px;
      margin: 0 auto;
      padding: 14px 20px;
      display: flex;
      align-items: center;
      gap: 22px;
      position: relative;
    }

    .logo {
      font-size: 22px;
      font-weight: 800;
      white-space: nowrap;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .logo-icon {
      font-size: 24px;
      line-height: 1;
    }

    .logo-farting {
      color: var(--farting-black);
    }

    .logo-games {
      color: var(--games-red);
    }

    .logo-dotcom {
      color: var(--accent-dark);
    }

    .mobile-menu-toggle {
      display: none;
      border: 1px solid var(--border);
      background: var(--bg);
      color: var(--text);
      width: 42px;
      height: 42px;
      border-radius: 12px;
      cursor: pointer;
      font-size: 22px;
      line-height: 1;
      margin-left: auto;
    }

    .main-nav {
      display: flex;
      align-items: center;
      gap: 18px;
      margin-left: auto;
    }

    .main-nav a {
      font-size: 15px;
      font-weight: 600;
      color: var(--text);
      opacity: 0.9;
    }

    .main-nav a:hover {
      color: var(--accent-dark);
    }

    .header-search {
      display: flex;
      align-items: center;
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 999px;
      padding: 7px 12px;
      min-width: 210px;
    }

    .header-search input {
      width: 100%;
      border: none;
      outline: none;
      background: transparent;
      color: var(--text);
      font-size: 14px;
    }

    .header-search input::placeholder {
      color: var(--muted);
    }

    .theme-toggle {
      border: 1px solid var(--border);
      background: #ffffff;
      color: #111111;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      cursor: pointer;
      font-size: 18px;
      display: grid;
      place-items: center;
      transition: transform 0.2s ease, background 0.2s ease;
      flex-shrink: 0;
    }

    body.dark-mode .theme-toggle {
      background: #111111;
      color: #ffffff;
      border-color: #ffffff;
    }

    .theme-toggle:hover {
      transform: translateY(-1px);
    }

    .page-wrap {
      max-width: 1180px;
      margin: 0 auto;
      padding: 30px 20px 46px;
    }


    .article-card {
      width: 100%;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 22px;
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .article-hero {
      padding: 32px 34px 26px;
      background:
        radial-gradient(circle at top left, rgba(59, 130, 246, 0.14), transparent 34%),
        radial-gradient(circle at bottom right, rgba(239, 122, 122, 0.16), transparent 34%),
        var(--card);
      border-bottom: 1px solid var(--border);
    }

    .article-kicker {
      display: inline-flex;
      align-items: center;
      border-radius: 999px;
      background: rgba(59, 130, 246, 0.12);
      color: var(--accent-dark);
      padding: 5px 10px;
      font-size: 12px;
      font-weight: 800;
      margin-bottom: 12px;
    }

    .article-hero h1 {
      font-size: 34px;
      line-height: 1.15;
      margin-bottom: 12px;
      color: var(--text);
    }

    .article-summary {
      color: var(--muted);
      font-size: 16px;
      max-width: 920px;
    }

    .article-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 16px;
      color: var(--muted);
      font-size: 13px;
    }

    .article-meta span {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 999px;
      padding: 5px 10px;
    }

    .article-content {
      padding: 34px;
      max-width: 980px;
      margin: 0 auto;
    }

    .article-content h2 {
      font-size: 25px;
      line-height: 1.25;
      margin: 32px 0 12px;
      color: var(--text);
    }

    .article-content h2:first-child {
      display: none;
    }

    .article-content h3 {
      font-size: 19px;
      line-height: 1.3;
      margin: 24px 0 8px;
      color: var(--text);
    }

    .article-content p {
      color: var(--muted);
      font-size: 16px;
      line-height: 1.75;
      margin-bottom: 16px;
    }

    .article-content ul {
      margin: 12px 0 20px 22px;
      color: var(--muted);
    }

    .article-content li {
      margin-bottom: 7px;
      padding-left: 3px;
    }

    .article-content a {
      color: var(--accent-dark);
      font-weight: 700;
      text-decoration: underline;
      text-decoration-thickness: 1px;
      text-underline-offset: 3px;
    }

    .article-content a:hover {
      color: var(--accent);
    }









    .site-footer {
      background: var(--footer);
      color: var(--footer-text);
      padding: 42px 20px 18px;
    }

    .footer-inner {
      max-width: 1180px;
      margin: 0 auto;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1fr 2fr 1.5fr;
      gap: 28px;
      margin-bottom: 28px;
    }

    .footer-box h3 {
      color: #ffffff;
      font-size: 18px;
      margin-bottom: 12px;
    }

    .footer-box p {
      font-size: 14px;
      color: var(--footer-text);
    }

    .footer-links {
      list-style: none;
      display: grid;
      gap: 8px;
    }

    .footer-links a {
      color: var(--footer-text);
      font-size: 14px;
    }

    .footer-links a:hover {
      color: #ffffff;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.12);
      padding-top: 16px;
      font-size: 14px;
      text-align: center;
    }

    .footer-bottom a {
      color: var(--footer-text);
      margin: 0 6px;
    }

    .footer-bottom a:hover {
      color: #ffffff;
    }

    @media (max-width: 900px) {
      .header-inner {
        flex-wrap: wrap;
        gap: 12px;
      }

      .mobile-menu-toggle {
        display: grid;
        place-items: center;
      }

      .main-nav {
        display: none;
        order: 3;
        width: 100%;
        margin-left: 0;
        background: var(--card);
        border: 1px solid var(--border);
        border-radius: 16px;
        box-shadow: var(--shadow);
        overflow: hidden;
      }

      .main-nav.is-open {
        display: block;
      }

      .main-nav a {
        display: block;
        padding: 14px 16px;
        border-bottom: 1px solid var(--border);
        font-size: 15px;
      }

      .main-nav a:last-child {
        border-bottom: none;
      }

      .main-nav a:hover {
        background: var(--bg);
      }

      .header-search {
        order: 4;
        width: 100%;
        margin-left: 0;
      }

      .theme-toggle {
        order: 2;
      }

.article-sidebar {
        position: static;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 600px) {
      .logo {
        font-size: 20px;
      }

      .article-hero {
        padding: 24px 20px 20px;
      }

      .article-hero h1 {
        font-size: 28px;
      }

      .article-content {
        padding: 24px 20px;
        max-width: 100%;
      }

      .article-content h2 {
        font-size: 22px;
      }

      .article-content h3 {
        font-size: 18px;
      }

      .article-content p {
        font-size: 15px;
      }
    }

    @media (max-width: 420px) {
      .page-wrap {
        padding-left: 14px;
        padding-right: 14px;
      }

      .article-hero h1 {
        font-size: 25px;
      }
    }
    .tool-top-title {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      margin-bottom: 16px;
    }

    .tool-top-title h1 {
      font-size: 24px;
      line-height: 1.2;
      margin: 0;
    }

    .tool-tags {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      flex-wrap: wrap;
    }

    .tool-tag {
      display: inline-flex;
      align-items: center;
      border-radius: 999px;
      background: rgba(59, 130, 246, 0.12);
      color: var(--accent-dark);
      padding: 4px 9px;
      font-size: 12px;
      font-weight: 800;
      white-space: nowrap;
    }

    @media (max-width: 600px) {
      .tool-top-title h1 {
        font-size: 21px;
      }

      .tool-tag {
        font-size: 11px;
        padding: 4px 8px;
      }
    }

    .tool-page-intro {
      background:
        radial-gradient(circle at top left, rgba(59, 130, 246, 0.14), transparent 34%),
        radial-gradient(circle at bottom right, rgba(239, 122, 122, 0.16), transparent 34%),
        var(--card);
      border: 1px solid var(--border);
      border-radius: 22px;
      box-shadow: var(--shadow);
      padding: 24px;
      margin-bottom: 22px;
    }

    .tool-page-intro h1 {
      font-size: 30px;
      line-height: 1.2;
      margin-bottom: 8px;
    }

    .tool-page-intro p {
      color: var(--muted);
      font-size: 15px;
      max-width: 880px;
    }

    .tool-frame-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 22px;
      box-shadow: var(--shadow);
      overflow: hidden;
      padding: 0;
      margin-bottom: 28px;
    }

    .tool-frame {
      width: 100%;
      height: 820px;
      display: block;
      border: 0;
      background: var(--bg);
    }

    @media (max-width: 700px) {
      .tool-page-intro {
        padding: 20px;
      }

      .tool-page-intro h1 {
        font-size: 25px;
      }

      .tool-frame {
        height: 760px;
      }
    }



/* Shared compact review/ranking card style */
.rank-grid {
  display: grid;
  gap: 16px;
  margin: 22px 0 28px;
}

.rank-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}

.rank-badge {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--games-red));
  color: #fff;
  font-size: 18px;
  font-weight: 900;
}

.rank-body h3 {
  margin: 8px 0 8px;
  font-size: 19px;
  line-height: 1.25;
  color: var(--text);
}

.rank-body p {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
}

.rank-body a,
.rank-body .rank-cta {
  display: inline-flex;
  margin-top: 4px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.12);
  color: var(--accent-dark);
  padding: 8px 12px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
}

.rank-body a:hover,
.rank-body .rank-cta:hover {
  background: rgba(59, 130, 246, 0.20);
  color: var(--accent-dark);
  text-decoration: none;
}

.product-tag {
  display: inline-flex;
  border-radius: 999px;
  background: rgba(239, 122, 122, 0.14);
  color: var(--games-red);
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

body.dark-mode .rank-card {
  background: rgba(255,255,255,0.03);
}

@media (max-width: 520px) {
  .rank-card {
    grid-template-columns: 1fr;
  }

  .rank-badge {
    width: 42px;
    height: 42px;
  }
}

/* Generic listing/category cards */
.category-hero {
  margin-bottom: 22px;
}

.category-hero h1 {
  font-size: 34px;
  line-height: 1.15;
  margin-bottom: 10px;
}

.category-hero p {
  color: var(--muted);
  max-width: 820px;
}

.listing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.listing-card {
  display: block;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}

.listing-card:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.listing-card .badge {
  display: inline-flex;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.12);
  color: var(--accent-dark);
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 10px;
}

.listing-card h2 {
  font-size: 20px;
  line-height: 1.25;
  margin-bottom: 8px;
}

.listing-card p {
  color: var(--muted);
  font-size: 15px;
}

@media (max-width: 720px) {
  .listing-grid {
    grid-template-columns: 1fr;
  }
}






/* Homepage updated sections */
.home-intro {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 22px 24px;
  margin-bottom: 24px;
}

.home-intro p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  margin: 0;
}

.homepage-section {
  margin: 0 0 30px;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 14px;
}

.section-heading h2 {
  font-size: 24px;
  line-height: 1.2;
  color: var(--text);
}

.section-heading a {
  color: var(--accent-dark);
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.content-card {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 12px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}

.template-image {
  display: block;
  width: 118px;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg);
}

.template-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.content-copy {
  min-width: 0;
}

.title-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.title-row h2 {
  font-size: 17px;
  line-height: 1.25;
  margin: 0;
  color: var(--text);
}

.title-row h2 a {
  color: var(--text);
  text-decoration: none;
}

.badge {
  display: inline-flex;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.12);
  color: var(--accent-dark);
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.content-copy p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

.app-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.app-card {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}

.app-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--games-red));
  color: #fff;
  font-size: 26px;
}

.app-copy h2 {
  font-size: 18px;
  line-height: 1.25;
  margin: 0 0 8px;
  color: var(--text);
}

.app-copy p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 12px;
}

.app-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.app-links a {
  display: inline-flex;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.12);
  color: var(--accent-dark);
  padding: 7px 10px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

body.dark-mode .content-card,
body.dark-mode .app-card,
body.dark-mode .home-intro {
  background: rgba(255,255,255,0.03);
}

@media (max-width: 760px) {
  .content-grid,
  .app-card-grid {
    grid-template-columns: 1fr;
  }

  .content-card {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .template-image {
    width: 92px;
  }

  .section-heading h2 {
    font-size: 22px;
  }
}

@media (max-width: 430px) {
  .content-card {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 10px;
    padding: 10px;
  }

  .template-image {
    width: 78px;
    border-radius: 12px;
  }

  .title-row h2 {
    font-size: 15px;
  }

  .badge {
    font-size: 10px;
    padding: 4px 7px;
  }

  .content-copy p {
    font-size: 13px;
  }
}



/* Restore old compact homepage thumbnail/card size */
.homepage-section .content-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  border-radius: 16px;
}

.homepage-section .template-image {
  width: 62px;
  height: 62px;
  aspect-ratio: auto;
  border-radius: 15px;
  flex-shrink: 0;
}

.homepage-section .content-copy p {
  font-size: 14px;
  line-height: 1.55;
}

@media (max-width: 760px) {
  .homepage-section .content-card {
    display: flex;
    gap: 14px;
  }

  .homepage-section .template-image {
    width: 62px;
    height: 62px;
  }
}

@media (max-width: 430px) {
  .homepage-section .content-card {
    display: flex;
    gap: 12px;
    padding: 14px;
  }

  .homepage-section .template-image {
    width: 62px;
    height: 62px;
    border-radius: 14px;
  }
}







/* Homepage jump pills and bottom view-more links */
.jump-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
  margin: -8px 0 28px;
}

.jump-pills a {
  flex: 1 1 150px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(239, 122, 122, 0.18), rgba(59, 130, 246, 0.16)),
    var(--card);
  color: var(--text);
  border: 1px solid rgba(239, 122, 122, 0.26);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
  padding: 9px 13px;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  text-align: center;
}

.jump-pills a:nth-child(2n) {
  background:
    linear-gradient(135deg, rgba(59, 130, 246, 0.18), rgba(96, 165, 250, 0.10)),
    var(--card);
  border-color: rgba(59, 130, 246, 0.28);
}

.jump-pills a:nth-child(3n) {
  background:
    linear-gradient(135deg, rgba(250, 204, 21, 0.20), rgba(239, 122, 122, 0.12)),
    var(--card);
  border-color: rgba(250, 204, 21, 0.34);
}

.jump-pills a:hover {
  transform: translateY(-1px);
  color: var(--accent-dark);
  border-color: rgba(59, 130, 246, 0.45);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.10);
}

.section-more a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.12);
  color: var(--accent-dark);
  border: 1px solid rgba(59, 130, 246, 0.18);
  padding: 9px 12px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  text-align: center;
}

.section-more a:hover {
  background: rgba(59, 130, 246, 0.20);
  color: var(--accent-dark);
}

.section-more {
  display: flex;
  justify-content: flex-end;
  margin-top: 14px;
}

.product-preview-section .app-icon {
  font-size: 28px;
}

.product-preview-section .app-links a[target="_blank"] {
  background: rgba(239, 122, 122, 0.14);
  color: var(--games-red);
  border: 1px solid rgba(239, 122, 122, 0.18);
}

.product-preview-section .app-links a[target="_blank"]:hover {
  background: rgba(239, 122, 122, 0.22);
  color: var(--games-red);
}

body.dark-mode .jump-pills a {
  background:
    linear-gradient(135deg, rgba(239, 122, 122, 0.16), rgba(96, 165, 250, 0.13)),
    rgba(255,255,255,0.04);
  color: var(--text);
  border-color: rgba(255,255,255,0.10);
}

body.dark-mode .jump-pills a:hover {
  color: var(--accent);
  border-color: rgba(96, 165, 250, 0.38);
}

html {
  scroll-behavior: smooth;
}

@media (max-width: 760px) {
  .jump-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .jump-pills a {
    flex: 1 1 auto;
    width: auto;
    min-height: 38px;
    font-size: 13px;
    padding: 8px 10px;
  }

  .section-more {
    justify-content: flex-start;
  }
}

@media (max-width: 420px) {
  .jump-pills a {
    flex: 1 1 auto;
    font-size: 12px;
    padding: 8px 9px;
  }

  .section-more a {
    font-size: 13px;
    padding: 8px 10px;
  }
}

