  :root{
    --bg:#0a0505;
    --bg-alt:#120808;
    --panel:#180d0d;
    --panel-2:#1d1010;
    --border:#2e1717;
    --accent:#e8263f;
    --accent-dim:#a3182b;
    --ok:#59d977;
    --text:#eee6e6;
    --muted:#958a8a;
    --mono:var(--body-font);
    --display:var(--body-font);
    --body-font:Roboto, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
  }

  *{box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  body{
    margin:0;
    background:var(--bg);
    color:var(--text);
    font-family:var(--body-font);
    line-height:1.6;
    background-image:
      radial-gradient(circle at 15% 0%, rgba(232,38,63,0.08), transparent 40%),
      radial-gradient(circle at 85% 10%, rgba(232,38,63,0.05), transparent 35%);
  }

  a{color:var(--accent);}

  .wrap{
    max-width:980px;
    margin:0 auto;
    padding:0 24px;
  }

  /* ---------- HERO ---------- */
  header.hero{
    position:relative;
    padding:52px 0 40px;
    border-bottom:1px solid var(--border);
    overflow:hidden;
  }
  .reticle{
    position:absolute;
    top:-60px; right:-60px;
    width:340px; height:340px;
    border:1px solid rgba(232,38,63,0.18);
    border-radius:50%;
    pointer-events:none;
  }
  .reticle::before,.reticle::after{
    content:"";
    position:absolute;
    background:rgba(232,38,63,0.28);
  }
  .reticle::before{ top:50%; left:-20px; right:-20px; height:1px; }
  .reticle::after{ left:50%; top:-20px; bottom:-20px; width:1px; }

  header.hero .wrap{
    text-align:center;
    display:flex;
    flex-direction:column;
    align-items:center;
  }
  .logo{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:var(--text);
    text-decoration:none;
    font-size:17px;
    font-weight:500;
    margin-bottom:40px;
  }
  .logo-icon{ flex:none; display:block; object-fit:contain; }
  .logo b{ font-weight:700; color:var(--accent); }

  .eyebrow{
    font-family:var(--mono);
    letter-spacing:0.22em;
    text-transform:uppercase;
    color:var(--accent);
    font-size:12.5px;
    display:inline-flex;
    align-items:center;
    gap:10px;
    margin-bottom:22px;
  }
  .eyebrow::before{
    content:"";
    width:8px; height:8px;
    background:var(--accent);
    box-shadow:0 0 10px 2px rgba(232,38,63,0.6);
    display:inline-block;
  }

  h1{
    font-family:var(--display);
    font-weight:800;
    font-size:clamp(34px, 5.4vw, 62px);
    line-height:1.06;
    letter-spacing:-0.01em;
    margin:0 0 22px;
    max-width:820px;
  }
  h1 span{color:var(--accent);}

  .hero p.lead{
    max-width:620px;
    color:var(--muted);
    font-size:17px;
    margin:0 0 34px;
  }

  /* ---------- SECTION SHELL ---------- */
  section{ padding:72px 0; border-bottom:1px solid var(--border); }
  #catalog{ padding-top:36px; }
  .section-head{ margin-bottom:36px; max-width:720px; }
  .section-head .eyebrow{ margin-bottom:14px; }
  h2{
    font-family:var(--display);
    font-size:clamp(24px,3vw,34px);
    font-weight:700;
    margin:0 0 12px;
    letter-spacing:-0.01em;
  }
  h3{
    font-family:var(--body-font);
    font-size:19px;
    font-weight:700;
    margin:0;
    color:var(--text);
  }
  .muted-lead{ color:var(--muted); font-size:15.5px; }

  /* ---------- CATEGORY CAROUSELS ---------- */
  .category{ margin-bottom:44px; }
  .category:last-child{ margin-bottom:0; }
  .category-head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    margin-bottom:16px;
  }
  .carousel-nav{ display:flex; gap:8px; flex:none; }
  .carousel-nav button{
    width:32px; height:32px;
    border-radius:8px;
    border:2px solid var(--border);
    background:var(--panel);
    color:var(--text);
    cursor:pointer;
    font-size:15px;
    line-height:1;
    transition:border-color .2s ease, color .2s ease;
  }
  .carousel-nav button:hover{ border-color:var(--accent-dim); color:var(--accent); }

  .carousel-row{
    display:flex;
    gap:16px;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    padding-bottom:4px;
    scrollbar-width:none;
    -ms-overflow-style:none;
  }
  .carousel-row::-webkit-scrollbar{ display:none; }
  .carousel-row .card{
    flex:0 0 auto;
    width:200px;
    scroll-snap-align:start;
  }

  /* ---------- CARD ---------- */
  .card{
    background:var(--panel);
    border:2px solid var(--border);
    border-radius:0 0 14px 14px;
    overflow:hidden;
    display:flex;
    flex-direction:column;
    color:inherit;
    text-decoration:none;
    transition:border-color .2s ease, transform .2s ease;
  }
  .card:hover{ border-color:var(--accent-dim); transform:translateY(-3px); }
  .card .thumb-wrap{
    position:relative;
    width:100%;
    padding-top:100%;
    overflow:hidden;
    background:#1c1010;
  }
  .card .thumb{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
  }
  .card .body{ padding:14px 16px 16px; display:flex; flex-direction:column; flex:1; }
  .badge{
    position:absolute;
    left:8px; top:8px;
    display:inline-flex;
    align-items:center;
    gap:5px;
    background:rgba(10,5,5,0.78);
    backdrop-filter:blur(2px);
    padding:5px 9px;
    border-radius:6px;
    font-size:12px;
    font-weight:600;
    color:var(--text);
    border:1px solid rgba(255,255,255,0.08);
  }
  .badge .icon{ color:var(--ok); font-size:12px; line-height:1; }
  .card .name{
    font-family:var(--body-font);
    font-weight:700;
    font-size:15.5px;
    margin:0 0 10px;
    line-height:1.3;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
  }
  .btn{
    display:block;
    margin-top:14px;
    width:100%;
    box-sizing:border-box;
    border:1px solid var(--accent);
    border-radius:8px;
    background:#0a0505;
    color:var(--accent);
    font-family:var(--body-font);
    font-weight:700;
    font-size:13px;
    letter-spacing:.03em;
    text-transform:uppercase;
    text-align:center;
    padding:10px 0;
    cursor:pointer;
    box-shadow:0 0 8px rgba(232,38,63,0.35);
    transition:background .2s ease, color .2s ease, box-shadow .2s ease;
  }
  .card:hover .btn,
  .card:active .btn{
    background:var(--accent);
    color:#0a0505;
    box-shadow:0 0 12px rgba(232,38,63,0.55);
  }

  /* ---------- TABLE ---------- */
  .table-wrap{ overflow-x:auto; border:1px solid var(--border); border-radius:12px; }
  table.scoreboard{
    width:100%;
    border-collapse:collapse;
    min-width:640px;
    font-family:var(--mono);
    font-size:13.5px;
  }
  table.scoreboard thead th{
    text-align:left;
    background:var(--panel-2);
    color:var(--accent);
    text-transform:uppercase;
    letter-spacing:.06em;
    font-size:11.5px;
    padding:14px 16px;
    border-bottom:1px solid var(--border);
  }
  table.scoreboard tbody td{
    padding:13px 16px;
    border-bottom:1px solid var(--border);
    color:var(--text);
  }
  table.scoreboard tbody tr:nth-child(even){ background:rgba(255,255,255,0.015); }
  table.scoreboard tbody tr:hover{ background:rgba(232,38,63,0.06); }
  table.scoreboard td.num{ color:var(--accent-dim); }

  /* ---------- TIPS LIST ---------- */
  .tips-list{
    list-style:none;
    margin:0;
    padding:0;
    display:grid;
    gap:14px;
    max-width:720px;
  }
  .tips-list li{
    display:flex;
    gap:14px;
    align-items:flex-start;
    color:#cdc4c4;
    font-size:15.5px;
    line-height:1.55;
  }
  .tips-list li::before{
    content:"";
    flex:none;
    width:9px; height:9px;
    margin-top:8px;
    background:var(--accent);
    border-radius:2px;
  }

  /* ---------- SEO TEXT ---------- */
  .seo-text{ max-width:780px; color:#cdc4c4; font-size:15.5px; }
  .seo-text p{ margin:0 0 16px; }

  /* ---------- FAQ ---------- */
  .faq-item{
    border:1px solid var(--border);
    background:var(--panel);
    margin-bottom:10px;
  }
  .faq-item summary{
    cursor:pointer;
    padding:18px 20px;
    font-weight:600;
    font-size:15.5px;
    list-style:none;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:16px;
  }
  .faq-item summary::-webkit-details-marker{ display:none; }
  .faq-item summary::after{
    content:"+";
    font-family:var(--mono);
    color:var(--accent);
    font-size:20px;
    flex:none;
    transition:transform .2s ease;
  }
  .faq-item[open] summary::after{ transform:rotate(45deg); }
  .faq-item .faq-a{
    padding:0 20px 20px;
    color:var(--muted);
    font-size:14.5px;
    max-width:680px;
  }

  /* ---------- FOOTER ---------- */
  footer{ padding:44px 0 60px; }
  .footer-grid{
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:24px;
    margin-bottom:28px;
  }
  .footer-brand.logo{ margin-bottom:0; font-size:18px; }
  .footer-links{ display:flex; gap:24px; flex-wrap:wrap; }
  .footer-links a{ color:var(--muted); text-decoration:none; font-size:13.5px; }
  .footer-links a:hover{ color:var(--accent); }
  .footer-bottom{
    border-top:1px solid var(--border);
    padding-top:20px;
    font-size:12.5px;
    color:var(--muted);
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:10px;
  }

  /* ---------- RESPONSIVE ---------- */
  @media (max-width:860px){
    section{ padding:52px 0; }
    .carousel-row .card{ width:160px; }
    .card .name{ font-size:12px; }
    .btn{ margin-top:8px; }
    .badge{ font-size:9.5px; padding:3px 6px; }
    .btn{ font-size:10.5px; padding:7px 0; }
  }
  @media (max-width:520px){
    header.hero{ padding:32px 0 28px; }
    .hero p.lead{ margin-bottom:18px; }
    #catalog{ padding-top:18px; }
    .category-head{ align-items:flex-start; flex-direction:column; gap:10px; }
    .category{ margin-bottom:24px; }
    .carousel-row .card{ width:145px; }
  }

  :focus-visible{ outline:2px solid var(--accent); outline-offset:2px; }
  @media (prefers-reduced-motion: reduce){
    *{ transition:none !important; scroll-behavior:auto !important; }
  }
