/* Reset */

*,
*::before,
*::after {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body,
h1, h2, h3, h4, h5, h6,
p,
ol, ul,
figure,
blockquote,
dl, dd {
    margin: 0;
}

ol[class],
ul[class] {
    list-style: none;
}

a {
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

button,
input,
select,
textarea {
    font: inherit;
    border: none;
}

[role="button"],
button {
    cursor: pointer;
}

body,
html {
    overflow-x: clip;
}

body.-menu-open,
html.-menu-open {
    overflow: hidden;
}


/* Base */

body {
    background: #120a06;
    color: #8e8e8e;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    color: #fff;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 42px;
    margin-bottom: 16px;
}

h2 {
    font-size: 28px;
    margin-bottom: 16px;
}

h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

p {
    margin-bottom: 14px;
    font-size: 15px;
}

p:last-child {
    margin-bottom: 0;
}

a {
    color: #ff8c00;
}

a:hover {
    color: #c46a0a;
}

strong {
    color: #ccc;
}


/* Layout */

.wrap {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}

.container {
    padding-left: 40px;
    padding-right: 40px;
}


/* Header */

.site-header {
    background: #120a06;
    border-bottom: 1px solid rgba(255, 140, 0, 0.15);
    position: relative;
    z-index: 100;
}

.site-header .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    padding-bottom: 12px;
}

.header-logo {
    display: inline-block;
    line-height: 0;
}

.header-logo img {
    height: 36px;
    width: auto;
    display: block;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header-nav a {
    color: #8e8e8e;
    font-size: 14px;
    font-weight: 500;
}

.header-nav a:hover {
    color: #fff;
}

.header-nav a.is-current {
    color: #ff8c00;
}

.mob-menu-btn {
    display: none;
    background: none;
    padding: 0;
    width: 28px;
    height: 28px;
    position: relative;
}

.mob-menu-btn span,
.mob-menu-btn span::before,
.mob-menu-btn span::after {
    display: block;
    width: 100%;
    height: 2px;
    background: #ff8c00;
    position: absolute;
    left: 0;
    transition: transform 0.25s, opacity 0.25s;
}

.mob-menu-btn span {
    top: 50%;
    transform: translateY(-50%);
}

.mob-menu-btn span::before {
    content: '';
    top: -8px;
}

.mob-menu-btn span::after {
    content: '';
    bottom: -8px;
}

.mob-menu-btn.-active span {
    background: transparent;
}

.mob-menu-btn.-active span::before {
    top: 0;
    transform: rotate(45deg);
}

.mob-menu-btn.-active span::after {
    bottom: 0;
    transform: rotate(-45deg);
}


/* Mobile nav — overlay */

.mob-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    background: rgba(18, 10, 6, 0.97);
    padding-top: 60px;
}

.mob-nav.-open {
    display: block;
}

.mob-nav a {
    display: block;
    color: #8e8e8e;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mob-nav a:last-child {
    border-bottom: none;
}

.mob-nav a:hover {
    color: #ff8c00;
}


/* Hero */

.hero {
    padding: 48px 0 24px;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(198, 134, 66, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(120, 72, 32, 0.12) 0%, transparent 50%),
        linear-gradient(180deg, #2a1a12 0%, #120a06 100%);
}

.hero h1 span {
    color: #ff8c00;
}

.hero__text {
    font-size: 15px;
    line-height: 1.7;
    color: #a0a0a0;
    margin-bottom: 24px;
}

.hero__meta {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 13px;
    color: #666;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.hero__meta-author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero__meta-avatar {
    width: 40px;
    height: 40px;
    object-fit: cover;
    object-position: center;
}


/* Body content */

.body-content,
.reviews,
.prose {
    padding-top: 24px;
}

.prose:last-of-type {
    padding-bottom: 40px;
}

.body-content h2 {
    margin-bottom: 6px;
}

.body-content .section-desc {
    margin-bottom: 28px;
    font-size: 15px;
    color: #8e8e8e;
    line-height: 1.7;
}


/* Offer cards */

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

.offer-card {
    background: #1b130f;
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: grid;
    grid-template-columns: 240px 1fr auto;
    align-items: center;
}

.offer-card__logo {
    padding: 16px 8px 16px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
}

.offer-card__logo img {
    width: 100%;
    height: auto;
    max-height: 90px;
    object-fit: contain;
}

.offer-card__body {
    padding: 16px 12px;
}

.offer-card__name {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.offer-card__rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.offer-card__chips {
    display: flex;
    gap: 3px;
    align-items: center;
}

.offer-card__rating-num {
    font-size: 12px;
    color: #888;
    font-weight: 500;
    margin-left: 2px;
}

.offer-card__bonus {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.btn-more {
    display: block;
    width: 100%;
    padding: 14px;
    background: none;
    border: 1px solid rgba(255, 140, 0, 0.25);
    color: #ff8c00;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
}

.btn-more:hover {
    border-color: #ff8c00;
}

.offer-card__cta {
    padding: 18px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    align-self: stretch;
    justify-content: center;
}

/* Skeleton loader */

.skeleton-card {
    background: #1b130f;
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: grid;
    grid-template-columns: 240px 1fr 140px;
    align-items: center;
    height: 110px;
}

.skeleton-block {
    background: linear-gradient(90deg, rgba(255,255,255,0.03) 25%, rgba(255,255,255,0.07) 50%, rgba(255,255,255,0.03) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    height: 14px;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.skeleton-card__logo {
    padding: 24px;
}

.skeleton-card__logo .skeleton-block {
    height: 40px;
    width: 100%;
}

.skeleton-card__body {
    padding: 18px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.skeleton-card__body .skeleton-block:first-child {
    width: 45%;
}

.skeleton-card__body .skeleton-block:nth-child(2) {
    width: 70%;
}

.skeleton-card__cta {
    padding: 18px 24px;
    display: flex;
    justify-content: center;
}

.skeleton-card__cta .skeleton-block {
    width: 100px;
    height: 36px;
}

.btn-cta {
    display: inline-block;
    background: #ff8c00;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 28px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    white-space: nowrap;
}

.btn-cta:hover {
    background: #c46a0a;
    color: #fff;
}

.offer-card__tc {
    font-size: 10px;
    color: #555;
}


/* Prose section */

.prose h2 {
    margin-bottom: 14px;
}

.prose h3 {
    margin-top: 28px;
    margin-bottom: 12px;
    color: #fff;
}

.prose p {
    color: #a0a0a0;
    margin-bottom: 14px;
}

.prose-list {
    margin: 0 0 16px;
    padding: 0;
    list-style: none;
}

.prose-list li {
    color: #a0a0a0;
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
}

.prose-list li::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 11px;
    width: 6px;
    height: 6px;
    background: #ff8c00;
}


/* Author bio */

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

.author-bio__photo {
    width: 120px;
    height: 120px;
    object-fit: cover;
    object-position: center;
}

.author-bio__body h1 {
    margin-bottom: 12px;
}

.author-bio__body p {
    color: #a0a0a0;
}

@media (max-width: 768px) {
    .author-bio {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .author-bio__photo {
        width: 96px;
        height: 96px;
    }
}


/* Contact form */

.contact-form {
    max-width: 560px;
    margin-top: 24px;
}

.contact-form__row {
    margin-bottom: 16px;
}

.contact-form label {
    display: block;
    color: #d1d5db;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: #1b130f;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 14px;
    padding: 10px 14px;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: rgba(255, 140, 0, 0.5);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.5;
}

.contact-form__submit {
    background: #ff8c00;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 12px 36px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-top: 4px;
}

.contact-form__submit:hover {
    background: #c46a0a;
}


/* Responsible gambling box */

.responsible {
    background: #1b130f;
    border: 1px solid rgba(255, 140, 0, 0.18);
    padding: 24px 28px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 22px;
    align-items: start;
}

.responsible__icon svg {
    width: 36px;
    height: 36px;
    color: #ff8c00;
    display: block;
}

.responsible__body h2 {
    margin-bottom: 10px;
}

.responsible__body p {
    color: #a0a0a0;
    margin-bottom: 12px;
}

.responsible__body p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .responsible {
        padding: 18px 20px;
        grid-template-columns: 1fr;
        gap: 12px;
    }
}


/* Data table */

.table-wrap {
    overflow-x: auto;
    margin: 0 0 18px;
    background: #1b130f;
}

.data-table {
    width: 100%;
    min-width: 560px;
    border-collapse: collapse;
    font-size: 14px;
}

.data-table th,
.data-table td {
    text-align: left;
    padding: 12px 16px;
    vertical-align: top;
}

.data-table thead th {
    color: #fff;
    font-weight: 600;
    background: #241a14;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.data-table tbody td {
    color: #b0b0b0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.data-table tbody tr:last-child td {
    border-bottom: none;
}

.data-table td:first-child {
    color: #fff;
    font-weight: 500;
}


/* Reviews */

.review + .review {
    margin-top: 40px;
}

.review__title {
    color: #fff;
    margin-bottom: 16px;
}

.review p {
    color: #a0a0a0;
    margin-bottom: 16px;
}

.review__shot {
    margin: 0 0 20px;
}

.review__shot img {
    width: 100%;
    height: auto;
    display: block;
}


/* Review layout */

.review__layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 32px;
    align-items: start;
}

.review__main {
    min-width: 0;
}

.review__aside {
    position: sticky;
    top: 20px;
}


/* Score card */

.score-card {
    background: linear-gradient(180deg, #221511 0%, #1a100a 100%);
    border: 1px solid rgba(255, 140, 0, 0.18);
}

.score-card__head {
    padding: 18px 14px 16px;
    background: radial-gradient(ellipse at 50% 0%, rgba(255, 140, 0, 0.18) 0%, transparent 70%);
    border-bottom: 1px solid rgba(255, 140, 0, 0.12);
    text-align: center;
}

.score-card__label {
    font-size: 10px;
    color: #ff8c00;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 600;
    margin-bottom: 8px;
}

.score-card__hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.score-card__overall {
    font-size: 42px;
    font-weight: 700;
    color: #ffb347;
    line-height: 1;
}

.score-card__overall span {
    font-size: 18px;
    color: #8e8e8e;
    font-weight: 500;
    margin-left: 2px;
}

.score-card__star {
    width: 40px;
    height: 40px;
    fill: #ff8c00;
    filter: drop-shadow(0 0 10px rgba(255, 140, 0, 0.5));
    display: block;
}

.score-card__list {
    list-style: none;
    padding: 8px 14px;
    margin: 0;
}

.score-card__list li {
    padding: 9px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.score-card__list li:last-child {
    border-bottom: none;
}

.score-card__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
    gap: 12px;
}

.score-card__name {
    font-size: 12px;
    color: #d1d5db;
    font-weight: 500;
}

.score-card__val {
    font-size: 12px;
    font-weight: 700;
    color: #ffb347;
}

.score-card__bar {
    height: 3px;
    background: rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.score-card__bar span {
    display: block;
    height: 100%;
    background: #ff8c00;
}

.score-card__cta {
    padding: 14px 14px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.score-card__cta .btn-cta {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 6px;
}

.score-card__tc {
    font-size: 10px;
    color: #555;
}


/* Pros / Cons */

.procons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
}

.procons__col {
    background: #1b130f;
    padding: 18px 22px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.procons__title {
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 12px;
}

.procons__col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.procons__col li {
    color: #a0a0a0;
    font-size: 14px;
    line-height: 1.5;
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
}

.procons__col li:last-child {
    margin-bottom: 0;
}

.procons__col--pros li::before {
    content: '+';
    position: absolute;
    left: 0;
    color: #4ade80;
    font-weight: 700;
}

.procons__col--cons li::before {
    content: '−';
    position: absolute;
    left: 0;
    color: #f87171;
    font-weight: 700;
}


/* Footer */

.site-footer {
    background: #120a06;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-legal {
    font-size: 11px;
    color: #555;
    line-height: 1.5;
}

.footer-legal p {
    margin-bottom: 0;
    font-size: 11px;
}

.footer-legal a {
    color: #777;
    text-decoration: underline;
}

.footer-legal a:hover {
    color: #ff8c00;
}

.footer-icon img {
    height: 24px;
    width: auto;
    opacity: 0.5;
}


/* Responsive */

@media (max-width: 991px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 26px;
    }

    h3 {
        font-size: 22px;
    }

    .hero {
        padding: 36px 0;
    }

    .offer-card,
    .skeleton-card {
        grid-template-columns: 160px 1fr auto;
    }

    .offer-card__logo {
        padding: 16px;
    }

    .offer-card__body {
        padding: 14px 18px;
    }

    .offer-card__cta {
        padding: 14px 18px;
    }

    .review__layout {
        grid-template-columns: 1fr 240px;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 20px;
    }

    .header-nav {
        display: none;
    }

    .mob-menu-btn {
        display: block;
    }

    .hero {
        padding: 28px 0;
    }

    .hero__meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .offer-card,
    .skeleton-card {
        grid-template-columns: 1fr;
        height: auto;
    }

    .offer-card__logo {
        padding: 20px;
    }

    .offer-card__logo img {
        margin: 0 auto;
        max-width: 200px;
    }

    .offer-card__body {
        padding: 10px 16px;
    }

    .offer-card__bonus {
        font-size: 16px;
    }

    .offer-card__cta {
        padding: 10px 16px 14px;
        align-items: stretch;
    }

    .btn-cta {
        text-align: center;
    }

    .footer-inner {
        flex-direction: column;
        gap: 14px;
        text-align: center;
    }

    .procons {
        grid-template-columns: 1fr;
    }

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

    .review__aside {
        position: static;
    }

    .data-table {
        font-size: 13px;
    }

    .data-table th,
    .data-table td {
        padding: 10px 12px;
    }
}
