/* ============================
   RESET & BASE
   ============================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #0d0d0d;
    color: #e0e0e0;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ============================
   CONTAINER
   ============================ */
.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================
   TYPOGRAPHY
   ============================ */
h1, h2, h3, h4 {
    color: #ffffff;
    font-weight: 700;
    line-height: 1.3;
}

h1 { font-size: clamp(1.8rem, 4.5vw, 3.2rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: 1.05rem; }

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

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.section-header h2 {
    margin-bottom: 0.75rem;
    position: relative;
    display: inline-block;
}
.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #f0b90b, #f5d742);
    margin: 0.75rem auto 0;
    border-radius: 2px;
}
.section-header p {
    color: #999;
    max-width: 680px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* ============================
   LOGO
   ============================ */
.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}
.logo span { color: #f0b90b; }
.logo .logo__text {
    color: #fff;
    font-size: 1.2rem;
    line-height: 1;
    white-space: nowrap;
}
.logo__img {
    height: 42px;
    width: auto;
    display: block;
}
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================
   HEADER
   ============================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

.nav__list {
    display: flex;
    gap: 1.75rem;
}
.nav__list a {
    font-size: 0.9rem;
    font-weight: 500;
    color: #bbb;
    transition: color 0.2s;
    letter-spacing: 0.3px;
}
.nav__list a:hover { color: #f0b90b; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.hamburger span {
    width: 26px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================
   HERO
   ============================ */
.hero {
    padding: 140px 0 80px;
    background: radial-gradient(ellipse at 50% 0%, #1a1a1a 0%, #0d0d0d 70%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -20%;
    width: 140%;
    height: 100%;
    background: radial-gradient(circle at 30% 40%, rgba(240,185,11,0.04) 0%, transparent 60%);
    pointer-events: none;
}
.hero__badge {
    display: inline-block;
    background: rgba(240,185,11,0.12);
    color: #f0b90b;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.35rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.25rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid rgba(240,185,11,0.2);
}
.hero h1 {
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.hero__subtitle {
    color: #aaa;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}
.hero__stats {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}
.hero__stat {
    text-align: center;
}
.hero__stat-num {
    font-size: 1.6rem;
    font-weight: 800;
    color: #f0b90b;
    display: block;
}
.hero__stat-label {
    font-size: 0.82rem;
    color: #888;
    font-weight: 500;
}

/* ============================
   TOP PICKS
   ============================ */
.top-picks {
    padding: 80px 0 60px;
    background: #111;
}
.top-picks .section-header { margin-bottom: 2rem; }

.casino-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin-bottom: 0.75rem;
    transition: border-color 0.25s, transform 0.2s;
}
.casino-card:hover {
    border-color: rgba(240,185,11,0.3);
    transform: translateX(4px);
}

.casino-card__rank {
    font-size: 1.6rem;
    font-weight: 800;
    color: #f0b90b;
    min-width: 48px;
    text-align: center;
    font-family: 'Playfair Display', serif;
}

.casino-card__logo {
    width: 118px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0.55rem;
    background: #101010;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
}

.casino-card__logo img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.casino-card__body {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.casino-card__info h3 {
    font-size: 1.1rem;
    margin-bottom: 2px;
}
.casino-card__tagline {
    font-size: 0.82rem;
    color: #aaa;
    margin-top: 2px;
}
.casino-card__rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
}
.rating-text {
    font-size: 0.8rem;
    color: #888;
    font-weight: 600;
}

.casino-card__offer {
    text-align: right;
    flex-shrink: 0;
}
.casino-card__bonus {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #f0b90b;
    margin-bottom: 0.5rem;
    white-space: nowrap;
}

/* ============================
   BUTTONS
   ============================ */
.btn {
    display: inline-block;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.25s;
    cursor: pointer;
    border: none;
    letter-spacing: 0.3px;
}
.btn--primary {
    background: linear-gradient(135deg, #f0b90b, #d4a308);
    color: #0d0d0d;
}
.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(240,185,11,0.25);
}
.btn--large {
    padding: 0.9rem 2.2rem;
    font-size: 1rem;
}

/* ============================
   STARS
   ============================ */
.stars {
    display: inline-flex;
    gap: 2px;
    font-size: 0.85rem;
    letter-spacing: 2px;
}
.stars::before {
    content: '\2605\2605\2605\2605\2605';
    color: #333;
}
.stars[data-rating="5"]::before { content: '\2605\2605\2605\2605\2605'; color: #f0b90b; }
.stars[data-rating="4.9"]::before { content: '\2605\2605\2605\2605\2605'; color: #f0b90b; }
.stars[data-rating="4.8"]::before { content: '\2605\2605\2605\2605\2605'; color: #f0b90b; }
.stars[data-rating="4.7"]::before { content: '\2605\2605\2605\2605\2605'; color: #f0b90b; }
.stars[data-rating="4.6"]::before { content: '\2605\2605\2605\2605\2605'; color: #f0b90b; }
.stars[data-rating="4.5"]::before { content: '\2605\2605\2605\2605\2605'; color: #f0b90b; }
.stars[data-rating="4.4"]::before { content: '\2605\2605\2605\2605\2605'; color: #f0b90b; }
.stars[data-rating="4.3"]::before { content: '\2605\2605\2605\2605\2605'; color: #f0b90b; }
.stars[data-rating="4.2"]::before { content: '\2605\2605\2605\2605\2605'; color: #f0b90b; }
.stars[data-rating="4.1"]::before { content: '\2605\2605\2605\2605\2605'; color: #f0b90b; }

/* ============================
   DISCLAIMER
   ============================ */
.disclaimer {
    font-size: 0.75rem;
    color: #666;
    text-align: center;
    margin-top: 1.5rem;
    line-height: 1.5;
}

/* ============================
   METHODOLOGY
   ============================ */
.methodology {
    padding: 80px 0;
    background: #0d0d0d;
}
.methodology__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}
.methodology__item {
    background: #161616;
    border: 1px solid #242424;
    border-radius: 12px;
    padding: 1.75rem;
    transition: border-color 0.25s;
}
.methodology__item:hover { border-color: rgba(240,185,11,0.15); }
.methodology__icon {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
}
.methodology__item h3 {
    font-size: 1.05rem;
    margin-bottom: 0.6rem;
}
.methodology__item p {
    font-size: 0.9rem;
    color: #999;
    line-height: 1.7;
}

/* ============================
   REVIEWS
   ============================ */
.reviews {
    padding: 80px 0;
    background: #111;
}
.review-card {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 14px;
    padding: 2rem;
    margin-bottom: 1.5rem;
}
.review-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}
.review-card__title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.review-card__rank {
    font-size: 1.2rem;
    font-weight: 800;
    color: #f0b90b;
    background: rgba(240,185,11,0.08);
    padding: 0.2rem 0.7rem;
    border-radius: 8px;
    font-family: 'Playfair Display', serif;
}
.review-card__title h3 { font-size: 1.15rem; }
.review-card__rating {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.review-card__body p {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 1rem;
}
.review-card__body h4 {
    font-size: 1rem;
    margin: 1.25rem 0 0.6rem;
    color: #f0b90b;
}
.review-card__brand {
    margin: 1rem 0 0.75rem;
    border-radius: 14px;
    overflow: hidden;
}
.review-card__brand img {
    width: 100%;
    height: auto;
    display: block;
}
.review-card__body ul {
    margin-bottom: 1rem;
    padding-left: 1.25rem;
}
.review-card__body ul li {
    font-size: 0.92rem;
    color: #bbb;
    margin-bottom: 0.4rem;
    position: relative;
    padding-left: 1rem;
}
.review-card__body ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 5px;
    height: 5px;
    background: #f0b90b;
    border-radius: 50%;
}

/* Remaining casino table */
.reviews-rest {
    margin-top: 2.5rem;
}
.reviews-rest h3 { margin-bottom: 0.5rem; }
.reviews-rest > p { color: #999; margin-bottom: 1.5rem; }

/* ============================
   TABLES
   ============================ */
.table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.casino-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}
.casino-table th {
    text-align: left;
    padding: 0.85rem 1rem;
    background: #1f1f1f;
    color: #f0b90b;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}
.casino-table th:first-child { border-radius: 8px 0 0 0; }
.casino-table th:last-child { border-radius: 0 8px 0 0; }
.casino-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #222;
    color: #bbb;
}
.casino-table tr:last-child td { border-bottom: none; }
.casino-table tr:hover td { background: rgba(240,185,11,0.02); }

/* ============================
   GAMES
   ============================ */
.games {
    padding: 80px 0;
    background: #0d0d0d;
}
.games__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}
.game-cat {
    background: #161616;
    border: 1px solid #242424;
    border-radius: 12px;
    padding: 1.75rem;
}
.game-cat h3 { margin-bottom: 0.75rem; font-size: 1.05rem; }
.game-cat p { font-size: 0.88rem; color: #999; margin-bottom: 0.75rem; }
.game-cat ul li {
    font-size: 0.88rem;
    color: #bbb;
    margin-bottom: 0.4rem;
    padding-left: 1rem;
    position: relative;
}
.game-cat ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 4px;
    height: 4px;
    background: #f0b90b;
    border-radius: 50%;
}

/* ============================
   BONUSES
   ============================ */
.bonuses {
    padding: 80px 0;
    background: #111;
}
.bonus-content h3 {
    margin: 1.5rem 0 1rem;
}
.bonus-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}
.bonus-type {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    padding: 1.25rem;
}
.bonus-type h4 {
    font-size: 1rem;
    color: #f0b90b;
    margin-bottom: 0.4rem;
}
.bonus-type p {
    font-size: 0.88rem;
    color: #999;
}

.bonus-tips {
    margin: 1rem 0 2rem;
}
.bonus-tips li {
    font-size: 0.9rem;
    color: #bbb;
    margin-bottom: 0.6rem;
    padding-left: 1rem;
    position: relative;
}
.bonus-tips li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 5px;
    height: 5px;
    background: #f0b90b;
    border-radius: 50%;
}

.bonus-summary {
    margin-top: 2rem;
}
.bonus-summary h4 {
    margin-bottom: 1rem;
}

/* ============================
   PAYMENTS
   ============================ */
.payments {
    padding: 80px 0;
    background: #0d0d0d;
}
.payments__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}
.payment-method {
    background: #161616;
    border: 1px solid #242424;
    border-radius: 12px;
    padding: 1.5rem;
}
.payment-method h3 {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
}
.payment-method p {
    font-size: 0.88rem;
    color: #999;
    line-height: 1.7;
}
.payment-method p:first-of-type {
    color: #f0b90b;
    font-weight: 600;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.payment-tips h3 { margin-bottom: 0.75rem; }
.payment-tips ul li {
    font-size: 0.9rem;
    color: #bbb;
    margin-bottom: 0.6rem;
    padding-left: 1rem;
    position: relative;
}
.payment-tips ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 5px;
    height: 5px;
    background: #f0b90b;
    border-radius: 50%;
}

/* ============================
   LEGAL
   ============================ */
.legal {
    padding: 80px 0;
    background: #111;
}
.legal__content p {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 1rem;
}
.legal__content h3 {
    margin: 1.5rem 0 0.75rem;
}
.legal__content ul {
    margin-bottom: 1.5rem;
    padding-left: 0;
}
.legal__content ul li {
    font-size: 0.9rem;
    color: #bbb;
    margin-bottom: 0.5rem;
    padding-left: 1.25rem;
    position: relative;
}
.legal__content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 5px;
    height: 5px;
    background: #f0b90b;
    border-radius: 50%;
}
.legal-box {
    background: rgba(240,185,11,0.05);
    border: 1px solid rgba(240,185,11,0.15);
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}
.legal-box h4 {
    color: #f0b90b;
    margin-bottom: 0.5rem;
}
.legal-box p {
    color: #ccc;
    font-size: 0.92rem;
}

/* ============================
   RESPONSIBLE GAMBLING
   ============================ */
.responsible {
    padding: 80px 0;
    background: #0d0d0d;
}
.responsible__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}
.responsible__item {
    background: #161616;
    border: 1px solid #242424;
    border-radius: 12px;
    padding: 1.5rem;
}
.responsible__item h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}
.responsible__item p {
    font-size: 0.88rem;
    color: #999;
    line-height: 1.7;
}
.responsible__resources h3 { margin-bottom: 0.75rem; }
.responsible__resources ul li {
    font-size: 0.9rem;
    color: #bbb;
    margin-bottom: 0.5rem;
}

/* ============================
   FINAL VERDICT
   ============================ */
.verdict {
    padding: 80px 0;
    background: #111;
}
.verdict__content p {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 1rem;
}
.verdict__content ul {
    margin-bottom: 1.5rem;
}
.verdict__content ul li {
    font-size: 0.92rem;
    color: #bbb;
    margin-bottom: 0.5rem;
    padding-left: 1.25rem;
    position: relative;
}
.verdict__content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 5px;
    height: 5px;
    background: #f0b90b;
    border-radius: 50%;
}
.verdict__cta {
    text-align: center;
    margin-top: 2rem;
}
.verdict__cta .disclaimer { margin-top: 0.75rem; }

/* ============================
   FAQ
   ============================ */
.faq {
    padding: 80px 0;
    background: #0d0d0d;
}
.faq__list {
    max-width: 780px;
    margin: 0 auto;
}
.faq__item {
    border-bottom: 1px solid #222;
}
.faq__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    background: none;
    border: none;
    color: #ddd;
    font-size: 1rem;
    font-weight: 600;
    padding: 1.25rem 0;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: color 0.2s;
}
.faq__question:hover { color: #f0b90b; }
.faq__icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    position: relative;
    transition: transform 0.3s;
}
.faq__icon::before,
.faq__icon::after {
    content: '';
    position: absolute;
    background: #888;
    border-radius: 2px;
    transition: background 0.3s;
}
.faq__icon::before {
    width: 14px;
    height: 2px;
    top: 11px;
    left: 5px;
}
.faq__icon::after {
    width: 2px;
    height: 14px;
    top: 5px;
    left: 11px;
    transition: transform 0.3s;
}
.faq__item.active .faq__icon::after { transform: rotate(90deg); }
.faq__item.active .faq__icon::before,
.faq__item.active .faq__icon::after { background: #f0b90b; }
.faq__item.active .faq__question { color: #f0b90b; }

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0;
}
.faq__item.active .faq__answer {
    max-height: 300px;
    padding: 0 0 1.25rem;
}
.faq__answer p {
    font-size: 0.9rem;
    color: #999;
    line-height: 1.7;
}

/* ============================
   FOOTER
   ============================ */
.footer {
    background: #0a0a0a;
    border-top: 1px solid #1a1a1a;
    padding: 60px 0 30px;
}
.footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
}
.footer__col .logo { margin-bottom: 1rem; display: inline-block; }
.footer__col p {
    font-size: 0.85rem;
    color: #777;
    line-height: 1.7;
}
.footer__col h4 {
    font-size: 0.9rem;
    color: #fff;
    margin-bottom: 0.75rem;
}
.footer__col ul li {
    font-size: 0.84rem;
    color: #777;
    margin-bottom: 0.4rem;
}
.footer__col ul li a { color: #777; transition: color 0.2s; }
.footer__col ul li a:hover { color: #f0b90b; }

.footer__bottom {
    grid-column: 1 / -1;
    border-top: 1px solid #1a1a1a;
    padding-top: 1.5rem;
    margin-top: 1rem;
    text-align: center;
}
.footer__bottom p {
    font-size: 0.8rem;
    color: #555;
}

/* ============================
   AUTHOR BYLINE
   ============================ */
.author-byline {
    background: linear-gradient(135deg, #1a1a1a 0%, #161616 100%);
    border-top: 1px solid #f0b90b;
    padding: 3rem 0;
    margin: 3rem 0 0 0;
}

.author-byline--intro {
    border-bottom: 1px solid rgba(240,185,11,0.18);
    margin: 0;
}

.author-byline__content {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.author-byline__image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f0b90b;
    flex-shrink: 0;
}

.author-byline__image-link {
    display: block;
    flex-shrink: 0;
}

.author-byline__info h2 a,
.author-byline__info h3 a {
    color: inherit;
    transition: color 0.2s;
}

.author-byline__info h2 a:hover,
.author-byline__info h3 a:hover {
    color: #fff;
}

.author-byline__info {
    flex: 1;
}

.author-byline__label {
    color: #aaa;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0;
    margin-bottom: 0.35rem;
    text-transform: uppercase;
}

.author-byline__info h2,
.author-byline__info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    color: #f0b90b;
}

.author-byline__date {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 0.75rem;
    display: block;
}

.author-byline__bio {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.7;
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 900px) {
    .nav { display: none; }
    .nav.nav--open {
        display: block;
        position: absolute;
        top: 68px;
        left: 0;
        width: 100%;
        background: rgba(13,13,13,0.98);
        border-bottom: 1px solid #222;
        padding: 1rem 0;
    }
    .nav--open .nav__list {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }
    .nav--open .nav__list li { width: 100%; text-align: center; }
    .nav--open .nav__list a {
        display: block;
        padding: 0.75rem 0;
        font-size: 1rem;
    }
    .hamburger { display: flex; }

    .casino-card { flex-wrap: wrap; }
    .casino-card__logo { width: 104px; height: 56px; }
    .casino-card__body { flex-direction: column; align-items: flex-start; }
    .casino-card__offer { text-align: left; width: 100%; }
    .casino-card__bonus { white-space: normal; }

    .review-card__header { flex-direction: column; }

    .footer__inner { grid-template-columns: 1fr 1fr; }
    .hero__stats { gap: 1.5rem; }
    
    .author-byline__content {
        flex-direction: column;
        text-align: center;
    }
    
    .author-byline__image {
        width: 100px;
        height: 100px;
    }
}

/* ============================
   ABOUT PAGE
   ============================ */

/* Page Hero */
.page-hero {
    padding: 140px 0 80px;
    background: radial-gradient(ellipse at 50% 0%, #1a1a1a 0%, #0d0d0d 70%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -20%;
    width: 140%;
    height: 100%;
    background: radial-gradient(circle at 30% 40%, rgba(240,185,11,0.04) 0%, transparent 60%);
    pointer-events: none;
}
.page-hero__badge {
    display: inline-block;
    background: rgba(240,185,11,0.12);
    color: #f0b90b;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.35rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.25rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid rgba(240,185,11,0.2);
}
.page-hero h1 {
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.page-hero__subtitle {
    color: #aaa;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* About Sections */
.about-section {
    padding: 80px 0;
    background: #111;
}
.about-section--dark {
    background: #0d0d0d;
}
.about-section .section-header {
    margin-bottom: 2.5rem;
}

/* Philosophy */
.philosophy p {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.philosophy-stats {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}
.philosophy-stat {
    text-align: center;
}
.philosophy-stat__num {
    font-size: 1.3rem;
    font-weight: 800;
    color: #f0b90b;
    display: block;
}
.philosophy-stat__label {
    font-size: 0.82rem;
    color: #888;
    font-weight: 500;
}

/* Metrics Grid */
.metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}
.metric {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 1.75rem;
    transition: border-color 0.25s;
}
.metric:hover { border-color: rgba(240,185,11,0.15); }
.metric__header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}
.metric__num {
    font-size: 1.1rem;
    font-weight: 800;
    color: #f0b90b;
    font-family: 'Playfair Display', serif;
    min-width: 32px;
}
.metric__header h3 {
    font-size: 1.05rem;
}
.metric p {
    font-size: 0.88rem;
    color: #999;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}
.metric__label { color: #bbb !important; }

/* Trust Grid */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.25rem;
}
.trust-item {
    background: #161616;
    border: 1px solid #242424;
    border-radius: 12px;
    padding: 1.5rem;
}
.trust-item h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #f0b90b;
}
.trust-item p {
    font-size: 0.88rem;
    color: #999;
    line-height: 1.7;
}

/* Policy */
.policy p {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.policy__updated {
    color: #f0b90b !important;
    font-size: 0.82rem !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-bottom: 1rem;
}
.policy h3 {
    font-size: 1.05rem;
    margin: 1.6rem auto 0.6rem;
    max-width: 800px;
    color: #ffffff;
}
.policy ul {
    max-width: 800px;
    margin: 0 auto 1rem;
}
.policy ul li {
    font-size: 0.9rem;
    color: #bbb;
    margin-bottom: 0.55rem;
    padding-left: 1.25rem;
    position: relative;
}
.policy ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 5px;
    height: 5px;
    background: #f0b90b;
    border-radius: 50%;
}
.policy-box {
    background: rgba(240,185,11,0.05);
    border: 1px solid rgba(240,185,11,0.15);
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.policy-box p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.7;
    text-align: center;
}
.policy-callout {
    background: rgba(240,185,11,0.05);
    border: 1px solid rgba(240,185,11,0.15);
    border-radius: 10px;
    padding: 1.35rem 1.5rem;
    margin: 2rem auto 0;
    max-width: 800px;
}
.policy-callout p {
    text-align: center;
    margin-bottom: 0;
}

/* Safety */
.safety p {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.safety ul {
    max-width: 800px;
    margin: 1.5rem auto;
}
.safety ul li {
    font-size: 0.9rem;
    color: #bbb;
    margin-bottom: 0.6rem;
    padding-left: 1.25rem;
    position: relative;
}
.safety ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 5px;
    height: 5px;
    background: #f0b90b;
    border-radius: 50%;
}

/* Contact */
.contact p {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.contact__email {
    text-align: center;
    margin: 1.5rem 0;
}
.contact__label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.4rem;
}
.contact__email a {
    font-size: 1.1rem;
    color: #f0b90b;
    font-weight: 600;
    transition: color 0.2s;
}
.contact__email a:hover { color: #fff; }
.contact__note {
    font-size: 0.85rem !important;
    color: #888 !important;
}

/* Nav active state */
.nav--active {
    color: #f0b90b !important;
}

/* ============================
   AUTHOR PAGE
   ============================ */
.author-hero {
    text-align: left;
}

.author-hero__inner {
    display: grid;
    grid-template-columns: 190px 1fr;
    align-items: center;
    gap: 2.5rem;
    max-width: 920px;
    margin: 0 auto;
}

.author-hero__image {
    width: 190px;
    height: 190px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #f0b90b;
    box-shadow: 0 18px 45px rgba(0,0,0,0.35);
}

.author-hero .page-hero__subtitle {
    margin-left: 0;
    margin-right: 0;
}

.author-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.5rem;
}

.author-hero__meta span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0.4rem 0.75rem;
    background: rgba(240,185,11,0.08);
    border: 1px solid rgba(240,185,11,0.16);
    border-radius: 8px;
    color: #f0b90b;
    font-size: 0.8rem;
    font-weight: 700;
}

.author-timeline {
    max-width: 860px;
    margin: 0 auto;
}

.author-timeline__item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid #242424;
}

.author-timeline__item:first-child {
    padding-top: 0;
}

.author-timeline__item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.author-timeline__year {
    color: #f0b90b;
    font-weight: 800;
    font-size: 0.9rem;
}

.author-timeline__item h3 {
    margin-bottom: 0.45rem;
}

.author-timeline__item p {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ============================
   RESPONSIVE — ABOUT OVERRIDES
   ============================ */
@media (max-width: 600px) {
    .page-hero { padding: 110px 0 60px; }
    .philosophy p { text-align: left; }
    .policy p { text-align: left; }
    .safety p { text-align: left; }
    .contact p { text-align: left; }
    .contact__email { text-align: left; }

    .author-hero {
        text-align: center;
    }

    .author-hero__inner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .author-hero__image {
        width: 140px;
        height: 140px;
        margin: 0 auto;
    }

    .author-hero .page-hero__subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .author-hero__meta {
        justify-content: center;
    }

    .author-timeline__item {
        grid-template-columns: 1fr;
        gap: 0.35rem;
    }
}

@media (max-width: 600px) {
    .hero { padding: 110px 0 60px; }
    .hero__stats { gap: 1rem; }
    .hero__stat-num { font-size: 1.3rem; }

    .casino-card { padding: 0.85rem 1rem; }
    .casino-card__rank { font-size: 1.3rem; min-width: 36px; }
    .casino-card__logo { width: 92px; height: 50px; }

    .review-card { padding: 1.25rem; }

    .footer__inner { grid-template-columns: 1fr; text-align: center; }

    .casino-table { font-size: 0.8rem; }
    .casino-table th,
    .casino-table td { padding: 0.6rem 0.6rem; }

    .section-header { margin-bottom: 1.5rem; }
}
