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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    font-size: 16px
}

body {
    font-family: 'PT Sans', Arial, sans-serif;
    background-color: #323234;
    color: #e8e8e8;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden
}

img, video, iframe {
    max-width: 100%;
    height: auto;
    display: block
}

a {
    color: #00fbc8;
    text-decoration: none;
    transition: color .2s ease, opacity .2s ease
}

a:hover {
    opacity: .85
}

ul, ol {
    list-style: none
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit
}

input, textarea, select {
    font-family: inherit
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}

.page-wrap {
    display: flex;
    flex-direction: column;
    min-height: 100vh
}

main {
    flex: 1
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: .9rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform .15s ease, box-shadow .15s ease, opacity .2s ease;
    white-space: nowrap;
    border: 2px solid transparent
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .35)
}

.btn:active {
    transform: translateY(0)
}

.btn--cyan {
    background: #00fbc8;
    color: #0d0d0d;
    border-color: #00fbc8
}

.btn--cyan:hover {
    background: #00e6b5;
    color: #0d0d0d;
    opacity: 1
}

.btn--red {
    background: #ff2e09;
    color: #fff;
    border-color: #ff2e09
}

.btn--red:hover {
    background: #e02607;
    opacity: 1
}

.btn--ghost {
    background: transparent;
    color: #e8e8e8;
    border-color: rgba(232, 232, 232, .35)
}

.btn--ghost:hover {
    border-color: #00fbc8;
    color: #00fbc8;
    opacity: 1
}

.btn--sm {
    padding: 7px 14px;
    font-size: .82rem;
    border-radius: 6px
}

.btn--md {
    padding: 11px 22px;
    font-size: .93rem
}

.btn--lg {
    padding: 14px 28px;
    font-size: 1rem;
    width: 100%
}

.hdr-root {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #000;
    border-bottom: 1px solid rgba(0, 251, 200, .12);
    box-shadow: 0 2px 12px rgba(0, 0, 0, .5)
}

.hdr-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px 0;
    min-height: 64px
}

.hdr-logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0
}

.hdr-logo img {
    height: 44px;
    width: auto;
    object-fit: contain
}

.hdr-reviews-count {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: .8rem;
    color: #a0a0a0;
    white-space: nowrap
}

.hdr-cnt-num {
    color: #00fbc8;
    font-weight: 700
}

.hdr-nav {
    flex: 1
}

.hdr-nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap
}

.hdr-nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    border-radius: 6px;
    color: #d0d0d0;
    font-size: .88rem;
    transition: background .2s, color .2s;
    white-space: nowrap
}

.hdr-nav-link:hover, .hdr-nav-link:focus {
    background: rgba(0, 251, 200, .1);
    color: #00fbc8
}

.hdr-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0
}

.hdr-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border-radius: 6px;
    transition: background .2s
}

.hdr-burger:hover {
    background: rgba(255, 255, 255, .08)
}

.hdr-burger-bar {
    width: 22px;
    height: 2px;
    background: #e8e8e8;
    border-radius: 2px;
    transition: transform .25s ease, opacity .2s ease
}

.hdr-burger.is-open .hdr-burger-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
}

.hdr-burger.is-open .hdr-burger-bar:nth-child(2) {
    opacity: 0
}

.hdr-burger.is-open .hdr-burger-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

.hero-section {
    position: relative;
    overflow: hidden;
    margin-bottom: 32px
}

.hero-banner-wrap {
    position: relative;
    height: 500px;
    overflow: hidden
}

.hero-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .35) 0%, rgba(50, 50, 52, .92) 100%)
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px 0
}

.hero-tile {
    background: rgba(15, 15, 15, .9);
    border: 1px solid rgba(0, 251, 200, .2);
    border-radius: 16px;
    padding: 24px;
    max-width: 440px;
    backdrop-filter: blur(8px);
    flex-shrink: 0;
    animation: fadeSlideUp .5s ease forwards
}

.hero-tile-logo img {
    width: 72px;
    height: 72px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid rgba(0, 251, 200, .3)
}

.hero-tile-body {
    margin-top: 16px
}

.hero-tile-name {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px
}

.hero-tile-score {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    flex-wrap: wrap
}

.hs-score-wrap {
    display: flex;
    align-items: baseline;
    gap: 2px
}

.hs-score-num {
    font-size: 2rem;
    font-weight: 700;
    color: #00fbc8
}

.hs-score-max {
    font-size: .9rem;
    color: #a0a0a0
}

.hs-stars {
    display: flex;
    gap: 2px
}

.hs-star {
    font-size: 1.2rem;
    color: #3a3a3c
}

.hs-star.hs-star-on {
    color: #f5a623
}

.hs-star.hs-star-half {
    color: #f5a623;
    opacity: .5
}

.hs-reviews-count {
    font-size: .82rem;
    color: #a0a0a0
}

.hero-tile-bonus {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 46, 9, .15);
    border: 1px solid rgba(255, 46, 9, .35);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: .88rem;
    color: #ff7055;
    margin-bottom: 16px;
    font-weight: 600
}

.hero-tile-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.hero-ratings-breakdown {
    background: rgba(15, 15, 15, .85);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 16px;
    padding: 20px 24px;
    max-width: 300px;
    backdrop-filter: blur(8px);
    animation: fadeSlideUp .55s .1s ease both
}

.hrb-title {
    font-size: .88rem;
    font-weight: 700;
    color: #a0a0a0;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: .05em
}

.hrb-list {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.hrb-row {
    display: flex;
    align-items: center;
    gap: 10px
}

.hrb-label {
    font-size: .8rem;
    color: #c0c0c0;
    width: 36px;
    flex-shrink: 0
}

.hrb-bar-wrap {
    flex: 1;
    background: rgba(255, 255, 255, .08);
    border-radius: 4px;
    height: 8px;
    overflow: hidden
}

.hrb-bar {
    height: 100%;
    background: #00fbc8;
    border-radius: 4px;
    transition: width .6s ease
}

.hrb-count {
    font-size: .8rem;
    color: #a0a0a0;
    width: 16px;
    text-align: right;
    flex-shrink: 0
}

.section-wrap {
    padding: 40px 0
}

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

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff
}

.ci-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 24px;
    align-items: start
}

.ci-info-card, .ci-pros-cons {
    background: #1e1e20;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 14px;
    padding: 24px
}

.ci-info-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap
}

.ci-info-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff
}

.ci-modal-btn {
    padding: 7px 14px;
    background: rgba(0, 251, 200, .12);
    color: #00fbc8;
    border: 1px solid rgba(0, 251, 200, .3);
    border-radius: 6px;
    font-size: .82rem;
    font-weight: 600;
    transition: background .2s, border-color .2s;
    white-space: nowrap
}

.ci-modal-btn:hover {
    background: rgba(0, 251, 200, .22);
    border-color: #00fbc8
}

.ci-params-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 10px;
    margin-bottom: 18px
}

.ci-param {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, .04);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, .07)
}

.ci-param-key {
    font-size: .75rem;
    color: #808080;
    text-transform: uppercase;
    letter-spacing: .04em
}

.ci-param-val {
    font-size: .88rem;
    color: #e8e8e8;
    font-weight: 600
}

.ci-providers {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 4px
}

.ci-provider-badge {
    padding: 4px 10px;
    background: rgba(0, 251, 200, .1);
    color: #00fbc8;
    border: 1px solid rgba(0, 251, 200, .25);
    border-radius: 20px;
    font-size: .75rem;
    font-weight: 600
}

.ci-pc-heading {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 12px
}

.ci-pros-heading {
    color: #00fbc8
}

.ci-cons-heading {
    color: #ff2e09
}

.ci-pros-list, .ci-cons-list {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.ci-pros-list li, .ci-cons-list li {
    font-size: .88rem;
    padding-left: 16px;
    position: relative;
    line-height: 1.5;
    color: #d0d0d0
}

.ci-pros-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00fbc8;
    font-weight: 700
}

.ci-cons-list li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: #ff2e09;
    font-weight: 700
}

.ci-pros-cons {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.ci-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .75);
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    backdrop-filter: blur(4px)
}

.ci-modal-overlay[hidden] {
    display: none
}

.ci-modal-box {
    background: #1e1e20;
    border: 1px solid rgba(0, 251, 200, .2);
    border-radius: 16px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    animation: fadeScaleIn .25s ease
}

.ci-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    position: sticky;
    top: 0;
    background: #1e1e20;
    z-index: 1
}

.ci-modal-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff
}

.ci-modal-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    color: #a0a0a0;
    transition: background .2s, color .2s
}

.ci-modal-close:hover {
    background: rgba(255, 255, 255, .08);
    color: #fff
}

.ci-modal-body {
    padding: 24px
}

.ci-modal-table {
    width: 100%;
    border-collapse: collapse
}

.ci-modal-table th, .ci-modal-table td {
    padding: 10px 14px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    font-size: .88rem
}

.ci-modal-table th {
    color: #a0a0a0;
    font-weight: 600;
    width: 38%;
    white-space: nowrap;
    font-size: .8rem;
    text-transform: uppercase
}

.ci-modal-table td {
    color: #e8e8e8
}

.ci-modal-table tr:last-child th, .ci-modal-table tr:last-child td {
    border-bottom: none
}

.toc-wrap {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.toc-title {
    font-size: .78rem;
    font-weight: 700;
    color: #808080;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 10px
}

.toc-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.toc-tab {
    padding: 7px 16px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 20px;
    font-size: .85rem;
    color: #c0c0c0;
    transition: background .2s, border-color .2s, color .2s
}

.toc-tab:hover, .toc-tab.is-active {
    background: rgba(0, 251, 200, .15);
    border-color: rgba(0, 251, 200, .4);
    color: #00fbc8
}

.lr-section-wrap {
    padding: 40px 0
}

.lr-bonus-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: linear-gradient(135deg, rgba(255, 46, 9, .18) 0%, rgba(255, 100, 50, .12) 100%);
    border: 1px solid rgba(255, 46, 9, .35);
    border-radius: 12px;
    padding: 18px 24px;
    margin-bottom: 28px;
    flex-wrap: wrap
}

.lr-bonus-text {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #ffcab8;
    font-size: .9rem;
    flex: 1
}

.lr-bonus-text strong {
    color: #ff7055
}

.lr-form-card {
    background: #1e1e20;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 14px;
    padding: 28px
}

.lr-form-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px
}

.lr-form {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.lr-form-row {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.lr-label {
    font-size: .88rem;
    font-weight: 600;
    color: #c0c0c0
}

.lr-label span {
    color: #ff2e09
}

.lr-input, .lr-textarea {
    padding: 11px 14px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    color: #e8e8e8;
    font-size: .9rem;
    transition: border-color .2s, box-shadow .2s;
    outline: none
}

.lr-input::placeholder, .lr-textarea::placeholder {
    color: #606060
}

.lr-input:focus, .lr-textarea:focus {
    border-color: rgba(0, 251, 200, .5);
    box-shadow: 0 0 0 3px rgba(0, 251, 200, .1)
}

.lr-textarea {
    resize: vertical;
    min-height: 120px
}

.lr-hint {
    font-size: .78rem;
    color: #707070
}

.lr-ratings-grid {
    display: grid;
    grid-template-columns:repeat(2, 1fr);
    gap: 14px
}

.lr-rating-item {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.lr-rating-label {
    font-size: .82rem;
    color: #a0a0a0
}

.lr-star-group {
    display: flex;
    gap: 4px
}

.lr-star-btn {
    font-size: 1.5rem;
    color: #3a3a3c;
    transition: color .15s, transform .1s;
    padding: 0 2px;
    line-height: 1
}

.lr-star-btn.is-active, .lr-star-btn:hover {
    color: #f5a623;
    transform: scale(1.15)
}

.lr-submit-btn {
    justify-content: center
}

.lr-success-msg {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(0, 251, 200, .12);
    border: 1px solid rgba(0, 251, 200, .35);
    border-radius: 10px;
    color: #00fbc8;
    font-weight: 600;
    margin-top: 16px
}

.lr-success-msg[hidden] {
    display: none
}

.rv-container {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.rv-sort-wrap {
    display: flex;
    align-items: center;
    gap: 8px
}

.rv-sort-select {
    padding: 7px 12px;
    background: #1e1e20;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 8px;
    color: #e8e8e8;
    font-size: .85rem;
    outline: none;
    cursor: pointer
}

.rv-sort-select:focus {
    border-color: rgba(0, 251, 200, .5)
}

.rv-card {
    background: #1e1e20;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 14px;
    padding: 24px;
    transition: border-color .25s, box-shadow .25s;
    animation: fadeSlideUp .4s ease forwards
}

.rv-card:hover {
    border-color: rgba(0, 251, 200, .25);
    box-shadow: 0 4px 24px rgba(0, 0, 0, .25)
}

.rv-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
    flex-wrap: wrap
}

.rv-author-block {
    display: flex;
    align-items: center;
    gap: 12px
}

.rv-avatar-wrap {
    flex-shrink: 0
}

.rv-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(0, 251, 200, .25)
}

.rv-avatar-placeholder {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #606060;
    flex-shrink: 0
}

.rv-meta {
    display: flex;
    flex-direction: column;
    gap: 3px
}

.rv-nickname {
    font-size: .95rem;
    font-weight: 700;
    color: #fff
}

.rv-country {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: .8rem;
    color: #a0a0a0
}

.rv-country img {
    border-radius: 2px;
    flex-shrink: 0
}

.rv-date {
    font-size: .78rem;
    color: #707070
}

.rv-rating-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    flex-shrink: 0
}

.rv-rating-summary {
    display: flex;
    align-items: center;
    gap: 8px
}

.rv-rating-num {
    font-size: 1.4rem;
    font-weight: 700;
    color: #00fbc8
}

.rv-stars {
    display: flex;
    gap: 2px
}

.rv-star {
    font-size: 1rem;
    color: #3a3a3c
}

.rv-star.rv-star-on {
    color: #f5a623
}

.rv-details-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 6px;
    color: #a0a0a0;
    font-size: .78rem;
    transition: background .2s, color .2s;
    white-space: nowrap
}

.rv-details-btn:hover {
    background: rgba(255, 255, 255, .1);
    color: #fff
}

.rv-details-btn[aria-expanded=true] svg {
    transform: rotate(180deg)
}

.rv-details-btn svg {
    transition: transform .2s
}

.rv-details-panel {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    min-width: 220px;
    padding: 12px;
    background: rgba(0, 0, 0, .2);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, .07)
}

.rv-details-panel[hidden] {
    display: none
}

.rv-param-row {
    display: flex;
    align-items: center;
    gap: 8px
}

.rv-param-label {
    font-size: .75rem;
    color: #a0a0a0;
    width: 120px;
    flex-shrink: 0
}

.rv-param-bar-wrap {
    flex: 1;
    background: rgba(255, 255, 255, .08);
    border-radius: 3px;
    height: 6px;
    overflow: hidden
}

.rv-param-bar {
    height: 100%;
    background: #00fbc8;
    border-radius: 3px;
    transition: width .5s ease
}

.rv-param-val {
    font-size: .75rem;
    color: #c0c0c0;
    width: 28px;
    text-align: right;
    flex-shrink: 0
}

.rv-source {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .78rem;
    color: #808080;
    margin-bottom: 8px;
    padding: 6px 10px;
    background: rgba(255, 255, 255, .03);
    border-radius: 6px;
    border: 1px dashed rgba(255, 255, 255, .1)
}

.rv-source-link {
    color: #00fbc8;
    border-bottom: 1px dotted rgba(0, 251, 200, .4)
}

.rv-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px
}

.rv-body {
    margin-bottom: 14px
}

.rv-text {
    color: #c8c8c8;
    font-size: .9rem;
    line-height: 1.65
}

.rv-text-collapsed {
    max-height: 5em;
    overflow: hidden;
    position: relative
}

.rv-text-collapsed::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2em;
    background: linear-gradient(transparent, #1e1e20)
}

.rv-expand-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 6px;
    padding: 5px 0;
    color: #00fbc8;
    font-size: .82rem;
    font-weight: 600;
    background: none;
    border: none;
    transition: opacity .2s
}

.rv-expand-btn:hover {
    opacity: .8
}

.rv-expand-btn[aria-expanded=true] svg {
    transform: rotate(180deg)
}

.rv-expand-btn svg {
    transition: transform .2s
}

.rv-pros-cons {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 14px;
    margin-bottom: 16px
}

.rv-pc-title {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .82rem;
    font-weight: 700;
    margin-bottom: 8px
}

.rv-pros-title {
    color: #00fbc8
}

.rv-cons-title {
    color: #ff2e09
}

.rv-pc-list {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.rv-pc-item {
    font-size: .82rem;
    color: #c0c0c0;
    padding: 5px 10px;
    border-radius: 6px;
    line-height: 1.4
}

.rv-pro-item {
    background: rgba(0, 251, 200, .07);
    border-left: 2px solid #00fbc8
}

.rv-con-item {
    background: rgba(255, 46, 9, .07);
    border-left: 2px solid #ff2e09
}

.rv-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, .07)
}

.rv-votes {
    display: flex;
    gap: 8px
}

.rv-vote-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 6px;
    color: #a0a0a0;
    font-size: .82rem;
    transition: background .2s, border-color .2s, color .2s
}

.rv-vote-btn:hover {
    background: rgba(255, 255, 255, .12);
    color: #fff
}

.rv-vote-btn.rv-like-btn.is-voted {
    border-color: rgba(0, 251, 200, .5);
    color: #00fbc8;
    background: rgba(0, 251, 200, .08)
}

.rv-vote-btn.rv-dislike-btn.is-voted {
    border-color: rgba(255, 46, 9, .5);
    color: #ff2e09;
    background: rgba(255, 46, 9, .08)
}

.rv-reply-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(0, 251, 200, .1);
    border: 1px solid rgba(0, 251, 200, .25);
    border-radius: 6px;
    color: #00fbc8;
    font-size: .82rem;
    font-weight: 600;
    transition: background .2s
}

.rv-reply-toggle:hover {
    background: rgba(0, 251, 200, .18)
}

.rv-reply-form {
    margin-top: 16px;
    padding: 16px;
    background: rgba(0, 0, 0, .2);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .08)
}

.rv-reply-form[hidden] {
    display: none
}

.rv-reply-textarea {
    width: 100%;
    padding: 10px 12px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    color: #e8e8e8;
    font-size: .88rem;
    outline: none;
    resize: vertical;
    min-height: 80px;
    transition: border-color .2s
}

.rv-reply-textarea:focus {
    border-color: rgba(0, 251, 200, .5)
}

.rv-reply-actions {
    display: flex;
    gap: 8px;
    margin-top: 10px
}

.faq-wrap {
    padding: 40px 0
}

.faq-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.faq-item {
    background: #1e1e20;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color .2s
}

.faq-item:has(.faq-question[aria-expanded=true]) {
    border-color: rgba(0, 251, 200, .25)
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 20px;
    text-align: left;
    color: #e8e8e8;
    font-size: .95rem;
    font-weight: 600;
    line-height: 1.4;
    transition: color .2s
}

.faq-question:hover {
    color: #00fbc8
}

.faq-question[aria-expanded=true] {
    color: #00fbc8
}

.faq-icon {
    flex-shrink: 0;
    transition: transform .25s ease
}

.faq-question[aria-expanded=true] .faq-icon {
    transform: rotate(180deg)
}

.faq-answer {
    padding: 0 20px 16px;
    color: #b8b8b8;
    font-size: .9rem;
    line-height: 1.65
}

.faq-answer[hidden] {
    display: none
}

.faq-answer p {
    margin-bottom: 0
}

.lr-bonus-mini {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: rgba(0, 251, 200, .07);
    border: 1px solid rgba(0, 251, 200, .2);
    border-radius: 12px;
    padding: 18px 24px;
    margin: 8px 0 40px;
    flex-wrap: wrap
}

.lrb-text {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #c0c0c0;
    font-size: .9rem;
    flex: 1
}

.cmp-wrap {
    padding: 40px 0
}

.cmp-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px
}

.cmp-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .09)
}

.cmp-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 560px;
    background: #1e1e20
}

.cmp-table th, .cmp-table td {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    text-align: left;
    font-size: .88rem
}

.cmp-table th {
    background: #181818;
    color: #a0a0a0;
    font-weight: 600;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .04em
}

.cmp-table td {
    color: #d0d0d0
}

.cmp-table tr:last-child th, .cmp-table tr:last-child td {
    border-bottom: none
}

.cmp-table tr:hover td {
    background: rgba(255, 255, 255, .025)
}

.cmp-th-casino {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.cmp-casino-name {
    color: #e8e8e8;
    font-weight: 700;
    font-size: .88rem
}

.cmp-casino-name.cmp-featured {
    color: #00fbc8
}

.cmp-stars {
    color: #f5a623;
    font-size: .9rem
}

.cmp-pin {
    color: #00fbc8 !important;
    font-weight: 600
}

.content-wrap {
    padding: 40px 0
}

.content-body {
    background: #1e1e20;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 14px;
    padding: 32px;
    margin-bottom: 28px
}

.content-body h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    margin: 24px 0 12px;
    line-height: 1.3
}

.content-body h2:first-child {
    margin-top: 0
}

.content-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #e0e0e0;
    margin: 20px 0 10px
}

.content-body h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #d0d0d0;
    margin: 18px 0 8px
}

.content-body p {
    font-size: .92rem;
    color: #b8b8b8;
    line-height: 1.7;
    margin-bottom: 14px
}

.content-body p:last-child {
    margin-bottom: 0
}

.content-body ul, .content-body ol {
    margin: 12px 0 16px 20px
}

.content-body ul {
    list-style: disc
}

.content-body ol {
    list-style: decimal
}

.content-body li {
    font-size: .9rem;
    color: #b8b8b8;
    line-height: 1.65;
    margin-bottom: 6px
}

.content-body strong {
    color: #e8e8e8;
    font-weight: 700
}

.content-body em {
    color: #c0c0c0;
    font-style: italic
}

.content-body a {
    color: #00fbc8;
    border-bottom: 1px dotted rgba(0, 251, 200, .4)
}

.content-body a:hover {
    border-bottom-style: solid
}

.content-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    overflow-x: auto;
    display: block
}

.content-body table th {
    background: rgba(0, 251, 200, .1);
    color: #00fbc8;
    padding: 10px 14px;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, .12);
    font-size: .85rem
}

.content-body table td {
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, .08);
    color: #c0c0c0;
    font-size: .85rem
}

.content-body blockquote {
    border-left: 3px solid #00fbc8;
    padding: 12px 18px;
    background: rgba(0, 251, 200, .06);
    border-radius: 0 8px 8px 0;
    margin: 16px 0;
    font-style: italic;
    color: #b0b0b0
}

.content-body hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, .1);
    margin: 24px 0
}

.content-body img {
    border-radius: 8px;
    margin: 12px 0
}

.author-block {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #1e1e20;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 14px;
    padding: 24px
}

.author-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid rgba(0, 251, 200, .3)
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1
}

.author-label {
    font-size: .75rem;
    font-weight: 700;
    color: #808080;
    text-transform: uppercase;
    letter-spacing: .05em
}

.author-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff
}

.author-bio {
    font-size: .85rem;
    color: #a0a0a0;
    line-height: 1.6;
    margin-top: 4px
}

.author-socials {
    display: flex;
    gap: 12px;
    margin-top: 8px
}

.author-social-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 6px;
    color: #c0c0c0;
    font-size: .8rem;
    transition: background .2s, border-color .2s, color .2s
}

.author-social-link:hover {
    background: rgba(0, 251, 200, .12);
    border-color: rgba(0, 251, 200, .3);
    color: #00fbc8
}

.ftr-root {
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, .08);
    margin-top: 20px
}

.ftr-inner {
    padding: 40px 0 24px
}

.ftr-top {
    display: grid;
    grid-template-columns:auto 1fr auto;
    gap: 32px;
    align-items: start;
    margin-bottom: 28px
}

.ftr-brand {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 200px
}

.ftr-logo img {
    height: 40px;
    width: auto;
    object-fit: contain
}

.ftr-tagline {
    font-size: .78rem;
    color: #606060;
    line-height: 1.5
}

.ftr-nav {
    display: flex;
    gap: 32px
}

.ftr-nav-col {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.ftr-nav-title {
    font-size: .75rem;
    font-weight: 700;
    color: #606060;
    text-transform: uppercase;
    letter-spacing: .05em
}

.ftr-nav-list {
    display: flex;
    flex-direction: column;
    gap: 7px
}

.ftr-nav-link {
    font-size: .85rem;
    color: #808080;
    transition: color .2s
}

.ftr-nav-link:hover {
    color: #00fbc8
}

.ftr-trust {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.ftr-trust-title {
    font-size: .75rem;
    font-weight: 700;
    color: #606060;
    text-transform: uppercase;
    letter-spacing: .05em
}

.ftr-trust-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 7px
}

.ftr-trust-badge {
    padding: 4px 10px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 4px;
    font-size: .72rem;
    color: #707070;
    font-weight: 600
}

.ftr-trust-link {
    text-decoration: none
}

.ftr-trust-link:hover .ftr-trust-badge {
    border-color: rgba(0, 251, 200, .3);
    color: #00fbc8
}

.ftr-payments {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, .07);
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    margin-bottom: 20px
}

.ftr-payments-title {
    font-size: .75rem;
    font-weight: 700;
    color: #606060;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 10px
}

.ftr-payments-list {
    display: flex;
    flex-wrap: wrap;
    gap: 7px
}

.ftr-pay-badge {
    padding: 4px 12px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 4px;
    font-size: .78rem;
    color: #808080;
    font-weight: 600
}

.ftr-bottom {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px
}

.ftr-legal {
    flex: 1
}

.ftr-copyright, .ftr-disclaimer, .ftr-age {
    font-size: .75rem;
    color: #505050;
    line-height: 1.6;
    margin-bottom: 6px
}

.ftr-age strong {
    color: #707070
}

.ftr-age-badge {
    flex-shrink: 0
}

.ftr-age-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 2px solid rgba(255, 255, 255, .15);
    border-radius: 8px;
    font-size: .82rem;
    font-weight: 700;
    color: #606060
}

.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 16px;
    background: #111;
    border-top: 1px solid rgba(0, 251, 200, .2);
    flex-wrap: wrap;
    animation: slideUp .4s .8s ease both
}

.sticky-widget.is-hidden {
    display: none
}

.sw-bonus-label {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .88rem;
    font-weight: 700;
    color: #00fbc8
}

.sw-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 22px;
    background: #ff2e09;
    color: #fff;
    border-radius: 8px;
    font-size: .9rem;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, transform .15s
}

.sw-cta-btn:hover {
    background: #e02607;
    transform: translateY(-1px)
}

.sw-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 6px;
    color: #707070;
    margin-left: auto;
    transition: background .2s, color .2s
}

.sw-close:hover {
    background: rgba(255, 255, 255, .08);
    color: #e8e8e8
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(16px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeScaleIn {
    from {
        opacity: 0;
        transform: scale(.96)
    }
    to {
        opacity: 1;
        transform: scale(1)
    }
}

@keyframes slideUp {
    from {
        transform: translateY(100%)
    }
    to {
        transform: translateY(0)
    }
}

.wp-hidden-elements {
    display: none !important
}

@media (max-width: 1024px) {
    .hdr-nav {
        display: none;
        position: fixed;
        inset: 64px 0 0;
        background: #000;
        z-index: 99;
        padding: 20px 16px;
        flex-direction: column;
        overflow-y: auto
    }

    .hdr-nav.is-open {
        display: flex
    }

    .hdr-nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 4px
    }

    .hdr-nav-link {
        padding: 12px 16px;
        font-size: .95rem;
        border-radius: 8px
    }

    .hdr-burger {
        display: flex
    }

    .ci-grid {
        grid-template-columns:1fr
    }

    .hero-banner-wrap {
        height: 380px
    }

    .hero-content {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-end;
        padding-bottom: 24px
    }

    .hero-tile {
        max-width: 100%
    }

    .hero-ratings-breakdown {
        max-width: 100%
    }

    .ftr-top {
        grid-template-columns:1fr 1fr;
        gap: 24px
    }
}

@media (max-width: 768px) {
    .hdr-inner {
        flex-wrap: wrap
    }

    .ci-params-grid {
        grid-template-columns:1fr
    }

    .rv-pros-cons {
        grid-template-columns:1fr
    }

    .lr-ratings-grid {
        grid-template-columns:1fr
    }

    .ftr-top {
        grid-template-columns:1fr;
        gap: 20px
    }

    .ftr-nav {
        flex-wrap: wrap;
        gap: 20px
    }

    .ftr-bottom {
        flex-direction: column
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start
    }

    .hero-tile-actions {
        flex-direction: column
    }

    .hero-tile-actions .btn {
        width: 100%;
        justify-content: center
    }

    .content-body {
        padding: 20px
    }

    .author-block {
        flex-direction: column
    }

    .lr-bonus-banner {
        flex-direction: column;
        gap: 12px
    }

    .lr-form-card {
        padding: 20px
    }

    .cmp-wrap, .faq-wrap, .section-wrap, .lr-section-wrap {
        padding: 24px 0
    }

    .rv-card {
        padding: 16px
    }

    .rv-card-header {
        flex-direction: column;
        gap: 12px
    }

    .rv-rating-block {
        align-items: flex-start
    }

    .lr-bonus-mini {
        flex-direction: column;
        gap: 12px;
        text-align: center
    }
}

@media (max-width: 480px) {
    .hero-banner-wrap {
        height: 320px
    }

    .hs-score-num {
        font-size: 1.6rem
    }

    .hero-tile {
        padding: 16px
    }

    .hero-tile-name {
        font-size: 1.3rem
    }

    .ci-info-header {
        flex-direction: column;
        align-items: flex-start
    }

    .toc-tabs {
        gap: 6px
    }

    .toc-tab {
        padding: 6px 12px;
        font-size: .8rem
    }

    .rv-details-panel {
        min-width: unset;
        width: 100%
    }
}

.xb3r7n .entrance-anim {
    animation: fadeSlideUp .4s ease forwards
}

[data-reveal] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .5s ease, transform .5s ease
}

[data-reveal].is-visible {
    opacity: 1;
    transform: none
}

.hero-section {
    position: relative;
    overflow: hidden;
    margin: 0 0 28px
}

.hero-banner-wrap {
    position: relative;
    height: 520px;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 251, 200, .10)
}

.hero-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.02)
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(1000px 520px at 20% 25%, rgba(0, 251, 200, .14), transparent 60%),
    linear-gradient(to bottom, rgba(0, 0, 0, .15) 0%, rgba(0, 0, 0, .55) 45%, rgba(50, 50, 52, .98) 100%)
}

.hero-section .container {
    position: relative
}

.hero-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 18px;
    top: auto;
    display: grid;
    grid-template-columns:minmax(0, 520px) minmax(0, 320px);
    gap: 16px;
    align-items: end;
    padding: 0 16px;
    pointer-events: none
}

.hero-tile,
.hero-ratings-breakdown {
    pointer-events: auto
}

.hero-tile {
    background: rgba(10, 10, 12, .86);
    border: 1px solid rgba(0, 251, 200, .18);
    border-radius: 16px;
    padding: 18px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, .45)
}

.hero-tile-logo img {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    object-fit: cover;
    border: 2px solid rgba(0, 251, 200, .28)
}

.hero-tile-body {
    margin-top: 12px
}

.hero-tile-name {
    font-size: 1.45rem;
    line-height: 1.15;
    margin: 0 0 10px;
    color: #fff
}

.hero-tile-score {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 0 0 12px
}

.hs-score-num {
    font-size: 1.9rem;
    font-weight: 800;
    color: #00fbc8;
    line-height: 1
}

.hs-score-max {
    font-size: .9rem;
    color: #a0a0a0
}

.hs-stars {
    display: flex;
    gap: 2px
}

.hs-star {
    font-size: 1.1rem;
    color: #3a3a3c
}

.hs-star.hs-star-on {
    color: #f5a623
}

.hs-star.hs-star-half {
    color: #f5a623;
    opacity: .55
}

.hs-reviews-count {
    font-size: .82rem;
    color: #a0a0a0
}

.hero-tile-bonus {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    background: rgba(255, 46, 9, .14);
    border: 1px solid rgba(255, 46, 9, .32);
    border-radius: 10px;
    padding: 10px 12px;
    font-size: .9rem;
    color: #ffd0c6;
    font-weight: 700;
    margin: 0 0 14px
}

.hero-tile-actions {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 10px
}

.hero-tile-actions .btn {
    justify-content: center;
    width: 100%
}

.hero-ratings-breakdown {
    background: rgba(10, 10, 12, .82);
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 16px;
    padding: 16px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, .40)
}

.hrb-title {
    font-size: .78rem;
    font-weight: 800;
    color: #b0b0b0;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin: 0 0 12px
}

.hrb-list {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.hrb-row {
    display: flex;
    align-items: center;
    gap: 10px
}

.hrb-label {
    width: 42px;
    flex-shrink: 0;
    font-size: .82rem;
    color: #d0d0d0
}

.hrb-bar-wrap {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, .10);
    border-radius: 999px;
    overflow: hidden
}

.hrb-bar {
    height: 100%;
    background: #00fbc8;
    border-radius: 999px
}

.hrb-count {
    width: 18px;
    flex-shrink: 0;
    text-align: right;
    font-size: .82rem;
    color: #a0a0a0
}

@media (max-width: 1024px) {
    .hero-banner-wrap {
        height: 420px
    }

    .hero-content {
        grid-template-columns:1fr;
        bottom: 14px;
        gap: 12px
    }

    .hero-ratings-breakdown {
        max-width: 520px
    }
}

@media (max-width: 768px) {
    .hero-banner-wrap {
        height: 360px
    }

    .hero-content {
        padding: 0 12px
    }

    .hero-tile-actions {
        grid-template-columns:1fr
    }
}

@media (max-width: 480px) {
    .hero-banner-wrap {
        height: 320px
    }

    .hero-content {
        bottom: 12px
    }

    .hero-tile {
        padding: 14px;
        border-radius: 14px
    }

    .hero-ratings-breakdown {
        padding: 14px;
        border-radius: 14px
    }

    .hero-tile-name {
        font-size: 1.25rem
    }

    .hs-score-num {
        font-size: 1.6rem
    }

    .hero-tile-logo img {
        width: 56px;
        height: 56px
    }
}

.hero-section {
    position: relative;
    overflow: visible;
    margin: 0 0 28px
}

.hero-section .container {
    position: relative
}

.hero-banner-wrap {
    position: relative;
    height: 520px;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 251, 200, .10)
}

.hero-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(1000px 520px at 20% 25%, rgba(0, 251, 200, .14), transparent 60%),
    linear-gradient(to bottom, rgba(0, 0, 0, .12) 0%, rgba(0, 0, 0, .55) 45%, rgba(50, 50, 52, .98) 100%)
}

.hero-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -18px;
    display: grid;
    grid-template-columns:minmax(0, 520px) minmax(0, 320px);
    gap: 16px;
    align-items: stretch;
    padding: 0 16px;
    z-index: 3;
    pointer-events: none
}

.hero-tile, .hero-ratings-breakdown {
    pointer-events: auto
}

.hero-tile,
.hero-ratings-breakdown {
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    background: rgba(10, 10, 12, .86);
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, .45)
}

.hero-tile {
    padding: 18px;
    border-color: rgba(0, 251, 200, .18)
}

.hero-ratings-breakdown {
    padding: 16px
}

.hero-tile-logo img {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    object-fit: cover;
    border: 2px solid rgba(0, 251, 200, .28)
}

.hero-tile-body {
    margin-top: 12px
}

.hero-tile-name {
    font-size: 1.45rem;
    line-height: 1.15;
    margin: 0 0 10px;
    color: #fff
}

.hero-tile-score {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 0 0 12px
}

.hs-score-wrap {
    display: flex;
    align-items: baseline;
    gap: 2px
}

.hs-score-num {
    font-size: 1.9rem;
    font-weight: 800;
    color: #00fbc8;
    line-height: 1
}

.hs-score-max {
    font-size: .9rem;
    color: #a0a0a0
}

.hs-stars {
    display: flex;
    gap: 2px
}

.hs-star {
    font-size: 1.1rem;
    color: #3a3a3c
}

.hs-star.hs-star-on {
    color: #f5a623
}

.hs-star.hs-star-half {
    color: #f5a623;
    opacity: .55
}

.hs-reviews-count {
    font-size: .82rem;
    color: #a0a0a0
}

.hero-tile-bonus {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    background: rgba(255, 46, 9, .14);
    border: 1px solid rgba(255, 46, 9, .32);
    border-radius: 10px;
    padding: 10px 12px;
    font-size: .9rem;
    color: #ffd0c6;
    font-weight: 700;
    margin: 0 0 14px
}

.hero-tile-actions {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 10px
}

.hero-tile-actions .btn {
    justify-content: center;
    width: 100%
}

.hrb-title {
    font-size: .78rem;
    font-weight: 800;
    color: #b0b0b0;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin: 0 0 12px
}

.hrb-list {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.hrb-row {
    display: flex;
    align-items: center;
    gap: 10px
}

.hrb-label {
    width: 42px;
    flex-shrink: 0;
    font-size: .82rem;
    color: #d0d0d0;
    white-space: nowrap
}

.hrb-bar-wrap {
    flex: 1;
    min-width: 0;
    height: 8px;
    background: rgba(255, 255, 255, .10);
    border-radius: 999px;
    overflow: hidden
}

.hrb-bar {
    height: 100%;
    background: #00fbc8;
    border-radius: 999px
}

.hrb-count {
    width: 18px;
    flex-shrink: 0;
    text-align: right;
    font-size: .82rem;
    color: #a0a0a0
}

/* IMPORTANT: prevent body/container clipping on small screens */
body {
    overflow-x: hidden
}

.container {
    max-width: 1200px
}

.hero-section .container {
    overflow: visible
}

/* MOBILE: stack + keep fully inside viewport */
@media (max-width: 1024px) {
    .hero-banner-wrap {
        height: 420px
    }

    .hero-content {
        grid-template-columns:1fr;
        bottom: -14px;
        gap: 12px
    }

    .hero-ratings-breakdown {
        max-width: 520px
    }
}

@media (max-width: 768px) {
    .hero-banner-wrap {
        height: 360px
    }

    .hero-content {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        padding: 12px 12px 0;
        margin-top: -54px; /* pulls cards onto banner but keeps visible */
        pointer-events: auto
    }

    .hero-section {
        margin-bottom: 20px
    }

    .hero-tile-actions {
        grid-template-columns:1fr
    }
}

@media (max-width: 480px) {
    .hero-banner-wrap {
        height: 320px
    }

    .hero-content {
        margin-top: -48px;
        padding: 10px 10px 0
    }

    .hero-tile {
        padding: 14px;
        border-radius: 14px
    }

    .hero-ratings-breakdown {
        padding: 14px;
        border-radius: 14px
    }

    .hero-tile-name {
        font-size: 1.25rem
    }

    .hs-score-num {
        font-size: 1.6rem
    }

    .hero-tile-logo img {
        width: 56px;
        height: 56px
    }
}