:root {
    --green: #00a85a;
    --white: #ffffff;
    --green-dark: #008a49;
    --green-light: #e8f9f1;
    --dark: #ffffff;
    --dark2: #f6f8fa;
    --dark3: #edf0f3;
    --border: #d0d7de;
    --text: #1a1f2e;
    --muted: #6b7785;
    --accent: #0969da;
    --orange: #d1580a;
  }
  /* ALERT BOX */
  .alert-box {
    max-width: 860px;
    margin: 0 auto;
    background: #fff8f0;
    border: 1px solid rgba(209,88,10,0.25);
    border-left: 4px solid var(--orange);
    border-radius: 0 10px 10px 0;
    padding: 1.1rem 1.4rem;
    font-size: 0.9rem;
    color: #92400e;
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
  }
  .alert-box .icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }

  /* TOC */
  .toc-wrap {
    background: #f6f8fa;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.6rem 2rem;
    margin: 3rem auto;
    max-width: 860px;
  }
  .toc-wrap h3 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); margin-bottom: 1rem; line-height:normal; }
  .toc-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem 2rem; }
  .toc-list li a { color: var(--accent); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
  .toc-list li a:hover { color: var(--text); }
  @media (max-width: 600px) { .toc-list { grid-template-columns: 1fr; } }

  /* SECTION */
  .section { padding: 3.5rem 1.5rem; margin: 0 auto; border-bottom: 1px solid var(--border); }
  .section:last-of-type { border-bottom: none; }

  .section-num {
    height: 30px;
    background: #0cbc15;
    color: #000000;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 700;
    padding: 0px 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 4px;
    margin-right: 10px;
    margin-bottom: 11px;
  }
  .section h2 {
    
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 1.4rem;
  }
  .section h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin: 2rem 0 0.7rem;
  }
  .section p { color: #3d4a5c; margin-bottom: 1.1rem; font-size: 0.95rem; }

  /* RANKED LIST TABLE */
  .table-wrap { overflow-x: auto; margin: 1.5rem 0; border-radius: 12px; border: 1px solid var(--border); }
  table { width: 100%; border-collapse: collapse; font-size: 0.82rem; }
  thead tr { background: #f0f3f6; }
  thead th { padding: 0.8rem 1rem; text-align: left; color: var(--muted); font-weight: 600; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.07em; white-space: nowrap; }
  tbody tr { border-top: 1px solid var(--border); transition: background 0.15s; }
  tbody tr:hover { background: #f6f8fa; }
  tbody td { padding: 0.75rem 1rem; color: #3d4a5c; vertical-align: top; }
  tbody td:first-child { font-weight: 600; color: var(--text); }
  .badge {
    display: inline-block;
    padding: 0.2rem 0.55rem;
    border-radius: 5px;
    font-size: 0.72rem;
    font-weight: 600;
    white-space: nowrap;
  }
  .badge-free { background: #e8f9f1; color: #00703a; border: 1px solid #b6e9d2; }
  .badge-premium { background: #e8f0fd; color: #0550ae; border: 1px solid #c5d8fb; }
  .badge-freemium { background: #fff3e8; color: #92400e; border: 1px solid #fcd7aa; }

  /* HIGHLIGHT CARDS */
  .cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.2rem; margin: 1.8rem 0; }
  .card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.3rem 1.4rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  }
  .card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--green);
  }
  .card.accent::before { background: var(--accent); }
  .card.orange::before { background: var(--orange); }
  .card-icon { font-size: 1.8rem; margin-bottom: 0.8rem; }
  .card h4 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 0.4rem; }
  .card p { font-size: 0.9rem; color: var(--text); font-weight: 500; margin: 0; }
  .card .sub { font-size: 0.8rem; color: var(--muted); font-weight: 400; margin-top: 0.25rem; }

  /* APP REVIEW CARDS */
  .app-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.6rem 1.8rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }
  .app-card-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.2rem; }
  .app-name { font-size: 1.2rem; font-weight: 800; color: var(--text); }
  .app-tagline { font-size: 0.82rem; color: var(--muted); margin-top: 0.2rem; }
  .rating { font-size: 0.88rem; font-weight: 700; color: #b45309; }
  .app-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 0.8rem;  }
  .stat { background: #f6f8fa; border-radius: 8px; padding: 0.7rem 1rem; border: 1px solid var(--border); }
  .stat-label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 0.2rem; }
  .stat-val { font-size: 0.9rem; font-weight: 600; color: var(--text); }
  .pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1rem; }
  @media (max-width: 540px) { .pros-cons { grid-template-columns: 1fr; } }
  .pros, .cons { background: #f6f8fa; border-radius: 8px; padding: 0.9rem 1rem; border: 1px solid var(--border); }
  .pros h5 { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--green); margin-bottom: 0.6rem; }
  .cons h5 { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: #cf222e; margin-bottom: 0.6rem; }
  .pros ul, .cons ul { list-style: none; padding: 0; }
  .pros li, .cons li { font-size: 0.83rem; color: #3d4a5c; padding: 0.2rem 0; display: flex; gap: 0.5rem; align-items: flex-start; }
  .pros li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
  .cons li::before { content: '✗'; color: #cf222e; font-weight: 700; flex-shrink: 0; }

  /* INFO BOX */
  .info-box {
    background: #eef4fd;
    border: 1px solid #c5d8fb;
    border-left: 4px solid var(--accent);
    border-radius: 0 10px 10px 0;
    padding: 1.1rem 1.4rem;
    margin: 1.5rem 0;
    font-size: 0.9rem;
    color: #0550ae;
  }
  .info-box strong { color: var(--accent); }

  /* REGION TABLE */
  .region-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; margin: 1.5rem 0; }
  .region-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1.1rem 1.2rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  }
  .region-flag { font-size: 1.5rem; margin-bottom: 0.5rem; }
  .region-name { font-weight: 700; font-size: 0.95rem; color: var(--text); margin-bottom: 0.5rem; }
  .region-apps { font-size: 0.82rem; color: var(--muted); }
  .region-apps strong { color: var(--green); }

  /* WARNING BOX */
  .warning-box {
    background: #fff2f2;
    border: 1px solid #ffc1c1;
    border-left: 4px solid #cf222e;
    border-radius: 0 10px 10px 0;
    padding: 1.1rem 1.4rem;
    margin: 1.5rem 0;
    font-size: 0.9rem;
    color: #8a0000;
  }
  .warning-box strong { color: #cf222e; }

  /* FAQ */
  .faq-item {
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-bottom: 0.8rem;
    overflow: hidden;
  }
  .faq-q {
    width: 100%;
    background: #f6f8fa;
    color: var(--text);
    border: none;
    padding: 1.1rem 1.4rem;
    text-align: left;
    cursor: pointer;
    font-family: 'Sora', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: background 0.2s;
  }
  .faq-q:hover { background: #edf0f3; }
  .faq-icon { color: var(--green); font-size: 1.2rem; flex-shrink: 0; transition: transform 0.25s; }
  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #ffffff;
    padding: 0 1.4rem;
    font-size: 0.88rem;
    color: #3d4a5c;
    line-height: 1.7;
  }
  .faq-a.open { max-height: 400px; padding: 1rem 1.4rem; }
  .faq-icon.rotated { transform: rotate(45deg); }
  small {
    font-size: 10px;
    text-align: right;
    color: gray;
    float: right;
}

  /* CTA */
  .cta-section {
    background: #000;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    margin: 48px auto;
    position: relative;
    overflow: hidden;
    width: 90%;
  }
  .cta-section h2 {
    
    font-size: 1.9rem;
    margin-bottom: 1rem;
    color: var(--dark);
  }
  .cta-section p { color: var(--dark); font-size: 0.95rem; max-width: 560px; margin: 0 auto 1.8rem; }
  .cta-btn {
    display: inline-block;
    background: var(--green);
    color: #ffffff;
    font-weight: 800;
    font-size: 0.92rem;
    padding: 0.85rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
  }
  .cta-btn:hover { background: var(--green-dark); transform: translateY(-1px); color:var(--dark); }

    /* MISC */
  hr { border: none; border-top: 1px solid var(--border); margin: 2rem 0; }
  ul.plain-list { list-style: none; padding: 0; }
  ul.plain-list li { padding: 0.3rem 0; color: #3d4a5c; font-size: 0.9rem; display: flex; gap: 0.6rem; }
  ul.plain-list li::before { content: '→'; color: var(--green); font-weight: 700; flex-shrink: 0; }