/* ═══════════════════════════════════════════════════════════════
   "Arena" — a theme of our own, written to the reference rather than imported.

   Dark navy ground, one electric-blue accent, a geometric sans. Hero with a
   centred heading and a large product image, a row of icon cards, sections with
   an accent-underlined heading, checklists with blue ticks, two-tone spec tables,
   image-beside-text blocks.

   The reference showed no contents block, no FAQ, no author box and no footer.
   Those are drawn in the same language rather than left bare.

   Everything a theme could differ on is a variable on :root, so this one
   stylesheet gives many unrelated-looking sites: change the four colours and the
   two fonts and it is a different theme. The structure — which is what a
   network-detection heuristic actually sees — stays the same, so the variation
   is real where it is visible and cheap where it is not.
   ═══════════════════════════════════════════════════════════════ */

:root{
  --ar-bg:#0b1020;
  --ar-bg-2:#0f1629;
  --ar-surf:#141c33;
  --ar-surf-2:#1a2440;
  --ar-line:#243055;
  --ar-txt:#eef2ff;
  --ar-txt-2:#a9b4d6;
  --ar-acc:#2f8bff;
  --ar-acc-2:#1f6fe0;
  --ar-acc-ink:#ffffff;
  --ar-ok:#37d67a;
  --ar-disp:"Manrope","Inter",system-ui,sans-serif;
  --ar-body:"Inter",system-ui,sans-serif;
  --ar-rad:14px;
  --ar-rad-sm:10px;
  --ar-max:1180px;
  --ar-pad:32px;
  --ar-gap:28px;
  --wrapper-margin:40px;
}

*,*::before,*::after{box-sizing:border-box}
html{overflow-x:hidden;scroll-behavior:smooth}
body{margin:0;background:var(--ar-bg);color:var(--ar-txt);font-family:var(--ar-body);
  font-size:16px;line-height:1.65;overflow-wrap:break-word;-webkit-font-smoothing:antialiased}
img,svg,video,iframe{max-width:100%}
img{height:auto;display:block}
a{color:var(--ar-acc);text-decoration:none}
a:hover{text-decoration:underline}
h1,h2,h3,h4{font-family:var(--ar-disp);line-height:1.2;margin:0 0 .5em;font-weight:800;letter-spacing:-.01em}
h1{font-size:clamp(1.7rem,4.2vw,2.6rem);text-transform:uppercase;letter-spacing:.01em}
h2{font-size:clamp(1.35rem,2.6vw,1.75rem);padding-bottom:10px;position:relative}
h2::after{content:"";position:absolute;left:0;bottom:0;width:56px;height:3px;border-radius:2px;background:var(--ar-acc)}
h3{font-size:1.15rem;font-weight:700}
p{margin:0 0 1em}
td,th,li,p,h1,h2,h3,summary,a{overflow-wrap:anywhere}

/* ── width ─────────────────────────────────────────────────── */
.ar-wrap{max-width:var(--ar-max);margin:0 auto;padding-left:var(--ar-pad);padding-right:var(--ar-pad)}
main>section{margin-top:var(--wrapper-margin)}
main>section:first-child{margin-top:0}

/* ── header ────────────────────────────────────────────────── */
.ar-hdr{position:sticky;top:0;z-index:60;background:rgba(11,16,32,.92);
  backdrop-filter:blur(10px);border-bottom:1px solid var(--ar-line)}
.ar-hdr__in{display:flex;align-items:center;flex-wrap:wrap;min-height:64px;padding-top:10px;padding-bottom:10px}
.ar-logo{margin-bottom:16px;margin-right:18px;font-family:var(--ar-disp);font-weight:800;font-size:1.3rem;color:var(--ar-txt);
  letter-spacing:-.02em;white-space:nowrap;display:inline-flex;align-items:center}
.ar-logo:hover{text-decoration:none}
.ar-logo img{height:32px;width:auto}
.ar-nav{margin-left:auto;margin-right:auto}
.ar-menu{display:flex;gap:4px;list-style:none;margin:0;padding:0}
.ar-menu>li{position:relative}
.ar-menu a{display:block;padding:8px 12px;border-radius:8px;color:var(--ar-txt-2);font-weight:600;font-size:.92rem}
.ar-menu a:hover,.ar-menu>li.is-cur>a{color:var(--ar-txt);background:var(--ar-surf);text-decoration:none}
.ar-menu>li.has-sub>a::after{content:"";display:inline-block;width:6px;height:6px;margin-left:7px;
  border-right:2px solid currentColor;border-bottom:2px solid currentColor;transform:rotate(45deg) translateY(-2px)}
.ar-sub{position:absolute;top:100%;left:0;min-width:200px;list-style:none;margin:6px 0 0;padding:8px;
  background:var(--ar-surf);border:1px solid var(--ar-line);border-radius:var(--ar-rad-sm);
  box-shadow:0 14px 40px rgba(0,0,0,.45);display:none;z-index:70}
.ar-menu>li:hover>.ar-sub,.ar-menu>li:focus-within>.ar-sub{display:block}
.ar-btns{display:flex;align-items:center;margin-left:auto}
.ar-btns>*+*{margin-left:10px}
.ar-btns.ar-btns--alone{margin-left:auto}
.ar-burger{display:none;width:42px;height:42px;border:1px solid var(--ar-line);border-radius:10px;
  background:var(--ar-surf);color:var(--ar-txt);cursor:pointer;align-items:center;justify-content:center;
  flex-direction:column;gap:5px;padding:0}
.ar-burger span{display:block;width:18px;height:2px;background:currentColor;border-radius:1px}

/* ── buttons ───────────────────────────────────────────────── */
.ar-btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;padding:11px 20px;
  border-radius:var(--ar-rad-sm);font-family:var(--ar-disp);font-weight:700;font-size:.92rem;
  line-height:1;cursor:pointer;border:1.5px solid var(--ar-acc);background:var(--ar-acc);color:var(--ar-acc-ink);
  text-decoration:none;white-space:nowrap;transition:transform .12s,background .15s}
.ar-btn:hover{background:var(--ar-acc-2);text-decoration:none;transform:translateY(-1px)}
.ar-btn--ghost{background:transparent;color:var(--ar-acc)}
.ar-btn--ghost:hover{background:rgba(47,139,255,.12)}
button.ar-btn{font:inherit;font-family:var(--ar-disp);font-weight:700}

/* ── hero ──────────────────────────────────────────────────── */
.ar-hero{padding-top:44px;text-align:center}
.ar-hero__col{max-width:820px;margin-left:auto;margin-right:auto}
.ar-hero__lead{color:var(--ar-txt-2);font-size:1.02rem;max-width:720px;margin:0 auto 22px}
.ar-hero__cta{display:flex;justify-content:center;flex-wrap:wrap;margin-bottom:28px}
.ar-hero__cta>*{margin:0 6px 8px}
.ar-hero__img{display:flex;justify-content:center}
.ar-hero__img img{max-width:900px;width:100%;border-radius:var(--ar-rad)}
.ar-hero--split{text-align:left}
.ar-hero--split .ar-hero__grid{display:flex;align-items:center}
.ar-hero--split .ar-hero__col{width:55%;margin-right:4%}
.ar-hero--split .ar-hero__img{width:41%}
.ar-hero--split .ar-hero__col{margin:0}
.ar-hero--split .ar-hero__lead{margin-left:0;margin-right:0}
.ar-hero--split .ar-hero__cta{justify-content:flex-start}
.ar-stores{display:flex;flex-wrap:wrap;justify-content:center}
.ar-stores>*{margin:0 6px 8px}

/* ── bonus banners ─────────────────────────────────────────── */
.ar-bonuses{display:flex;flex-wrap:wrap;margin:20px -8px 0;text-align:left}
.ar-bonus{width:48%;margin:8px 1%;position:relative;overflow:hidden;padding:22px 24px;border-radius:var(--ar-rad);
  background:linear-gradient(135deg,var(--ar-acc-2),var(--ar-acc));color:#fff;min-height:132px;
  background-size:cover;background-position:right center}
.ar-bonus__in{position:relative;z-index:1;max-width:70%}
.ar-bonus__type{display:inline-block;padding:3px 10px;border-radius:999px;background:rgba(255,255,255,.22);
  font-size:.74rem;font-weight:700;letter-spacing:.02em;margin:0 0 10px}
.ar-bonus__title{font-family:var(--ar-disp);font-size:1.25rem;font-weight:800;margin:0 0 6px;line-height:1.2}
.ar-bonus__text{margin:0;font-size:.9rem;opacity:.92}
.ar-bonus__cta{margin-top:14px}
.ar-bonus__cta .ar-btn{background:#fff;color:var(--ar-acc-2);border-color:#fff}

/* ── link cards (categories row) ───────────────────────────── */
.ar-cards{display:flex;flex-wrap:wrap;list-style:none;margin:0 -7px;padding:0}
.ar-card{display:flex;width:23%;margin:7px 1%}
.ar-card__link{flex:1 1 auto;display:flex;align-items:center;padding:16px 18px;border-radius:var(--ar-rad);
  background:var(--ar-surf);border:1.5px solid var(--ar-acc);color:var(--ar-txt);font-weight:700;
  font-family:var(--ar-disp);transition:background .15s,transform .12s}
.ar-card__link:hover{background:var(--ar-surf-2);text-decoration:none;transform:translateY(-2px)}
.ar-card__link img{width:36px;height:36px;object-fit:contain;flex:none;margin-right:14px}
.ar-card__link::before{content:"";width:36px;height:36px;border-radius:10px;flex:none;margin-right:14px;
  background:radial-gradient(circle at 30% 30%,rgba(47,139,255,.55),rgba(47,139,255,.12));
  border:1px solid rgba(47,139,255,.4)}
.ar-card__link:has(img)::before{display:none}
.ar-card__link::after{content:"";margin-left:auto;width:8px;height:8px;border-right:2px solid var(--ar-acc);
  border-top:2px solid var(--ar-acc);transform:rotate(45deg);flex:none}

/* ── contents ──────────────────────────────────────────────── */
.ar-toc{background:var(--ar-surf);border:1px solid var(--ar-line);border-radius:var(--ar-rad);padding:18px 22px}
.ar-toc__t{display:flex;align-items:center;justify-content:space-between;cursor:pointer;margin:0;
  font-size:1.05rem;list-style:none;user-select:none}
.ar-toc__t::after{content:"";width:9px;height:9px;border-right:2px solid var(--ar-txt-2);
  border-bottom:2px solid var(--ar-txt-2);transform:rotate(45deg);transition:transform .15s}
.ar-toc.is-closed .ar-toc__t::after{transform:rotate(-135deg)}
.ar-toc.is-closed .ar-toc__list{display:none}
.ar-toc__list{margin:14px 0 0;padding:0;list-style:none;display:flex;flex-wrap:wrap;counter-reset:toc}
.ar-toc__list li{width:31.33%;margin:4px 1%;counter-increment:toc;display:flex;align-items:baseline;font-size:.93rem}
.ar-toc__list li a{margin-left:10px}
.ar-toc__list li::before{content:counter(toc);flex:none;width:22px;height:22px;border-radius:50%;
  background:var(--ar-acc);color:var(--ar-acc-ink);font-size:.72rem;font-weight:800;
  display:inline-flex;align-items:center;justify-content:center;transform:translateY(3px)}
.ar-toc__list a{color:var(--ar-txt)}

/* ── content blocks ────────────────────────────────────────── */
main>section>p,main>section>ul,main>section>ol,main>section>blockquote{max-width:100%}
.ar-list{list-style:none;margin:0 0 1.1em;padding:0}
.ar-list li{position:relative;padding-left:30px;margin:0 0 8px}
.ar-list li::before{content:"";position:absolute;left:0;top:4px;width:18px;height:18px;border-radius:50%;
  background:var(--ar-acc)}
.ar-list li::after{content:"";position:absolute;left:5px;top:8px;width:7px;height:4px;
  border-left:2.2px solid #fff;border-bottom:2.2px solid #fff;transform:rotate(-45deg)}
.ar-steps{counter-reset:st;list-style:none;margin:0 0 1.1em;padding:0}
.ar-steps li{counter-increment:st;position:relative;padding-left:40px;margin:0 0 10px}
.ar-steps li::before{content:counter(st);position:absolute;left:0;top:0;width:28px;height:28px;border-radius:8px;
  background:var(--ar-surf-2);border:1px solid var(--ar-line);color:var(--ar-acc);font-weight:800;font-size:.85rem;
  display:inline-flex;align-items:center;justify-content:center}
.ar-callout{margin:0 0 1.2em;padding:16px 20px;border-radius:var(--ar-rad-sm);background:var(--ar-surf);
  border-left:4px solid var(--ar-acc);color:var(--ar-txt)}
.ar-callout b{color:var(--ar-acc)}

/* ── tables ────────────────────────────────────────────────── */
.ar-tw{overflow-x:auto;-webkit-overflow-scrolling:touch;margin:0 0 1.2em;border-radius:var(--ar-rad-sm);
  border:1px solid var(--ar-line)}
.ar-tbl{width:100%;min-width:480px;border-collapse:collapse;font-size:.93rem}
.ar-tbl th,.ar-tbl td{overflow-wrap:normal;min-width:120px;padding:12px 16px;text-align:left;vertical-align:top}
.ar-tbl thead th{white-space:nowrap;background:var(--ar-surf-2);color:var(--ar-acc);font-family:var(--ar-disp);font-weight:700;font-size:.85rem;
  letter-spacing:.02em;text-transform:uppercase}
.ar-tbl tbody tr{border-top:1px solid var(--ar-line)}
.ar-tbl tbody tr:nth-child(even){background:rgba(255,255,255,.025)}
.ar-tbl tbody th{font-weight:700;color:var(--ar-txt);width:34%}

/* ── cards (top lists) ─────────────────────────────────────── */
.ar-grid{display:flex;flex-wrap:wrap;margin:0 -7px 1.2em}
.ar-tile{width:31.33%;margin:7px 1%;padding:18px;border-radius:var(--ar-rad);background:var(--ar-surf);border:1px solid var(--ar-line)}
.ar-tile h3{margin-bottom:6px}
.ar-tile p{margin:0;color:var(--ar-txt-2);font-size:.92rem}

/* ── screenshots ───────────────────────────────────────────── */
.ar-shots{display:flex;flex-wrap:wrap;margin:0 -8px}
.ar-shot{width:31.33%;margin:8px 1%;border-radius:var(--ar-rad);overflow:hidden;background:var(--ar-surf);border:1px solid var(--ar-line)}
.ar-shot img{width:100%;aspect-ratio:9/16;object-fit:cover}
.ar-shot figcaption{padding:10px 12px;font-size:.85rem;color:var(--ar-txt-2);text-align:center}

/* ── FAQ ───────────────────────────────────────────────────── */
.ar-faq{display:flex;flex-wrap:wrap;align-items:flex-start;margin:0 -10px}
.ar-faq__i{width:48%;margin:6px 1%;border-radius:var(--ar-rad-sm);background:var(--ar-surf);border:1px solid var(--ar-line);padding:0 18px}
.ar-faq__i[open]{border-color:var(--ar-acc)}
.ar-faq__i summary{list-style:none;cursor:pointer;position:relative;padding:16px 36px 16px 38px;display:block;
  font-family:var(--ar-disp);font-weight:700}
.ar-faq__i summary::-webkit-details-marker{display:none}
.ar-faq__i summary::before{content:"?";position:absolute;left:0;top:17px;width:24px;height:24px;border-radius:50%;
  background:var(--ar-acc);color:var(--ar-acc-ink);font-size:.8rem;font-weight:800;line-height:24px;text-align:center}
.ar-faq__i summary::after{content:"";position:absolute;right:6px;top:22px;width:8px;height:8px;
  border-right:2px solid var(--ar-txt-2);border-bottom:2px solid var(--ar-txt-2);transform:rotate(45deg);transition:transform .15s}
.ar-faq__i[open] summary::after{transform:rotate(-135deg)}
.ar-faq__i>*:not(summary){padding-bottom:16px;color:var(--ar-txt-2)}

/* ── author ────────────────────────────────────────────────── */
.ar-author{position:relative;padding:20px 22px 20px 96px;min-height:96px;
  border-radius:var(--ar-rad);background:var(--ar-surf);border:1px solid var(--ar-line)}
.ar-author::before{content:"";position:absolute;left:22px;top:20px;width:56px;height:56px;border-radius:50%;
  background:linear-gradient(135deg,var(--ar-acc),var(--ar-surf-2));border:2px solid var(--ar-line)}
.ar-author h2{font-size:1rem;margin-bottom:8px}
.ar-author h2::after{display:none}
.ar-author p{margin:0 0 6px;color:var(--ar-txt-2);font-size:.93rem}

/* ── footer ────────────────────────────────────────────────── */
/* Three bands, which is how the renderer writes it: logo, menu, copyright. */
.ar-ftr{margin-top:56px;padding:36px 0 28px;background:var(--ar-bg-2);border-top:1px solid var(--ar-line)}
.ar-ftr>*{max-width:var(--ar-max);margin-left:auto;margin-right:auto;padding-left:var(--ar-pad);padding-right:var(--ar-pad)}
.ar-ftr__top img{height:28px;width:auto;opacity:.9}
.ar-ftr__block{margin-top:18px}
.ar-ftr__nav ul{list-style:none;margin:0 -11px;padding:0;display:flex;flex-wrap:wrap}
.ar-ftr__nav li{margin:4px 11px}
.ar-ftr__nav a{color:var(--ar-txt-2);font-size:.92rem}
.ar-ftr__nav a:hover{color:var(--ar-txt)}
.ar-ftr__copy{margin:22px auto 0;padding-top:18px;border-top:1px solid var(--ar-line);
  color:var(--ar-txt-2);font-size:.82rem}

/* ── responsive ────────────────────────────────────────────── */
@media(max-width:960px){
  :root{--ar-pad:20px}
  .ar-card{width:48%}
  .ar-tile{width:48%}
  .ar-hero--split .ar-hero__grid{display:block}
  .ar-hero--split .ar-hero__col,.ar-hero--split .ar-hero__img{width:100%;margin:0 0 20px}
  .ar-toc__list li{width:48%}
  .ar-faq__i{width:98%}
  .ar-shot{width:48%}
}
@media(max-width:840px){
  .ar-burger{display:inline-flex}
  .ar-nav{display:none;order:20;width:100%;margin:8px 0 0}
  .ar-hdr.is-open .ar-nav{display:block}
  .ar-menu{flex-direction:column;gap:2px}
  .ar-menu>li>a{padding:11px 12px}
  .ar-sub{position:static;display:block;box-shadow:none;border:0;background:transparent;padding:0 0 0 14px;margin:0}
}
@media(max-width:560px){
  :root{--ar-pad:16px}
  .ar-bonus{width:98%}
  .ar-card{width:98%}
  .ar-tile{width:98%}
  .ar-btns{order:30;width:100%;margin-left:0}
  .ar-btns>*{flex:1 1 0;min-width:0}
  .ar-toc__list li{width:98%}
  .ar-shot{width:98%}
  .ar-bonus__in{max-width:100%}
  .ar-tbl{min-width:420px}
}
@media(prefers-reduced-motion:reduce){*{transition:none!important;scroll-behavior:auto}}

.listing__item-label::after, .listing__item-label::before {
    width: 0;
    height: 0;
    top: -1px;
    border-bottom: 16px solid #cba41a;
    content: ""
}

.listing {
    margin-top: 2rem;
    width: 100%;
    padding-left: 0;
}

.listing__item {
    position: relative;
    display: grid;
    grid-template-columns:minmax(0, 433px) minmax(0, 394px) minmax(0, 220px);
    align-items: center;
    column-gap: 1.4117647059rem;
    row-gap: .9411764706rem;
    padding: 20px;
    border-bottom: 1px solid #fff;
    background: transparent;
    border-radius: 8px;
	margin-bottom: 16px
}

.listing__item.open .listing__item-advanced-info {
    display: flex
}

.listing__item.open .listing__item-more-toggle::after {
    transform: rotate(180deg)
}

.listing__item-label {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 20px;
    border-radius: 0 0 4px 4px;
    background: linear-gradient(92deg, #cba41a 0, #ffe99d 21.46%, rgba(240, 208, 96, .82) 44%, #ffe793 65%, #d9ad10 100%);
    color: var(--Text, #3d3d3d);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px
}

.listing__item-bonus, .listing__item-info {
    padding-right: 1.4117647059rem;
    border-right: 1px solid rgba(0, 0, 0, .05)
}

.listing__item-bonus-part img {
    width: 1.4117647059rem;
    height: 1.4117647059rem;
    flex-shrink: 0;
    object-fit: contain;
}

.listing__item-bonus-part-title {
    font-size: 16px;
    font-weight: 700;
}

.listing__item-bonus-part p {
    margin-top: 0;
    color: #fff;
    font-size: 14px;
    font-style: normal;
    line-height: 1.4117647059rem;
}

.listing__item-bonus-part {
    display: flex;
    align-items: center;
    font-size: 10px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: .4705882353rem;
}

.listing__item-label::before {
    position: absolute;
    left: -11px;
    border-left: 12px solid transparent;
    border-right: 0 solid transparent
}

.listing__item-label::after {
    position: absolute;
    right: -11px;
    border-right: 12px solid transparent;
    border-left: 0 solid transparent
}

.listing__item-info {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-left: 2.3529411765rem
}

.listing__item-info-num {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 20px;
    background: var(--green-highlight, #12a35f);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 900;
    line-height: 20px
}

.listing__item-info > img {
    max-width: 4.9411764706rem;
    max-height: 2.7058823529rem;
    width: 100%;
    height: 100%;
    object-fit: contain
}

.listing__item-info-name {
    color: #fff;
    font-size: 1.0588235294rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2941176471rem
}

.listing__item-info-rating {
    --percent: calc(var(--rating) / 10 * 100%);
    display: inline-flex;
    gap: 2px;
    align-items: center;
    margin-top: .2352941176rem;
    color: var(--green-highlight, #12a35f);
    font-size: .8235294118rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.1764705882rem
}

.listing__item-info-rating span {
    color: var(--Subtext, #888);
    font-weight: 500
}

.listing__item-info-rating::before {
    margin-right: .2941176471rem;
    font-size: 1.1176470588rem;
    content: "★★★★★★★★★★ ";
    background: -webkit-gradient(linear, left top, right top, from(var(--star-background-review)), to(var(--star-color)));
    background: linear-gradient(90deg, var(--star-background-review) var(--percent), var(--star-color) var(--percent));
    -webkit-background-clip: text
}

.listing__item-bonus {
    height: 100%;
    display: flex;
    align-items: center;
    gap: .4705882353rem;
    color: var(--Heading, #222);
    font-size: .9411764706rem;
    font-style: normal;
    line-height: 1.4117647059rem
}

.listing__item-advanced-info-item, .listing__item-advanced-info-pros-list li, .listing__item-advanced-info-sections-list li {
    font-size: .8235294118rem;
    line-height: 1.1764705882rem;
    font-style: normal
}

.listing__item-advanced-info .brand-review__bonuses-part::after {
    content: none;
}

.listing__deposit.listing__item-advanced-info-sections {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.listing__item-advanced-info .listing__item-advanced-info-item.listing__item-advanced-info-sections:first-child {
    padding-left: 0;
    content: none;
}

.listing__item-advanced-info .brand-review__bonuses-part {
    display: grid;
    /*flex: none;*/
    grid-template-columns: minmax(0, 40px) minmax(0, 190px);
}

.listing__item-bonus > img {
    width: 1.4117647059rem;
    height: 1.4117647059rem;
    flex-shrink: 0;
    object-fit: contain;
}

.listing__item-buttons {
    text-align: right
}

.listing__item-buttons .btn {
    margin-top: 0;
    width: 100%
}

.listing__item-buttons .btn--white {
    margin-top: 10px
}

.listing__item-advanced-info {
    display: none;
    grid-column: 1/-1;
    padding: .7058823529rem 0;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.1764705882rem
}

.listing__item-advanced-info-item {
    flex: 1;
    max-width: 249px;
    color: var(--Heading, #222);
    font-weight: 700;
    display: flex;
    flex-direction: column;
    gap: .4705882353rem;
    align-items: flex-start
}

.listing__item-advanced-info-promocode {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: .5882352941rem
}

.listing__item-advanced-info-promocode .promocode__input {
    max-width: 8.4705882353rem;
    margin-top: 0;
    display: inline-flex;
    width: unset;
    padding: .5882352941rem;
    border-radius: .5882352941rem;
    border: 1px dashed var(--Casino-light-theme-Primary, #0064fb)
}

.listing__item-advanced-info-promocode .promocode__input input {
    max-width: 5.5882352941rem;
    padding: 0;
    color: var(--Primary, #0064e6);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px
}

.listing__item-advanced-info-promocode .promocode__copy-btn {
    max-height: 1.6470588235rem;
    max-width: 1.6470588235rem;
    height: 100%;
    width: 100%;
    background: 0 0;
    transition: .2s
}

.listing__item-advanced-info-promocode .promocode__copy-btn svg {
    width: 1.6470588235rem;
    height: 1.6470588235rem
}

.listing__item-advanced-info-promocode .btn {
    margin-top: 0
}

.listing__item-advanced-info-sections, .listing__item-advanced-info-pros {
    /*max-width: 269px;*/
    max-width: 100%;
    padding-left: 20px;
    border-left: 1px solid rgba(0, 0, 0, .03)
}

.listing__item-advanced-info-pros {
    max-width: 100%;
}

.listing__item-advanced-info-sections-list {
    display: flex;
    align-items: flex-start;
    gap: .4705882353rem;
    flex-wrap: wrap;
    padding: 0
}

.listing__item-advanced-info-sections-list li {
    display: inline-block;
    padding: .2352941176rem .4705882353rem;
    border-radius: 3px;
    border: 1px solid var(--secondary-20, rgba(5, 194, 117, .2));
    list-style: none;
    color: var(--Text, #3d3d3d);
    font-weight: 500
}

.listing__item-advanced-info-pros-list {
    display: flex;
    flex-direction: column;
    gap: .4705882353rem;
    padding: 0
}

.listing__item-advanced-info-pros-list li {
    display: flex;
    align-items: center;
    gap: .2352941176rem;
    list-style: none;
    color: var(--Text, #3d3d3d);
    font-weight: 500
}

.listing__item-advanced-info-pros-list li::before {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Crect x='5' y='2.00003' width='2' height='8' rx='0.5' fill='%2312A35F'/%3E%3Crect x='10' y='5' width='2' height='8' rx='0.5' transform='rotate(90 10 5)' fill='%2312A35F'/%3E%3C/svg%3E")
}

.listing__item-advanced-info-games {
    display: flex;
    flex-direction: column;
    gap: 1.8823529412rem
}

.listing__item-advanced-info-games-item {
    width: 100%;
    position: relative;
    color: var(--Text, #3d3d3d);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px
}

.listing__deposit-part-payments {
    margin-top: 8px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 4px;
    padding: 0;
    list-style: none;
}

.listing__deposit-part-payments img {
    max-width: 45px;
}

.listing__deposit.listing__section {
    display: flex;
    align-items: flex-start;
    gap: 70px;
    justify-content: flex-start;
    width: 100%;
    flex: 1;
}

.listing__deposit-part-title {
    margin: 0;
    color: var(--Heading, #222);
    font-weight: 700;
    font-size: 14px;
}

.listing__item-advanced-info-games-item:first-child::after {
    content: "";
    position: absolute;
    bottom: -16px;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, .03)
}


@media (max-width: 930px) {
    .listing__item-advanced-info {
        flex-direction: column;
        gap: .5882352941rem
    }

    .listing__item-advanced-info-item {
        max-width: unset;
        width: 100%;
        padding-top: 10px;
        border-top: 1px solid rgba(0, 0, 0, .03)
    }

    .listing__item-advanced-info-pros, .listing__item-advanced-info-sections {
        max-width: unset;
        width: 100%;
        border-right: none;
        border-left: 0;
        padding: 10px 0 0 0;

    }


    .listing__item-advanced-info-games {
        flex-direction: row;
        position: relative
    }

    .listing__item-advanced-info-games::before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 1px;
        height: 100%;
        background: rgba(0, 0, 0, .03)
    }

    .listing__item-advanced-info-games-item:first-child::after {
        display: none
    }
}

.listing__item-advanced-info-games-item span {
    margin-top: 8px;
    display: block;
    color: var(--Heading, #222);
    font-weight: 700
}

.links-list__link, .listing__item-more-toggle {
    color: var(--Primary, #0064e6);
    font-style: normal
}

.listing__item-more {
    grid-column: 1/-1;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: .5882352941rem;
    flex-wrap: wrap;
}

.listing__item-more-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .4705882353rem;
    font-size: .8235294118rem;
    font-weight: 500;
    line-height: 1.1764705882rem;
    cursor: pointer
}

@media (max-width: 1200px) {
    .listing__item-bonus, .listing__item-info {
        border-right: none;
        padding-right: 0
    }

    .listing__item {
        grid-template-columns:minmax(0, 100%)
    }

    .listing__item-advanced-info .brand-review__bonuses-part {
        border-bottom: 0;
    }

    .listing__item:not(:last-child) {
        margin-bottom: 1rem
    }

    .listing__item-info {
        flex-direction: row-reverse
    }

    .listing__item-info-wrapper {
        flex: 1 1 auto
    }

    .listing__item-buttons {
        display: flex;
        flex-direction: row;
        gap: .4705882353rem;
        justify-content: flex-end;
    }

    .listing__item-buttons .btn {
        width: auto;
    }

    .listing__item-buttons .btn--white {
        margin: 0
    }
}

@media (max-width: 576px) {
    .listing__item {
        padding: 40px 16px 16px;
        row-gap: 12px
    }

    .listing__item.open .listing__item-more {
        display: contents
    }

    .listing__item.open .listing__item-info {
        order: 1
    }

    .listing__item.open .listing__item-bonus {
        order: 2
    }

    .listing__item.open .listing__item-buttons {
        order: 3
    }

    .listing__item.open .listing__item-more-payments {
        order: 4;
        max-width: unset
    }

    .listing__item.open .listing__item-advanced-info {
        order: 5
    }

    .listing__item.open .listing__item-more-toggle {
        order: 6
    }

    .listing__item-info-num {
        width: 28px;
        height: 28px;
        font-size: 15px;
        top: 0;
        transform: none
    }

    .listing__item-bonus {
        font-size: .8235294118rem
    }

    .listing__item-bonus {
        line-height: 1.1764705882rem
    }

    .listing__item-advanced-info-promocode .promocode__input {
        padding: .4705882353rem
    }

    .listing__item-more {
        /*flex-direction: row-reverse*/
    }

    .listing__item-buttons {
        width: 100%;
    }

    .listing__item-buttons .btn {
        width: 100%;;
    }

    .listing__item-more-toggle {
        min-width: 7.0588235294rem
    }

    .listing__item-more-toggle::after {
        transform: scale(.9)
    }

    .listing__item-more-toggle {
        min-width: auto;
    }
}

@media (max-width: 560px) {
    .listing__item-info-rating, .listing__item-info-rating::before {
        font-size: 12px
    }

    .listing__item-label {
        width: 70%;
        text-align: center
    }

    .listing__item-info {
        gap: 10px;
        flex-direction: column-reverse !important;
        justify-content: flex-end;
        align-items: flex-start
    }

    .listing__item-info.listing__item-info--no-number {
        flex-direction: row-reverse !important
    }

    .listing__item-info > img {
        max-width: 100%;
        max-height: max-content;
        width: 100%;
        height: 100%;
        object-fit: contain;
        margin-left: -20px;
    }

}
