:root {
    --bg: #fff;
    --panel: #1e1e1e;
    --card: rgba(255, 255, 255, .05);
    --card2: rgba(255, 255, 255, .08);
    --text: #003;
    --text-whihe: #fff;
    --muted: #9ca3af;
    --border: rgba(255, 255, 255, .1);
    --shadow: 0 1px 2px rgba(0, 0, 0, .06),
        0 6px 18px rgba(0, 0, 0, .06);
    --shadow-hover: 0 2px 8px rgba(0, 0, 0, .08),
        0 12px 28px rgba(0, 0, 0, .06);
    --accent-1: #f97316;
    /* Orange */
    --accent-2: #ea580c;
    /* Dark Orange */
    --green: #22c55e;
    --blue: #3b82f6;
    --radius: 16px;
    --radius2: 24px;
    --max: 1180px;
    --pad: 20px;
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%;
    overflow-x: hidden;
    /* Prevent horizontal scroll globally */
    width: 100%;
    position: relative;
}

body {
    margin: 0;
    font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none
}

a:hover {
    opacity: .92
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

.container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--pad);
    margin-bottom: 14px;
}

.sr-only {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(18, 18, 18, .85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px var(--pad);
    max-width: var(--max);
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.brand {
    display: flex;
    gap: 10px;
    align-items: center;
}

.brand img {
    width: 75px;
}

.brand__mark {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    border: 1px solid rgba(255, 255, 255, .2);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .25);
    font-weight: 900;
    letter-spacing: .5px;
}

.brand__name {
    font-weight: 900;
    letter-spacing: .2px;
    color: var(--text-whihe)
}

.brand__tag {
    font-size: 12px;
    color: var(--muted)
}

.nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 14px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav__link {
    display: inline-flex;
    align-items: center;
    padding: 10px 10px;
    border-radius: 12px;
    color: var(--text-whihe);
    font-weight: 650;
    font-size: 14px;
}

.nav__link:hover {
    background: rgba(255, 255, 255, .06);
}

.nav__actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .06);
    color: var(--text);
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
    transition: transform .12s ease, background .12s ease, border-color .12s ease;
}

.btn:hover {
    transform: translateY(-1px)
}

.btn--primary {
    background: #fc5634;
    color: #fff;
    /* border-color: rgba(255, 255, 255, .2); */
    box-shadow: 0 4px 15px rgba(168, 85, 247, .25);
    font-size: 16px;
}

.btn--primary:hover {
    background: #000034;
}

.btn--ghost {
    background: transparent;
}

.btn--lg {
    padding: 12px 16px;
    border-radius: 16px
}

.btn--block {
    width: 100%
}

/* Mobile menu button */
.nav-toggle {
    display: none;
    width: 46px;
    height: 42px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .06);
    color: var(--text);
    cursor: pointer;
}

.nav-toggle__bars {
    display: block;
    width: 18px;
    height: 12px;
    margin: 0 auto;
    position: relative;
}

.nav-toggle__bars::before,
.nav-toggle__bars::after,
.nav-toggle__bars {
    background: transparent;
}

.nav-toggle__bars::before,
.nav-toggle__bars::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: rgba(229, 231, 235, .95);
}

.nav-toggle__bars::before {
    top: 3px
}

.nav-toggle__bars::after {
    bottom: 0
}

.nav-toggle__bars {
    border-top: 2px solid rgba(229, 231, 235, .95);
}

/* Main */
.main {
    padding: 16px 0 40px
}

/* Breadcrumbs */
.crumbs {
    padding: 14px var(--pad) 6px
}

.crumbs__list {
    list-style: none;
    display: flex;
    gap: 10px;
    padding: 0;
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    flex-wrap: wrap;
}

.crumbs__list li {
    display: flex;
    align-items: center;
    gap: 10px
}

.crumbs__list li:not(:last-child)::after {
    content: "/";
    opacity: .55;
}



.h1 {
    margin: 0 0 10px;
    font-size: 34px;
    line-height: 1.15;
    letter-spacing: -.02em
}

.h2 {
    margin: 0 0 8px;
    font-size: 20px;
    letter-spacing: -.01em
}

.h3 {
    margin: 0 0 6px;
    font-size: 16px
}

.lead {
    margin: 0 0 12px;
    color: var(--muted);
    font-size: 15px
}

.rating {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .05);
    margin: 10px 0 14px;
}

.rating__icon {
    width: 18px;
    height: 18px
}

.rating__value {
    font-size: 18px
}

.rating__meta {
    color: var(--muted);
    font-size: 13px
}

.hero__cta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.hero__meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 6px;
}

.meta-item {
    padding: 10px 12px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .04);
}

.meta-item__label {
    display: block;
    color: var(--muted);
    font-size: 12px
}

.meta-item__value {
    display: block;
    font-weight: 900
}

/* Layout */
.layout {
    margin-top: 16px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
}

/* Cards */
.cards {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 14px;
    margin-bottom: 14px;
}

.card {
    border-radius: var(--radius2);
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .05);
    box-shadow: var(--shadow);
    padding: 16px;
}

.card__head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.card__head img {
    width: 18px;
    height: 18px;
    opacity: .95
}

.list {
    margin: 8px 0 0;
    padding-left: 18px;
    color: var(--muted)
}

.list li {
    margin: 6px 0
}

ul.pros,
ul.cons {
    list-style: none;
    padding-left: 0;
}

ul.pros li,
ul.cons li {
    position: relative;
    padding-left: 28px;
}

ul.pros li::before,
ul.cons li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;

    width: 18px;
    height: 18px;

    background-size: contain;
    background-repeat: no-repeat;
}

ul.pros li::before {
    background-image: url("../img/Check.svg");
}

ul.cons li::before {
    background-image: url("../img/Cross.svg");
}

/* Sections */
.section {
    border-radius: var(--radius2);
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .05);
    box-shadow: var(--shadow);
    padding: 16px;
    margin-top: 14px;
}

.section__header {
    margin-bottom: 10px
}

.muted {
    color: var(--muted);
    margin: 0
}

/* Table */
.table-wrap {
    overflow: auto;
    border-radius: 16px;
    border: 1px solid #9ca3af;
    background: rgba(255, 255, 255, 1);
}

.table {
    width: 100%;
    border-collapse: collapse;
    min-width: 620px;
    /* enables horizontal scroll on small screens */
}

.table th,
.table td {
    text-align: left;
    padding: 12px 12px;
    border-bottom: 1px solid #9ca3af;
    font-size: 14px;
}

.table th {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
    /* color: rgba(229, 231, 235, .9);
    background: rgba(255, 255, 255, .04); */
    color: #000034;
    background: rgba(255, 255, 255, 1);
}

.table tbody tr:hover td {
    /* background: rgba(243, 238, 238, 0.9) */
    background: rgba(156, 163, 175, .1);
}

.callout {
    margin-top: 12px;
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: linear-gradient(90deg, rgba(168, 85, 247, .10), rgba(236, 72, 153, .10));
}

/* Steps */
.steps {
    margin: 10px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px
}

.steps__item {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    align-items: start;
    padding: 12px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .04);
}

.steps__num {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-weight: 1000;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
}

.steps__body p {
    margin: 0;
    color: var(--muted)
}

/* Tips grid */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.tip {
    padding: 14px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .04);
}

.tip .list {
    margin-top: 6px
}

/* FAQ */
.faq {
    margin-top: 12px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .04);
    overflow: hidden;
}

.faq__q {
    list-style: none;
    cursor: pointer;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-weight: 900;
}

.faq__q img {
    width: 18px;
    height: 18px;
    opacity: .9;
    transition: transform .15s ease
}

.faq[open] .faq__q img {
    transform: rotate(180deg)
}

.faq__a {
    padding: 0 14px 14px;
    color: var(--muted)
}

/* Related */
.related {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.related__card {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 12px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .04);
}

.related__card img {
    width: 34px;
    height: 34px
}

.related__title {
    font-weight: 1000
}

.related__meta {
    color: var(--muted);
    font-size: 13px
}


/* Author */
.author {
    margin-top: 18px
}

.author__card {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 14px;
    padding: 16px;
    border-radius: var(--radius2);
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .05);
    box-shadow: var(--shadow);
}

.author__avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .03);
}

.author__meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 10px
}

.pill {
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .04);
    color: var(--text);
    font-weight: 850;
    font-size: 12px;
}

.author__links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 10px
}

.author__links a {
    color: var(--accent-1);
    font-weight: 900
}

/* Footer */
.footer {
    margin-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    background: rgba(15, 23, 42, .5);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 16px;
    padding: 22px var(--pad);
}

.footer__col a {
    display: block;
    padding: 7px 0;
    color: rgba(229, 231, 235, .92);
}

.footer__brand {
    display: flex;
    gap: 12px;
    align-items: center;
    margin: 10px 0
}

.footer__title {
    font-weight: 1000;
    color: var(--text-whihe);
}

.footer__muted {
    color: var(--text-whihe);
    font-size: 13px;
    margin: 0
}

.footer__bottom {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 14px var(--pad);
    border-top: 1px solid rgba(255, 255, 255, .10);
    color: rgba(229, 231, 235, .88);
    flex-wrap: wrap;
    margin-bottom: 0;
}

/* Disclaimer Section */
.disclaimer-section {
    display: flex;
    gap: 20px;
}

.disclaimer-img {
    display: flex;
    /* flex: 1; */
}

.disclaimer-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--radius2);
}

.disclaimer-author-box {
    display: flex;
}

.disclaimer-author,
.disclaimer-reviewer {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
}

.disclaimer-author-name-updated_date {
    display: flex;
    flex-direction: column;
}

.disclaimer-author__avatar,
.disclaimer-reviewer__avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .03);
}

#disclaimer2 {
    display: flex;
    gap: 10px; 
}

.disclaimer-label  {
    display: flex;
    align-items: flex-start;
    flex: 0 0 auto;
}

.disclaimer-label div {
    display: flex;
    align-items: center;
    gap: 5px;
}

.author-info {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 12px;
    font-size: 14px;
}

.author-label,
.reviewer-label {
    color: var(--muted);
}

.author-label a,
.reviewer-label a {
    color: var(--accent-1);
    font-weight: 700;
}

.disclaimer-box {
    padding: 14px 16px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .05);
    position: relative;
}

.disclaimer-text {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    color: var(--muted);
    max-height: 60px;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.disclaimer-box.is-expanded .disclaimer-text {
    max-height: 500px;
}

.disclaimer-toggle {
    margin-top: 10px;
    padding: 6px 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .06);
    color: var(--accent-1);
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.disclaimer-toggle:hover {
    background: rgba(255, 255, 255, .10);
}

/* Casino Comparison */
.casino-comparison {
    margin: 18px 0;
}

.casino-list {
    display: grid;
    gap: 16px;
    margin-top: 16px;
}

.casino-card {
    display: grid;
    grid-template-columns: 280px 140px 1fr 160px;
    /* Logo+Info | Rating | Bonus | Actions */
    gap: 20px;
    align-items: center;
    padding: 18px;
    border-radius: var(--radius2);
    border: 1px solid rgba(255, 255, 255, .12);
    background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .03));
    box-shadow: var(--shadow);
    transition: transform .2s, box-shadow .2s;
}

.casino-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(255, 255, 255, .2);
}

.casino-card__header {
    display: flex;
    gap: 14px;
    align-items: center;
}

.casino-logo {
    /* width: 60px;
    height: 60px;
    flex-shrink: 0; */
    border-radius: 12px;
    /* background: rgba(0, 0, 0, .3); */
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .1);
}

.casino-logo img {
    width: 125px;
    /* height: 100%; */
    /* object-fit: cover; */
    /* object-fit: contain; */
}

.casino-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.casino-name {
    margin: 0;
    font-size: 16px;
    font-weight: 800;
}

.casino-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent-1);
}

/* Rating Box */
.casino-card__rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #f5f5f5;
    padding: 8px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.rating-score {
    font-size: 18px;
    font-weight: 900;
    color: #fc5634;
}

.rating-stars {
    color: #fbbf24;
    /* Gold/Yellow */
    font-size: 14px;
    letter-spacing: 2px;
}

.rating-status {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 600;
    margin-top: 2px;
}

.casino-card__bonus {
    padding: 12px 16px;
    border-radius: 14px;
    border: 1px solid rgba(168, 85, 247, .3);
    background: #f5f5f5;
}

.bonus-title {
    font-weight: 700;
    color: #000034;
}

.casino-card__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

/* Article TOC */
.article-toc {
    margin-top: 20px;
    padding: 16px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .05);
}

.toc-title {
    margin: 0 0 12px;
    font-size: 16px;
    font-weight: 900;
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-list li {
    margin: 6px 0;
}

.toc-list a {
    display: block;
    padding: 8px 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .04);
    color: var(--accent-1);
    font-weight: 700;
    font-size: 14px;
    transition: background 0.2s ease;
}

.toc-list a:hover {
    background: rgba(255, 255, 255, .08);
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg);
    border-top: 1px solid var(--border);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.2s ease;
    min-height: 480px;
}

.mega-sidebar {
    width: 260px;
    background: rgba(0, 0, 0, 0.2);
    border-right: 1px solid var(--border);
    padding: 20px 0;
    display: flex;
    flex-direction: column;
}

.mega-sidebar a {
    padding: 12px 24px;
    color: var(--text);
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    transition: background 0.15s ease;
}

.mega-sidebar a:hover,
.mega-sidebar a.active {
    background: var(--accent-1);
    color: white;
}

.mega-sidebar a::after {
    content: "›";
    font-size: 18px;
    opacity: 0.7;
}

.mega-content {
    flex: 1;
    padding: 30px;
    overflow-y: auto;
}

.mega-group {
    display: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    animation: fadeIn 0.2s ease-out;
}

.mega-group.active {
    display: grid;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mega-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mega-title {
    color: var(--accent-1);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.mega-col a {
    color: var(--muted);
    font-size: 13px;
    text-decoration: none;
    transition: color 0.15s ease;
}

.mega-col a:hover {
    color: var(--text);
}

/* Caret */
.caret {
    display: inline-block;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    margin-left: 6px;
    vertical-align: middle;
    transition: transform 0.2s ease;
    opacity: 0.7;
}

/* Brand Accent */
.brand__accent {
    color: var(--accent-1);
}

/* Search Button */
.btn-search {
    background: transparent;
    border: none;
    color: var(--text-whihe);
    padding: 8px;
    cursor: pointer;
    border-radius: 12px;
    transition: background 0.15s ease;
}

.btn-search:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* =========================
   Responsive (Mobile first parity)
========================= */

/* <= 1024px */
@media (max-width: 1024px) {
    .container {
        padding: 0 16px;
        /* Reduce padding slightly */
    }

    .hero__grid {
        grid-template-columns: 1fr
    }

    .layout {
        grid-template-columns: 1fr
    }

    .sidebar .sticky {
        position: relative;
        top: auto
    }

    .related {
        grid-template-columns: 1fr 1fr
    }
}

/* <= 820px */
@media (max-width: 820px) {
    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center
    }

    .nav {
        position: fixed;
        right: 0;
        left: 0;
        top: 104px;
        height: calc(100vh - 104px);
        overflow-y: auto;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 20px var(--pad);
        border: none;
        border-top: 1px solid rgba(255, 255, 255, .1);
        background: rgba(11, 18, 32, .99);
        box-shadow: none;
        z-index: 40;
        /* Below header z-index of 50 */
        box-sizing: border-box;
        -webkit-overflow-scrolling: touch;
        width: 100vw;
        /* Full viewport width */
        margin: 0;
    }

    .nav.is-open {
        display: flex;
        justify-content: flex-start;
    }

    .nav__list {
        flex-direction: column;
        align-items: stretch;
        gap: 6px
    }

    .nav__link {
        justify-content: flex-start
    }

    .nav__actions {
        flex-direction: column
    }

    .nav__actions .btn-search {
        width: 100%;
        background: rgba(255, 255, 255, 0.1);
    }

    .cards {
        grid-template-columns: 1fr
    }

    .hero__meta {
        grid-template-columns: 1fr 1fr
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr
    }

    /* Adjust mega menu for mobile */
    .mega-menu {
        position: static !important;
        display: none !important;
        /* Hidden by default on mobile */
        flex-direction: column;
        width: 100%;
        min-height: auto;
        margin-top: 8px;
        border-radius: 12px;
        background: rgba(0, 0, 0, 0.4);
        padding: 12px;
        visibility: hidden;
        opacity: 0;
    }

    .nav__item--mega:hover .mega-menu,
    .nav__item--mega:focus-within .mega-menu {
        display: flex !important;
        visibility: visible;
        opacity: 1;
    }

    .mega-sidebar {
        width: 100%;
        background: transparent;
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 0 0 12px 0;
        margin-bottom: 12px;
    }

    .mega-sidebar a {
        padding: 10px 16px;
        font-size: 13px;
        width: 100%;
        color: white;
    }

    .mega-content {
        padding: 0;
        overflow-x: auto;
        overflow-y: visible;
        -webkit-overflow-scrolling: touch;
    }

    .mega-group {
        display: none;
        flex-direction: row;
        gap: 25px;
        width: max-content;
        min-width: 100%;
        padding-bottom: 5px;
    }

    .mega-group.active {
        display: flex;
    }

    .mega-col {
        flex-shrink: 0;
        min-width: 180px;
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .mega-title {
        font-size: 11px;
        margin-bottom: 8px;
        white-space: nowrap;
    }

    .mega-col a {
        font-size: 12px;
        padding: 6px 0;
        white-space: nowrap;
    }

    /* Adjust dropdowns for mobile */
    .dropdown-menu {
        position: static;
        width: 100%;
        margin-top: 8px;
        border-radius: 12px;
        background: rgba(0, 0, 0, 0.4);
        display: none;
        /* Hidden by default */
        visibility: hidden;
        opacity: 0;
    }

    .nav__item--dropdown:hover .dropdown-menu,
    .nav__item--dropdown:focus-within .dropdown-menu {
        display: flex;
        visibility: visible;
        opacity: 1;
    }

    .dropdown-menu a {
        width: 100%;
    }

    /* Show dropdowns on mobile when parent is hovered/active */
    .nav__item--dropdown:hover .dropdown-menu,
    .nav__item--dropdown:focus-within .dropdown-menu {
        position: static;
    }

    .nav__item--dropdown:hover .dropdown-menu {
        width: 100%;
        border-radius: 12px;
        background: rgba(0, 0, 0, 0.4);
    }

    /* Full width nav items */
    .nav__link {
        width: 100%;
    }

    /* Disclaimer Section Mobile */
    .disclaimer-section {
        flex-direction: column;
    }

    .disclaimer-author-box {
        flex-direction: column;
        gap: 0;
    }

    .disclaimer-author,
    .disclaimer-reviewer {
        padding: 10px 0;
    }

    .disclaimer-img {
        width: 100%;
    }
}

/* <= 520px */
@media (max-width: 520px) {
    .topbar__text {
        display: none
    }

    .h1 {
        font-size: 28px
    }

    .hero__content {
        padding: 16px
    }

    .hero__cta .btn {
        width: 100%
    }

    .hero__meta {
        grid-template-columns: 1fr
    }

    .related {
        grid-template-columns: 1fr
    }

    .author__card {
        grid-template-columns: 1fr
    }

    .author__avatar {
        width: 96px;
        height: 96px
    }

    .footer__grid {
        grid-template-columns: 1fr
    }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
    * {
        scroll-behavior: auto !important
    }

    .btn {
        transition: none
    }

    .faq__q img {
        transition: none
    }

}

/* Mega Menu */
/* Mega Menu & Simple Dropdown */
.nav__item--dropdown {
    position: relative;
    cursor: pointer;
}

.nav__item--mega {
    position: static;
    /* Full width for mega menu */
}

/* Mega Menu Visibility */
.nav__item--mega:hover .mega-menu {
    display: flex;
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

/* Simple Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 240px;
    background: #353535;
    /* Dark background to match header */
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-radius: 0 0 12px 12px;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.2s ease;
    z-index: 1000;
}

.nav__item--dropdown:hover .dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-menu a {
    padding: 12px 20px;
    color: var(--text-whihe);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.15s, color 0.15s;
    display: block;
    line-height: 1.4;
}

.dropdown-menu a:hover {
    background: var(--accent-1);
    color: white;
}

/* Intermediate breakdown to prevent 4-column grid crunch */
@media (max-width: 900px) {
    .casino-card {
        display: flex;
        /* Switch to flex column earlier */
        flex-direction: column;
        gap: 12px;
        padding: 16px;
        height: auto;
    }

    .casino-card__header,
    .casino-card__rating,
    .casino-card__bonus,
    .casino-card__actions {
        width: 100%;
        text-align: center;
        margin: 0;
    }

    .casino-card__header {
        justify-content: center;
    }

    .casino-card__actions {
        grid-template-columns: 1fr;
    }
}

/* Mobile Casino Cards (Refinement) */
@media (max-width: 768px) {
    .casino-comparison {
        width: 100%;
        padding: 0 !important;
        border: none;
        background: transparent;
        box-shadow: none;
    }

    .casino-list {
        display: flex;
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }

    .casino-card {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 12px 8px !important;
        /* Minimal constrained padding */
        width: 100%;
        max-width: 100%;
        min-width: 0;
        margin: 0;
        box-sizing: border-box;
        overflow-x: hidden;
        /* Hide internal overflow but allow layout to flow */
    }

    /* Universal safety for card contents on mobile */
    .casino-card * {
        max-width: 100%;
        box-sizing: border-box;
        overflow-wrap: anywhere;
        /* Aggressive breaking */
        word-break: break-word;
    }

    .casino-card__header {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .casino-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .casino-name {
        word-break: break-word;
        font-size: 18px;
        /* Slightly larger for readability */
    }

    .casino-logo {
        width: 70px;
        height: 70px;
        margin: 0 auto;
    }

    .casino-card__rating {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
        background: rgba(0, 0, 0, 0.3);
        padding: 8px 12px;
        width: 100%;
        border-radius: 12px;
    }

    .rating-score {
        font-size: 16px;
    }

    .rating-status {
        margin-top: 0;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        padding-left: 10px;
        display: flex;
        align-items: center;
    }

    .casino-card__bonus {
        width: 100%;
        padding: 12px;
        box-sizing: border-box;
        /* Ensure padding doesn't overflow width */
    }

    .bonus-title {
        word-break: break-word;
        overflow-wrap: break-word;
        font-size: 14px;
        line-height: 1.4;
    }

    .casino-badge {
        white-space: normal;
        /* Allow wrapping */
        font-size: 10px;
    }

    .casino-card__actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }
}


/* Author section */

        .author-section {
            background: #e9e9e9;
            padding: 80px 20px;
        }
        
        .author-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 60px;
        }
        
        .author-avatar img {
            width: 260px;
            height: 260px;
            border-radius: 50%;
            object-fit: cover;
        }
        
        .author-content {
            max-width: 700px;
        }
        
        .author-label {
            font-size: 16px;
            color: #555;
            margin-bottom: 10px;
        }
        
        .author-name {
            font-size: 56px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #111;
        }
        
        .author-description {
            font-size: 18px;
            line-height: 1.7;
            color: #333;
            margin-bottom: 20px;
        }
        
        .author-experience {
            font-size: 16px;
            color: #666;
            margin-bottom: 30px;
        }
        
        .author-btn {
            display: inline-block;
            background: #ff6b3d;
            color: #fff;
            padding: 14px 28px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            transition: 0.3s ease;
        }
        
        .author-btn:hover {
            background: #e55a2e;
        }
        @media (max-width: 992px) {
            .author-container {
                flex-direction: column;
                text-align: center;
                gap: 40px;
            }
        
            .author-name {
                font-size: 42px;
            }
        }
        
        
        .other-authors {
            background: #f2f2f2;
            padding: 80px 20px;
        }
        
        .section-title {
            text-align: center;
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 60px;
            color: #111;
        }
        
        .authors-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }
        
        .author-card {
            background: #fff;
            padding: 40px 30px;
            border-radius: 8px;
            text-align: center;
            border: 1px solid #e3e3e3;
            transition: 0.3s ease;
        }
        
        .author-card:hover {
            box-shadow: 0 8px 30px rgba(0,0,0,0.08);
            transform: translateY(-4px);
        }
        
        .author-img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 20px;
        }
        
        .author-name {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 15px;
            color: #111;
        }
        
        .author-text {
            font-size: 16px;
            line-height: 1.6;
            color: #555;
            margin-bottom: 20px;
        }
        
        .author-link {
            color: #ff6b3d;
            font-weight: 600;
            text-decoration: none;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
        }
        
        .author-link:hover {
            border-bottom: 2px solid #ff6b3d;
        }
        @media (max-width: 1100px) {
            .authors-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 600px) {
            .authors-grid {
                grid-template-columns: 1fr;
            }
        
            .section-title {
                font-size: 30px;
            }
        }
    
    