/* ============================================================
   CASINO NON-GAMSTOP — MAIN STYLESHEET
   ============================================================

   TABLE OF CONTENTS
   1.  Reset & Variables
   2.  Base
   3.  Top Bar
   4.  Header & Navigation
   5.  Breadcrumb
   6.  Article Layout
   7.  Article Typography (h2 / h3 / h4 / p)
   8.  Tables
   9.  Casino Review Cards
  10.  Pros / Cons
  11.  Score Grid
  12.  Lists (std-list, step-list)
  13.  Callout Boxes
  14.  Table of Contents (collapsible)
  15.  FAQ Accordion
  16.  Responsible Gambling Block
  17.  Disclaimer
  18.  Bottom Info
  19.  Footer & Social Row
  20.  Bottom Bar
  21.  Scroll-to-top
  22.  Responsive (1024 / 768 / 480)
   ============================================================ */


/* ============================================================
   1. RESET & VARIABLES
   ============================================================ */
   *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

   :root {
     --lime:       #c8d400;
     --lime-light: #e3e980;
     --lime-dark:  #8a9200;
     --dark:       #46515f;
     --dark-deep:  #353f4b;
     --text:       #4d4d4f;
     --text-light: #6b7280;
     --white:      #fff;
   }
   
   
   /* ============================================================
      2. BASE
      ============================================================ */
   body {
     font-family: 'Source Sans Pro', sans-serif;
     color: var(--text);
     font-size: 15px;
     line-height: 1.6;
   }
   
   a { text-decoration: none; color: inherit; }
   
   
   /* ============================================================
      3. TOP BAR
      ============================================================ */
   .topbar {
     display: flex;
     justify-content: flex-end;
     align-items: center;
     padding: 8px 60px;
     font-size: 13px;
     gap: 12px;
   }
   .topbar a { color: var(--lime); font-size: 13px; transition: color 0.2s; }
   .topbar a:hover { color: var(--lime-light); }
   .topbar svg { width: 16px; height: 16px; fill: var(--lime); }
   .topbar .search-icon { cursor: pointer; color: var(--text); }
   
   
   /* ============================================================
      4. HEADER & NAVIGATION
      ============================================================ */
   header {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 0 60px 20px;
     border-bottom: 1px solid #f0f0f0;
     position: relative;
   }
   
   .logo { display: flex; align-items: center; gap: 12px; }
   .logo-badge {
     background: var(--dark);
     color: #fff;
     font-size: 11px;
     font-weight: 700;
     padding: 8px 10px;
     letter-spacing: 1px;
     display: flex;
     flex-direction: column;
     align-items: center;
     min-width: 56px;
   }
   .parl-icon { width: 32px; height: 32px; fill: white; margin-bottom: 2px; }
   .logo-text { display: flex; flex-direction: column; line-height: 1.2; }
   .logo-text .fair     { font-size: 20px; font-weight: 700; color: var(--lime); font-family: 'Libre Franklin', sans-serif; }
   .logo-text .business { font-size: 20px; font-weight: 700; color: var(--dark); font-family: 'Libre Franklin', sans-serif; }
   .logo-text .banking  { font-size: 20px; font-weight: 300; color: var(--dark); font-family: 'Libre Franklin', sans-serif; }
   .logo-text .underline { width: 60px; height: 3px; background: var(--lime); margin-top: 4px; }
   
   /* Hamburger (mobile) */
   .nav-toggle {
     display: none;
     flex-direction: column;
     gap: 5px;
     cursor: pointer;
     padding: 4px;
     background: none;
     border: none;
   }
   .nav-toggle span { display: block; width: 24px; height: 2px; background: var(--dark); transition: all 0.25s; }
   .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
   .nav-toggle.open span:nth-child(2) { opacity: 0; }
   .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
   
   /* Nav */
   nav ul { list-style: none; display: flex; gap: 32px; align-items: center; }
   nav ul li a { font-size: 14px; font-weight: 600; color: var(--text); transition: color 0.2s; }
   nav ul li a.active { color: var(--lime); }
   nav ul li a:hover  { color: var(--lime); }
   nav ul li.has-sub > a::after { content: ' ▾'; font-size: 10px; }
   
   
   /* ============================================================
      5. BREADCRUMB
      ============================================================ */
   .breadcrumb-bar {
     background: #f7f7f7;
     border-top: 1px solid #ebebeb;
     border-bottom: 1px solid #ebebeb;
     padding: 12px 60px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     font-size: 13px;
     color: var(--text-light);
   }
   .breadcrumb-bar .page-title-short { color: var(--text); font-weight: 400; flex: 1; padding-right: 40px; }
   .breadcrumb-nav { display: flex; align-items: center; gap: 6px; white-space: nowrap; }
   .breadcrumb-nav a { color: var(--text-light); transition: color 0.2s; }
   .breadcrumb-nav a:hover { color: var(--lime); }
   .breadcrumb-nav .sep { color: #ccc; }
   .breadcrumb-nav .current { color: var(--text); font-weight: 400; max-width: 380px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
   
   
   /* ============================================================
      6. ARTICLE LAYOUT
      ============================================================ */
   .article-wrap {
     max-width: 960px;
     margin: 0 auto;
     padding: 40px 60px 80px;
   }
   
   .article-title {
     font-size: 26px;
     font-weight: 700;
     color: var(--dark);
     font-family: 'Libre Franklin', sans-serif;
     line-height: 1.3;
     margin-bottom: 14px;
   }
   
   .article-meta {
     font-size: 13px;
     color: var(--text-light);
     display: flex;
     align-items: center;
     gap: 10px;
     margin-bottom: 28px;
     flex-wrap: wrap;
   }
   .article-meta .meta-sep { color: #ddd; }
   .article-meta a { color: var(--lime); }
   .article-meta .meta-author-link {
     display: inline-flex;
     align-items: center;
     gap: 5px;
     color: var(--lime);
     font-weight: 600;
     transition: color 0.2s;
   }
   .article-meta .meta-author-link:hover { color: var(--dark); }
   .article-meta .meta-author-link svg { width: 13px; height: 13px; fill: currentColor; }
   
   
   /* ============================================================
      7. ARTICLE TYPOGRAPHY
      ============================================================ */
   .article-body p {
     font-size: 15px;
     color: var(--text);
     line-height: 1.75;
     margin-bottom: 20px;
   }
   .article-body p a { color: var(--dark); font-weight: 700; }
   .article-body p a:hover { color: var(--lime); }
   
   .article-body h2 {
     font-size: 22px;
     font-weight: 700;
     color: var(--dark);
     font-family: 'Libre Franklin', sans-serif;
     margin: 44px 0 18px;
     padding-bottom: 10px;
     border-bottom: 2px solid var(--lime);
     line-height: 1.3;
   }
   .article-body h2:first-child { margin-top: 0; }
   
   .article-body h3 {
     font-size: 17px;
     font-weight: 700;
     color: var(--dark);
     margin: 32px 0 12px;
   }
   
   .article-body h4 {
     font-size: 13px;
     font-weight: 700;
     color: var(--lime-dark);
     text-transform: uppercase;
     letter-spacing: 0.6px;
     margin: 20px 0 6px;
   }
   
   
   /* ============================================================
      8. TABLES
      ============================================================ */
   .table-wrap {
     overflow-x: auto;
     margin: 20px 0 32px;
     border: 1px solid #e0e0e0;
     border-radius: 2px;
     -webkit-overflow-scrolling: touch;
   }
   
   .article-body table {
     width: 100%;
     border-collapse: collapse;
     font-size: 13.5px;
     min-width: 480px;
   }
   
   .article-body table thead tr { background: var(--dark); }
   .article-body table thead th {
     padding: 11px 14px;
     font-weight: 600;
     font-size: 12px;
     text-align: left;
     color: #fff;
     letter-spacing: 0.4px;
     text-transform: uppercase;
     white-space: nowrap;
   }
   .article-body table thead th:first-child { border-left: 3px solid var(--lime); }
   
   .article-body table tbody tr { border-bottom: 1px solid #eeeeee; transition: background 0.15s; }
   .article-body table tbody tr:hover { background: #f9fbe0 !important; }
   .article-body table tbody tr:nth-child(even) { background: #f8f8f8; }
   .article-body table tbody td { padding: 10px 14px; color: var(--text); vertical-align: top; line-height: 1.5; }
   .article-body table tbody td:first-child { font-weight: 600; color: var(--dark); }
   
   .rating-badge {
     display: inline-block;
     background: var(--lime);
     color: var(--dark);
     font-weight: 700;
     font-size: 12px;
     padding: 2px 7px;
     border-radius: 2px;
     white-space: nowrap;
   }
   
   
   /* ============================================================
      9. CASINO REVIEW CARDS
      ============================================================ */
   .review-card {
     border: 1px solid #e8e8e8;
     border-top: 3px solid var(--lime);
     margin: 32px 0;
     padding: 0;
     background: #fff;
   }
   
   /* Full-width screenshot — no padding, no negative margins */
   .review-card-img {
     width: 100%;
     line-height: 0;
     background: #f0f0f0;
   }
   .review-card-img img {
     width: 100%;
     height: auto;
     display: block;
     max-height: 200px;
     object-fit: cover;
     object-position: top center;
   }
   
   /* Content wrapper carries all padding */
   .review-card-content {
     padding: 20px 28px 24px;
   }
   
   .review-card-header {
     display: flex;
     align-items: baseline;
     gap: 14px;
     margin-bottom: 14px;
   }
   .review-card-number {
     font-size: 28px;
     font-weight: 700;
     color: var(--lime);
     font-family: 'Libre Franklin', sans-serif;
     line-height: 1;
     flex-shrink: 0;
   }
   .review-card-title {
     font-size: 17px;
     font-weight: 700;
     color: var(--dark);
     font-family: 'Libre Franklin', sans-serif;
     line-height: 1.3;
   }
   .review-card-subtitle { font-size: 13px; color: var(--text-light); font-weight: 400; }
   .review-card-screenshot {
    margin: 0 0 16px 0;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #e8e8e8;
    height: 200px;        /* ← фиксированная высота на блоке */
  }
  .review-card-screenshot img {
    width: 100%;
    height: 100%;         /* ← занимает весь блок */
    display: block;
    object-fit: cover;
    object-position: top center;
  }
  
   .review-card-body p   { font-size: 14px; line-height: 1.7; margin-bottom: 14px; }
   
   .review-card-body h4 {
     font-size: 12px;
     font-weight: 700;
     color: var(--lime-dark);
     text-transform: uppercase;
     letter-spacing: 0.6px;
     margin: 18px 0 6px;
     border: none;
     padding: 0;
   }
   
   
   /* ============================================================
      10. PROS / CONS
      ============================================================ */
   .pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 16px 0 4px; }
   .pros-block, .cons-block { padding: 14px 16px; }
   .pros-block { background: #f6fbe0; border-left: 3px solid var(--lime); }
   .cons-block { background: #fdf4f4; border-left: 3px solid #e0a0a0; }
   .pros-block h5, .cons-block h5 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 8px; }
   .pros-block h5 { color: #4a6600; }
   .cons-block h5 { color: #a05050; }
   .pros-block ul, .cons-block ul { list-style: none; padding: 0; margin: 0; }
   .pros-block ul li, .cons-block ul li {
     font-size: 13px;
     line-height: 1.6;
     padding: 3px 0 3px 18px;
     position: relative;
     border: none;
     color: var(--text);
   }
   .pros-block ul li::before { content: '✓'; position: absolute; left: 0; color: #4a6600; font-weight: 700; font-size: 12px; }
   .cons-block ul li::before { content: '✕'; position: absolute; left: 0; color: #a05050; font-weight: 700; font-size: 11px; }
   
   
   /* ============================================================
      11. SCORE GRID
      ============================================================ */
   .score-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 1px;
     background: #e8e8e8;
     border: 1px solid #e8e8e8;
     margin: 16px 0;
   }
   .score-cell { background: #fff; padding: 9px 12px; display: flex; flex-direction: column; gap: 4px; }
   .score-cell .score-label { color: var(--text-light); font-size: 11px; }
   .score-cell .score-val   { font-weight: 700; color: var(--dark); font-size: 14px; }
   
   
   /* ============================================================
      12. LISTS
      ============================================================ */
   .article-body ul.std-list,
   .article-body ol.std-list {
     margin: 0 0 20px;
     padding: 0;
     list-style: none;
   }
   .article-body ul.std-list li,
   .article-body ol.std-list li {
     font-size: 15px;
     color: var(--text);
     line-height: 1.7;
     padding: 6px 0 6px 26px;
     position: relative;
     border-bottom: 1px solid #f2f2f2;
   }
   .article-body ul.std-list li::before {
     content: '';
     position: absolute;
     left: 0; top: 15px;
     width: 8px; height: 8px;
     background: var(--lime);
     border-radius: 50%;
   }
   .article-body ol.std-list { counter-reset: item; }
   .article-body ol.std-list li { counter-increment: item; }
   .article-body ol.std-list li::before {
     content: counter(item);
     position: absolute;
     left: 0; top: 6px;
     font-size: 13px;
     font-weight: 700;
     color: var(--lime-dark);
     line-height: 1.7;
   }
   
   /* Step-by-step list */
   .step-list { margin: 0 0 24px; padding: 0; list-style: none; counter-reset: steps; }
   .step-list li {
     counter-increment: steps;
     display: flex;
     gap: 16px;
     padding: 14px 0;
     border-bottom: 1px solid #f0f0f0;
     font-size: 15px;
     line-height: 1.65;
     color: var(--text);
   }
   .step-list li::before {
     content: counter(steps);
     flex-shrink: 0;
     width: 30px; height: 30px;
     background: var(--dark);
     color: #fff;
     font-weight: 700;
     font-size: 13px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-top: 1px;
   }
   .step-list li strong { color: var(--dark); }
   
   
   /* ============================================================
      13. CALLOUT BOXES
      ============================================================ */
   .callout {
     border-left: 4px solid var(--lime);
     background: #f8fbe0;
     padding: 14px 18px;
     margin: 20px 0;
     font-size: 14px;
     line-height: 1.7;
     color: var(--text);
   }
   .callout strong { color: var(--dark); }
   
   .callout-tip {
     border-left-color: #5a90b8;
     background: #f0f7fd;
   }
   .callout-tip strong { color: #2a5070; }
   
   
   /* ============================================================
      14. TABLE OF CONTENTS — COLLAPSIBLE
      ============================================================ */
   .toc {
     background: #f8f8f8;
     border: 1px solid #e8e8e8;
     border-left: 3px solid var(--lime);
     margin: 0 0 36px;
     font-size: 14px;
   }
   .toc-toggle {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 14px 20px;
     cursor: pointer;
     user-select: none;
   }
   .toc-toggle-label { font-weight: 700; color: var(--dark); font-size: 13px; text-transform: uppercase; letter-spacing: 0.6px; }
   .toc-toggle-icon {
     width: 22px; height: 22px;
     background: var(--lime);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 14px;
     font-weight: 700;
     color: var(--dark);
     transition: transform 0.25s, background 0.2s;
     flex-shrink: 0;
   }
   .toc.open .toc-toggle-icon { transform: rotate(45deg); background: var(--dark); color: #fff; }
   .toc-body { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
   .toc.open .toc-body { max-height: 700px; }
   .toc-body-inner { padding: 0 20px 16px; }
   .toc ol { counter-reset: toc; padding: 0; margin: 0; list-style: none; columns: 2; column-gap: 24px; }
   .toc ol li { counter-increment: toc; padding: 4px 0 4px 22px; position: relative; break-inside: avoid; font-size: 14px; line-height: 1.5; }
   .toc ol li::before { content: counter(toc) "."; position: absolute; left: 0; color: var(--lime-dark); font-weight: 700; font-size: 13px; }
   .toc ol li a { color: var(--dark); transition: color 0.2s; }
   .toc ol li a:hover { color: var(--lime-dark); }
   
   
   /* ============================================================
      15. FAQ ACCORDION
      ============================================================ */
   .faq-list { margin: 10px 0 32px; }
   .faq-item { border-top: 1px solid #e8e8e8; }
   .faq-item:last-child { border-bottom: 1px solid #e8e8e8; }
   .faq-question { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 16px 0; cursor: pointer; user-select: none; }
   .faq-question-text { font-size: 15px; font-weight: 600; color: var(--dark); line-height: 1.4; }
   .faq-icon {
     flex-shrink: 0;
     width: 24px; height: 24px;
     background: var(--lime);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 16px;
     font-weight: 700;
     color: var(--dark);
     line-height: 1;
     transition: transform 0.25s, background 0.2s;
   }
   .faq-item.open .faq-icon { transform: rotate(45deg); background: var(--dark); color: #fff; }
   .faq-answer { font-size: 14px; color: var(--text); line-height: 1.7; max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.25s; }
   .faq-item.open .faq-answer { max-height: 600px; padding-bottom: 18px; }
   
   
   /* ============================================================
      16. RESPONSIBLE GAMBLING BLOCK
      ============================================================ */
   .age-bar {
     display: flex;
     align-items: center;
     gap: 14px;
     background: #f8f8f8;
     border: 1px solid #e8e8e8;
     padding: 12px 18px;
     margin-bottom: 16px;
     font-size: 13px;
     color: var(--text);
   }
   .age-badge {
     flex-shrink: 0;
     width: 36px; height: 36px;
     background: var(--dark);
     color: var(--lime);
     font-weight: 900;
     font-size: 13px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     letter-spacing: -0.5px;
   }
   
   .rg-banner {
     background: var(--dark);
     padding: 28px 32px;
     margin: 32px 0;
     display: flex;
     align-items: flex-start;
     gap: 20px;
   }
   .rg-banner-icon { font-size: 32px; flex-shrink: 0; line-height: 1; margin-top: 2px; }
   .rg-banner-text h3 {
     font-size: 16px;
     font-weight: 700;
     color: var(--lime);
     margin: 0 0 10px;
     font-family: 'Libre Franklin', sans-serif;
   }
   .rg-banner-text p {
     font-size: 13px;
     line-height: 1.7;
     margin: 0 0 8px;
     color: #fff;
   }
   .rg-banner-text p strong { color: #fff; font-weight: 700; }
   .rg-banner-text p:last-child { margin-bottom: 0; }
   
   .rg-orgs {
     display: grid;
     grid-template-columns: repeat(5, 1fr);
     gap: 10px;
     margin: 20px 0 28px;
   }
   .rg-org {
     border: 1px solid #e0e0e0;
     padding: 14px 12px;
     text-align: center;
     transition: border-color 0.2s, background 0.2s;
   }
   .rg-org:hover { border-color: var(--lime); background: #fafce8; }
   .rg-org a { color: var(--dark); display: block; }
   .rg-org-badge {
     font-size: 10px;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 0.5px;
     color: #fff;
     background: var(--dark);
     padding: 3px 6px;
     display: inline-block;
     margin-bottom: 8px;
   }
   .rg-org-name { font-size: 13px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
   .rg-org-desc { font-size: 11px; color: var(--text-light); line-height: 1.4; }
   .rg-org-url  { font-size: 11px; color: var(--lime-dark); margin-top: 6px; font-weight: 600; }
   
   
   /* ============================================================
      17. DISCLAIMER
      ============================================================ */
   .disclaimer-block {
     background: #f3f4f5;
     border: 1px solid #dde0e4;
     border-left: 4px solid var(--text-light);
     padding: 18px 22px;
     margin: 32px 0;
     font-size: 12px;
     line-height: 1.7;
     color: var(--text);
   }
   .disclaimer-block strong { color: var(--dark); }
   .disclaimer-block a { color: var(--dark); text-decoration: underline; }
   
   
   /* ============================================================
      18. BOTTOM INFO
      ============================================================ */
   .bottom-info {
     background: var(--dark);
     padding: 60px;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 60px;
   }
   .bottom-info h2 {
     font-size: 18px;
     font-weight: 600;
     color: var(--lime);
     font-family: 'Libre Franklin', sans-serif;
     margin-bottom: 14px;
   }
   .bottom-info p { font-size: 13px; line-height: 1.7; margin-bottom: 12px; color: #fff; }
   .bottom-info a { color: rgba(255,255,255,0.75); text-decoration: underline; }
   .bottom-info a:hover { color: var(--lime); }
   
   
   /* ============================================================
      19. FOOTER & SOCIAL ROW
      ============================================================ */
   footer { background: #3d4856; padding: 50px 60px 30px; color: rgba(255,255,255,0.7); }
   
   .footer-inner { display: grid; grid-template-columns: 220px repeat(6, 1fr); gap: 30px; margin-bottom: 40px; }
   
   .footer-logo-badge { display: inline-flex; background: #fff; padding: 6px 10px; align-items: center; gap: 8px; margin-bottom: 16px; }
   .footer-logo-badge .badge-dark { background: var(--dark); color: #fff; padding: 4px 8px; font-size: 10px; font-weight: 700; letter-spacing: 1px; }
   .footer-logo-badge .brand-name { font-size: 14px; font-weight: 700; color: var(--lime-dark); font-family: 'Libre Franklin', sans-serif; line-height: 1.2; }
   
   .footer-disclaimer { font-size: 11px; line-height: 1.65; color: rgba(255,255,255,0.55); margin-top: 10px; }
   
   .footer-col h4 {
     font-size: 11px;
     font-weight: 700;
     letter-spacing: 1px;
     text-transform: uppercase;
     color: rgba(255,255,255,0.9);
     margin-bottom: 14px;
   }
   .footer-col ul { list-style: none; padding: 0; margin: 0; }
   .footer-col ul li { margin-bottom: 8px; }
   .footer-col ul li a { font-size: 12px; color: rgba(255,255,255,0.6); transition: color 0.2s; }
   .footer-col ul li a:hover { color: var(--lime); }
   .footer-col ul li.year-header { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.85); margin-top: 10px; margin-bottom: 6px; }
   
   .footer-social-row {
     border-top: 1px solid rgba(255,255,255,0.1);
     padding-top: 24px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     flex-wrap: wrap;
     gap: 16px;
   }
   .footer-social-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.6); margin-right: 4px; }
   .footer-social-links { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
   .footer-social-links a {
     display: flex;
     align-items: center;
     gap: 6px;
     font-size: 12px;
     color: rgba(255,255,255,0.7);
     background: rgba(255,255,255,0.07);
     padding: 6px 12px;
     border-radius: 2px;
     transition: background 0.2s, color 0.2s;
   }
   .footer-social-links a:hover { background: var(--lime); color: var(--dark); }
   .footer-social-links a svg { width: 14px; height: 14px; fill: currentColor; flex-shrink: 0; }
   
   
   /* ============================================================
      20. BOTTOM BAR
      ============================================================ */
   .bottom-bar {
     background: var(--dark-deep);
     padding: 14px 60px;
     display: flex;
     justify-content: space-between;
     align-items: center;
     font-size: 12px;
     color: rgba(255,255,255,0.5);
     flex-wrap: wrap;
     gap: 8px;
   }
   .bottom-bar a { color: var(--lime); }
   .bottom-bar a:hover { color: var(--lime-light); }
   
   
   /* ============================================================
      21. SCROLL TO TOP
      Hidden by default — becomes visible via JS (.visible class)
      ============================================================ */
   .scroll-top {
     position: fixed;
     bottom: 24px;
     right: 20px;
     width: 48px;
     height: 48px;
     background: var(--dark);
     border: 3px solid var(--lime);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     z-index: 9999;
     box-shadow: 0 4px 16px rgba(0,0,0,0.35);
     opacity: 0;
     pointer-events: none;
     transform: translateY(10px);
     transition: opacity 0.3s, transform 0.3s, background 0.2s;
   }
   .scroll-top.visible {
     opacity: 1;
     pointer-events: auto;
     transform: translateY(0);
   }
   .scroll-top:hover { background: var(--lime); }
   .scroll-top::after { content: '↑'; color: #fff; font-size: 20px; font-weight: 700; line-height: 1; }
   .scroll-top:hover::after { color: var(--dark); }
   
   
   /* ============================================================
      22. RESPONSIVE
      ============================================================ */
   
   /* Tablet — 1024px */
   @media (max-width: 1024px) {
     .topbar         { padding: 8px 30px; }
     header          { padding: 0 30px 20px; }
     .breadcrumb-bar { padding: 10px 30px; }
     .article-wrap   { padding: 32px 30px 60px; }
     .footer-inner   { grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
     footer          { padding: 40px 30px 20px; }
     .bottom-info    { padding: 40px 30px; gap: 30px; }
     .bottom-bar     { padding: 12px 30px; }
     .rg-orgs        { grid-template-columns: repeat(3, 1fr); }
   }
   
   /* Mobile — 768px */
   @media (max-width: 768px) {
     .topbar { padding: 8px 16px; font-size: 12px; }
     header  { padding: 0 16px 16px; }
   
     .nav-toggle { display: flex; }
   
     nav {
       display: none;
       position: absolute;
       top: 100%;
       left: 0; right: 0;
       background: #fff;
       border-top: 2px solid var(--lime);
       z-index: 200;
       box-shadow: 0 6px 20px rgba(0,0,0,0.12);
     }
     nav.open { display: block; }
     nav ul { flex-direction: column; gap: 0; padding: 8px 0; }
     nav ul li { width: 100%; }
     nav ul li a { display: block; padding: 12px 20px; font-size: 15px; border-bottom: 1px solid #f5f5f5; }
   
     .breadcrumb-bar {
       padding: 10px 16px;
       flex-direction: column;
       align-items: flex-start;
       gap: 6px;
     }
     .breadcrumb-bar .page-title-short { padding-right: 0; font-size: 12px; }
     .breadcrumb-nav { display: none; }
   
     .article-wrap  { padding: 24px 16px 48px; }
     .article-title { font-size: 21px; }
   
     .toc ol     { columns: 1; }
     .score-grid { grid-template-columns: repeat(2, 1fr); }
     .pros-cons  { grid-template-columns: 1fr; }
   
     /* Review card mobile */
     .review-card-img img  { max-height: 160px; }
     .review-card-content  { padding: 16px 16px 20px; }
   
     .rg-orgs   { grid-template-columns: repeat(2, 1fr); }
     .rg-banner { flex-direction: column; gap: 12px; padding: 20px 18px; }
   
     .footer-inner      { grid-template-columns: 1fr 1fr; gap: 20px; }
     footer             { padding: 32px 16px 16px; }
     .bottom-info       { grid-template-columns: 1fr; padding: 32px 16px; gap: 24px; }
     .bottom-bar        { padding: 12px 16px; flex-direction: column; align-items: flex-start; gap: 6px; }
     .footer-social-row { flex-direction: column; align-items: flex-start; }
   
     /* Scroll-to-top — above browser navigation bar */
     .scroll-top {
       bottom: 80px;
       right: 16px;
       width: 52px;
       height: 52px;
     }
     .scroll-top::after { font-size: 22px; }
   }
   
   /* Small mobile — 480px */
   @media (max-width: 480px) {
     .article-title       { font-size: 19px; }
     .article-body h2     { font-size: 18px; }
     .article-body h3     { font-size: 16px; }
     .rg-orgs             { grid-template-columns: 1fr 1fr; }
     .footer-inner        { grid-template-columns: 1fr; }
     .score-grid          { grid-template-columns: repeat(2, 1fr); }
     .footer-social-links { flex-wrap: wrap; }
   }
   
   
   /* ============================================================
      JS — add before </body>
   
      // Mobile nav toggle
      function toggleNav() {
        document.getElementById('mainNav').classList.toggle('open');
        document.getElementById('navToggle').classList.toggle('open');
      }
      document.querySelectorAll('#mainNav a').forEach(link => {
        link.addEventListener('click', () => {
          document.getElementById('mainNav').classList.remove('open');
          document.getElementById('navToggle').classList.remove('open');
        });
      });
   
      // Scroll-to-top visibility
      (function() {
        var btn = document.querySelector('.scroll-top');
        if (!btn) return;
        window.addEventListener('scroll', function() {
          btn.classList.toggle('visible', window.scrollY > 400);
        }, { passive: true });
      })();
      ============================================================ */
   