/* Brownland - Online Casino Malaysia Review Hub
 Theme: warm earth brown + amber gold
 Layout: sticky TOP navbar (not sidebar), single-column content
*/

:root {
 /* dirtier, less “AI gold SaaS” */
 --brown-950: #1a1410;
 --brown-900: #2b2118;
 --brown-800: #3a2e24;
 --brown-700: #4a3a2c;
 --brown-600: #5c4a3a;
 --amber-500: #8a5a2b;
 --amber-400: #9a6a38;
 --amber-300: #c4a574;
 --cream: #f2efe8;
 --cream-dark: #e8e2d6;
 --text: #222;
 --muted: #666;
 --border: #ccc;
 --white: #fff;
 --bg: #f0eee9;
 --success: #2d6a3e;
 --danger: #a33;
 --shadow: none;
 --shadow-lg: none;
 --radius: 2px;
 --radius-lg: 3px;
 --container: 1100px;
 --font-sans: Arial, Helvetica, sans-serif;
 --font-display: Georgia, "Times New Roman", serif;
 --header-h: 54px;
 --nav-h: 48px;
 --transition: 0.1s linear;
}

*,
*::before,
*::after {
 box-sizing: border-box;
 margin: 0;
 padding: 0;
}

html {
 scroll-behavior: smooth;
 -webkit-text-size-adjust: 100%;
}

body {
 font-family: var(--font-sans);
 font-size: 16px;
 line-height: 1.65;
 color: var(--text);
 background: var(--bg);
 min-height: 100vh;
}

img {
 max-width: 100%;
 height: auto;
 display: block;
}

a {
 color: var(--brown-700);
 text-decoration: none;
 transition: color var(--transition);
}

a:hover {
 color: var(--amber-500);
}

ul, ol {
 padding-left: 1.25rem;
}

h1, h2, h3, h4 {
 font-family: var(--font-display);
 font-weight: 600;
 line-height: 1.25;
 color: var(--brown-900);
}

h1 { font-size: clamp(1.75rem, 4vw, 2.35rem); }
h2 { font-size: clamp(1.35rem, 3vw, 1.75rem); margin-bottom: 0.75rem; }
h3 { font-size: 1.15rem; }

p + p { margin-top: 0.85rem; }

.container {
 width: 100%;
 max-width: var(--container);
 margin: 0 auto;
 padding: 0 20px;
}

.skip-link {
 position: absolute;
 left: -9999px;
 top: 0;
 z-index: 9999;
 background: var(--brown-900);
 color: var(--white);
 padding: 12px 18px;
 font-weight: 600;
}

.skip-link:focus {
 left: 12px;
 top: 12px;
}

/* ========== Top header + navbar (NOT KTLink sidebar layout) ========== */
.bl-header {
 position: sticky;
 top: 0;
 z-index: 100;
 background: rgba(255, 255, 255, 0.97);
 backdrop-filter: blur(12px);
 border-bottom: 1px solid var(--border);
 box-shadow: 0 1px 0 rgba(44, 24, 16, 0.04), var(--shadow);
}

.bl-header__bar {
 display: flex;
 align-items: center;
 gap: 18px;
 min-height: var(--header-h);
 max-width: var(--container);
 margin: 0 auto;
 padding: 0 20px;
}

.bl-logo {
 display: inline-flex;
 align-items: center;
 flex-shrink: 0;
 line-height: 0;
 color: var(--brown-900);
 margin-right: 8px;
}

.bl-logo:hover { opacity: 0.92; color: var(--brown-900); }

.bl-logo__img {
 display: block;
 width: 190px;
 height: auto;
 max-height: 40px;
 object-fit: contain;
}

.footer-brand__logo {
 display: block;
 width: 180px;
 height: auto;
 max-height: 36px;
 object-fit: contain;
}

/* Desktop top nav - sharp, no capsules */
.top-nav {
 display: flex;
 align-items: center;
 gap: 0;
 flex: 1;
 min-width: 0;
}

.top-nav__link {
 display: inline-flex;
 align-items: center;
 gap: 6px;
 padding: 8px 11px;
 font-size: 0.88rem;
 font-weight: 600;
 color: var(--brown-800);
 border-radius: 0;
 border-bottom: 2px solid transparent;
 white-space: nowrap;
 transition: color var(--transition), border-color var(--transition), background var(--transition);
}

.top-nav__link:hover,
.top-nav__link.is-active {
 background: transparent;
 color: var(--amber-500);
 border-bottom-color: var(--amber-500);
}

.top-nav__item {
 position: relative;
}

.top-nav__item--dropdown:hover .top-nav__dropdown,
.top-nav__item--dropdown:focus-within .top-nav__dropdown {
 opacity: 1;
 visibility: visible;
 transform: translateY(0);
}

.top-nav__dropdown {
 position: absolute;
 top: calc(100% + 4px);
 left: 0;
 min-width: 200px;
 padding: 6px 0;
 background: var(--white);
 border: 1px solid var(--border);
 border-radius: 4px;
 box-shadow: var(--shadow-lg);
 opacity: 0;
 visibility: hidden;
 transform: translateY(4px);
 transition: opacity 0.15s, transform 0.15s, visibility 0.15s;
 z-index: 120;
}

.top-nav__dropdown a {
 display: block;
 padding: 10px 14px;
 font-size: 0.86rem;
 font-weight: 600;
 color: var(--text);
 border-radius: 0;
}

.top-nav__dropdown a:hover,
.top-nav__dropdown a.is-active {
 background: var(--cream);
 color: var(--amber-500);
}

.top-nav__chevron {
 font-size: 0.65rem;
 opacity: 0.7;
}

.bl-header__promo {
 display: inline-flex;
 align-items: center;
 gap: 8px;
 padding: 9px 14px;
 background: var(--amber-500);
 color: var(--white) !important;
 font-weight: 700;
 font-size: 0.82rem;
 border-radius: 4px;
 white-space: nowrap;
 flex-shrink: 0;
 box-shadow: none;
 transition: background var(--transition);
}

.bl-header__promo:hover {
 background: var(--amber-400);
 color: var(--white) !important;
 transform: none;
 box-shadow: none;
}

.nav-toggle {
 display: none;
 align-items: center;
 justify-content: center;
 width: 40px;
 height: 40px;
 border: 1px solid var(--border);
 border-radius: 4px;
 background: var(--white);
 color: var(--brown-800);
 cursor: pointer;
 font-size: 1.15rem;
 flex-shrink: 0;
}

/* Mobile menu: clean list, no card capsules */
.mobile-nav {
 display: none;
 border-top: 1px solid var(--border);
 background: var(--white);
 max-height: 0;
 overflow: hidden;
 transition: max-height 0.25s ease;
}

body.nav-open .mobile-nav {
 max-height: min(85vh, 640px);
 overflow-y: auto;
 -webkit-overflow-scrolling: touch;
}

.mobile-nav__inner {
 max-width: var(--container);
 margin: 0 auto;
 padding: 0 0 16px;
}

.mobile-nav__list {
 list-style: none;
 padding: 0;
 margin: 0;
 display: flex;
 flex-direction: column;
 gap: 0;
}

.mobile-nav__list > li {
 border-bottom: 1px solid var(--border);
}

.mobile-nav__list > li:last-child {
 border-bottom: none;
}

.mobile-nav__list a,
.mobile-nav__list button {
 display: flex;
 width: 100%;
 align-items: center;
 justify-content: space-between;
 padding: 14px 16px;
 font-family: inherit;
 font-size: 0.95rem;
 font-weight: 600;
 color: var(--brown-900);
 background: transparent;
 border: none;
 border-radius: 0;
 text-align: left;
 cursor: pointer;
 text-decoration: none;
}

.mobile-nav__list a:hover,
.mobile-nav__list button:hover,
.mobile-nav__list a:active,
.mobile-nav__list button:active {
 background: var(--cream);
 color: var(--brown-900);
 border-color: transparent;
}

.mobile-nav__sub {
 list-style: none;
 padding: 0;
 margin: 0;
 display: none;
 background: var(--cream);
 border-top: 1px solid var(--border);
}

.mobile-nav__item.is-open > .mobile-nav__sub {
 display: block;
}

.mobile-nav__item.is-open > .mobile-nav__toggle i {
 transform: rotate(180deg);
}

.mobile-nav__sub a {
 font-size: 0.9rem;
 font-weight: 500;
 padding: 12px 16px 12px 28px;
 color: var(--muted);
 border-bottom: 1px solid var(--border);
 background: transparent;
}

.mobile-nav__sub li:last-child a {
 border-bottom: none;
}

.mobile-nav__sub a:hover {
 color: var(--brown-900);
 background: var(--cream-dark);
}

.mobile-nav__cta {
 display: block;
 margin: 12px 16px 0;
 text-align: center;
 border-radius: 4px !important;
}

.nav-backdrop {
 display: none;
 position: fixed;
 inset: 0;
 top: var(--header-h);
 background: rgba(28, 16, 8, 0.4);
 z-index: 90;
}

body.nav-open .nav-backdrop {
 display: block;
}

/* ========== Layout: single column ========== */
.page-body {
 display: block;
 max-width: var(--container);
 margin: 0 auto;
 width: 100%;
 padding: 28px 20px 56px;
}

.page-body > .site-main {
 min-width: 0;
 width: 100%;
}

/* hide legacy sidebar if any leftover markup */
.site-sidebar,
.sidebar-backdrop,
.sidebar-toggle {
 display: none !important;
}

/* ========== Buttons (no pill/capsule) ========== */
.btn {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 gap: 8px;
 padding: 11px 18px;
 font-family: inherit;
 font-weight: 700;
 font-size: 0.9rem;
 border-radius: 4px;
 border: 2px solid transparent;
 cursor: pointer;
 text-decoration: none;
 transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.btn-cta {
 background: var(--amber-500);
 color: var(--white) !important;
 box-shadow: none;
}

.btn-cta:hover {
 background: var(--amber-400);
 color: var(--white) !important;
 transform: none;
 box-shadow: none;
}

.btn-outline {
 background: var(--white);
 border-color: var(--border);
 color: var(--brown-800) !important;
}

.btn-outline:hover {
 border-color: var(--amber-400);
 color: var(--amber-500) !important;
}

.btn-dark {
 background: var(--brown-900);
 color: var(--white) !important;
}

.btn-dark:hover {
 background: var(--brown-800);
 color: var(--white) !important;
}

.btn-sm { padding: 8px 14px; font-size: 0.8rem; }
.btn-block { width: 100%; }
.btn-block + .btn-block { margin-top: 8px; }

/* ========== Sections ========== */
.page-section {
 margin-bottom: 36px;
}

.page-section--hero {
 margin-bottom: 28px;
}

.section-label {
 display: inline-block;
 font-size: 0.72rem;
 font-weight: 700;
 text-transform: uppercase;
 letter-spacing: 0.1em;
 color: var(--amber-500);
 margin-bottom: 8px;
}

.section-title {
 margin-bottom: 12px;
}

.section-lead {
 color: var(--muted);
 font-size: 1.02rem;
 max-width: 62ch;
 margin-bottom: 20px;
}

.section-head {
 display: flex;
 flex-wrap: wrap;
 align-items: flex-end;
 justify-content: space-between;
 gap: 12px;
 margin-bottom: 18px;
}

.section-head .section-title { margin-bottom: 0; }

.meta-pill {
 display: inline-flex;
 align-items: center;
 gap: 6px;
 padding: 5px 10px;
 background: var(--cream-dark);
 border: 1px solid var(--border);
 border-radius: 4px;
 font-size: 0.78rem;
 font-weight: 600;
 color: var(--muted);
}

.content-prose {
 font-size: 0.98rem;
 color: var(--text);
}

.content-prose a {
 color: var(--amber-500);
 font-weight: 600;
 text-decoration: underline;
 text-underline-offset: 2px;
}

.content-prose ul,
.content-prose ol {
 margin: 12px 0 16px;
}

.content-prose li + li { margin-top: 6px; }

.content-prose strong { color: var(--brown-900); }

/* ========== Hero / Promo banners ========== */
.promo-banner {
 position: relative;
 border-radius: var(--radius-lg);
 overflow: hidden;
 min-height: 200px;
 background: linear-gradient(135deg, var(--brown-900) 0%, var(--brown-700) 50%, #8B5A2B 100%);
 box-shadow: var(--shadow-lg);
}

.promo-banner--hero {
 min-height: 300px;
 display: flex;
 align-items: center;
}

.promo-banner__bg {
 position: absolute;
 inset: 0;
 width: 100%;
 height: 100%;
 object-fit: cover;
 object-position: center right;
 z-index: 0;
}

.promo-banner__overlay {
 position: absolute;
 inset: 0;
 z-index: 1;
 background:
 radial-gradient(ellipse 70% 90% at 88% 45%, rgba(28, 16, 8, 0.08), transparent 50%),
 linear-gradient(100deg, rgba(28, 16, 8, 0.92) 0%, rgba(28, 16, 8, 0.78) 38%, rgba(28, 16, 8, 0.35) 62%, rgba(28, 16, 8, 0.12) 100%);
}

.promo-banner__content {
 position: relative;
 z-index: 2;
 padding: 40px 32px;
 max-width: 520px;
 color: var(--white);
}

.promo-banner__badge {
 display: inline-block;
 padding: 0 0 6px;
 margin-bottom: 12px;
 background: none;
 border: none;
 border-bottom: 2px solid var(--amber-400);
 border-radius: 0;
 font-size: 0.78rem;
 font-weight: 700;
 letter-spacing: 0.04em;
 text-transform: none;
 color: var(--amber-300);
 line-height: 1.4;
}

.promo-banner__content h1,
.promo-banner__content h2 {
 color: var(--white);
 margin-bottom: 10px;
}

.promo-banner__subtitle {
 font-size: 0.98rem;
 opacity: 0.9;
 margin-bottom: 18px;
 line-height: 1.55;
}

.promo-banner__cta .btn {
 box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.promo-banner--section {
 min-height: 160px;
 margin: 28px 0;
}

.promo-banner--section .promo-banner__content {
 padding: 28px 24px;
}

/* Trust strip */
.trust-strip {
 display: grid;
 grid-template-columns: repeat(4, 1fr);
 gap: 12px;
 margin-top: 20px;
}

.trust-item {
 background: var(--white);
 border: 1px solid var(--border);
 border-radius: var(--radius);
 padding: 14px 12px;
 text-align: center;
 box-shadow: var(--shadow);
}

.trust-item i {
 color: var(--amber-500);
 font-size: 1.15rem;
 margin-bottom: 6px;
}

.trust-item strong {
 display: block;
 font-size: 0.88rem;
 color: var(--brown-900);
 margin-bottom: 2px;
}

.trust-item span {
 font-size: 0.75rem;
 color: var(--muted);
}

/* Editorial standards */
.e-e-a-t {
 display: grid;
 grid-template-columns: repeat(2, 1fr);
 gap: 12px;
 margin-top: 16px;
}

.eeat-card {
 background: var(--white);
 border: 1px solid var(--border);
 border-radius: var(--radius);
 padding: 16px;
 box-shadow: var(--shadow);
}

.eeat-card h3 {
 font-family: var(--font-sans);
 font-size: 0.92rem;
 font-weight: 700;
 margin-bottom: 6px;
 display: flex;
 align-items: center;
 gap: 8px;
}

.eeat-card h3 i { color: var(--amber-500); font-size: 0.9rem; }

.eeat-card p {
 font-size: 0.88rem;
 color: var(--muted);
 line-height: 1.55;
}

/* ========== Filter / toolbar ========== */
.rank-toolbar {
 display: flex;
 flex-wrap: wrap;
 gap: 10px;
 align-items: center;
 margin-bottom: 18px;
 padding: 12px 14px;
 background: var(--white);
 border: 1px solid var(--border);
 border-radius: var(--radius);
 box-shadow: var(--shadow);
}

.rank-toolbar__search {
 flex: 1;
 min-width: 160px;
 position: relative;
}

.rank-toolbar__search i {
 position: absolute;
 left: 12px;
 top: 50%;
 transform: translateY(-50%);
 color: var(--muted);
 font-size: 0.85rem;
}

.rank-toolbar__search input {
 width: 100%;
 padding: 10px 12px 10px 36px;
 border: 1px solid var(--border);
 border-radius: 8px;
 font-family: inherit;
 font-size: 0.9rem;
 background: var(--cream);
 color: var(--text);
}

.rank-toolbar__search input:focus {
 outline: none;
 border-color: var(--amber-400);
 box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}

.rank-toolbar__select {
 padding: 10px 12px;
 border: 1px solid var(--border);
 border-radius: 8px;
 font-family: inherit;
 font-size: 0.85rem;
 font-weight: 600;
 background: var(--white);
 color: var(--text);
 cursor: pointer;
}

.filter-chips {
 display: flex;
 flex-wrap: wrap;
 gap: 8px;
 width: 100%;
}

.chip {
 padding: 6px 11px;
 border-radius: 4px;
 border: 1px solid var(--border);
 background: var(--cream);
 font-size: 0.78rem;
 font-weight: 600;
 color: var(--muted);
 cursor: pointer;
 font-family: inherit;
 transition: all var(--transition);
}

.chip:hover,
.chip.is-active {
 background: var(--brown-900);
 border-color: var(--brown-900);
 color: var(--white);
}

/* ========== Casino cards grid ========== */
.casino-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 16px;
}

@media (max-width: 960px) {
 .casino-grid {
 grid-template-columns: repeat(2, 1fr);
 }
}

.casino-card {
 background: var(--white);
 border: 1px solid var(--border);
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow);
 overflow: hidden;
 transition: transform var(--transition), box-shadow var(--transition);
 display: flex;
 flex-direction: column;
}

.casino-card:hover {
 transform: translateY(-3px);
 box-shadow: var(--shadow-lg);
}

.casino-card__rank {
 position: absolute;
 top: 12px;
 left: 12px;
 width: 28px;
 height: 28px;
 border-radius: 8px;
 background: var(--brown-900);
 color: var(--white);
 font-size: 0.75rem;
 font-weight: 800;
 display: grid;
 place-items: center;
 z-index: 2;
}

.casino-card__rank--top {
 background: linear-gradient(135deg, var(--amber-400), var(--amber-500));
}

.casino-card__inner {
 position: relative;
 padding: 20px 18px 16px;
 display: flex;
 flex-direction: column;
 flex: 1;
 gap: 12px;
}

.casino-card__top {
 display: flex;
 align-items: center;
 gap: 12px;
}

.casino-card__logo {
 width: 56px;
 height: 56px;
 border-radius: 12px;
 object-fit: contain;
 background: var(--white);
 border: 1px solid var(--border);
 flex-shrink: 0;
 padding: 4px;
}

.casino-card__logo-fallback {
 width: 56px;
 height: 56px;
 border-radius: 12px;
 background: linear-gradient(145deg, var(--brown-700), var(--brown-900));
 color: var(--amber-300);
 display: grid;
 place-items: center;
 font-weight: 800;
 font-size: 0.7rem;
 letter-spacing: -0.02em;
 flex-shrink: 0;
 border: 1px solid var(--border);
}

.casino-card__name {
 font-family: var(--font-display);
 font-size: 1.15rem;
 font-weight: 600;
 color: var(--brown-900);
 line-height: 1.2;
}

.casino-card__rating {
 display: flex;
 align-items: center;
 gap: 8px;
 margin-top: 4px;
}

.star-rating {
 display: inline-flex;
 gap: 2px;
 color: var(--amber-400);
 font-size: 0.78rem;
}

.star-rating__score {
 font-weight: 800;
 font-size: 0.95rem;
 color: var(--brown-900);
}

.casino-card__features {
 list-style: none;
 padding: 0;
 display: flex;
 flex-direction: column;
 gap: 6px;
 flex: 1;
}

.casino-card__features li {
 font-size: 0.85rem;
 color: var(--muted);
 display: flex;
 align-items: flex-start;
 gap: 8px;
}

.casino-card__features li i {
 color: var(--success);
 margin-top: 3px;
 font-size: 0.75rem;
}

.casino-card__offer {
 padding: 10px 12px;
 background: linear-gradient(90deg, rgba(217, 119, 6, 0.1), rgba(217, 119, 6, 0.04));
 border: 1px dashed rgba(217, 119, 6, 0.35);
 border-radius: 8px;
}

.casino-card__offer-label {
 font-size: 0.68rem;
 font-weight: 700;
 text-transform: uppercase;
 letter-spacing: 0.06em;
 color: var(--amber-500);
 margin-bottom: 2px;
}

.casino-card__offer strong {
 font-size: 0.92rem;
 color: var(--brown-900);
}

.casino-card__tags {
 display: flex;
 flex-wrap: wrap;
 gap: 6px;
}

.tag {
 font-size: 0.68rem;
 font-weight: 700;
 padding: 3px 7px;
 border-radius: 3px;
 background: var(--cream-dark);
 color: var(--muted);
 text-transform: uppercase;
 letter-spacing: 0.03em;
}

.tag--nd { background: #FEF3C7; color: #92400E; }
.tag--fast { background: #DCFCE7; color: #166534; }
.tag--live { background: #DBEAFE; color: #1E40AF; }
.tag--slot { background: #F3E8FF; color: #6B21A8; }

.casino-card__actions {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 8px;
 margin-top: auto;
}

/* Comparison table */
.table-wrap {
 overflow-x: auto;
 border: 1px solid var(--border);
 border-radius: var(--radius-lg);
 background: var(--white);
 box-shadow: var(--shadow);
 -webkit-overflow-scrolling: touch;
}

.compare-table {
 width: 100%;
 border-collapse: collapse;
 font-size: 0.88rem;
 min-width: 720px;
}

.compare-table th,
.compare-table td {
 padding: 12px 14px;
 text-align: left;
 border-bottom: 1px solid var(--border);
 vertical-align: middle;
}

.compare-table th {
 background: var(--brown-900);
 color: var(--white);
 font-size: 0.75rem;
 font-weight: 700;
 text-transform: uppercase;
 letter-spacing: 0.05em;
 white-space: nowrap;
 position: sticky;
 top: 0;
}

.compare-table tbody tr:hover {
 background: var(--cream);
}

.compare-table tbody tr:last-child td {
 border-bottom: none;
}

.compare-table__brand {
 display: flex;
 align-items: center;
 gap: 10px;
 font-weight: 700;
 color: var(--brown-900);
}

.compare-table__logo {
 width: 36px;
 height: 36px;
 border-radius: 8px;
 background: linear-gradient(145deg, var(--brown-700), var(--brown-900));
 color: var(--amber-300);
 display: grid;
 place-items: center;
 font-size: 0.6rem;
 font-weight: 800;
 flex-shrink: 0;
}

.compare-table__logo-img {
 width: 36px;
 height: 36px;
 border-radius: 8px;
 object-fit: contain;
 background: var(--white);
 border: 1px solid var(--border);
 flex-shrink: 0;
 padding: 2px;
}

.score-badge {
 display: inline-flex;
 align-items: center;
 gap: 4px;
 padding: 3px 8px;
 background: var(--cream-dark);
 border-radius: 4px;
 font-weight: 800;
 color: var(--brown-900);
}

.score-badge i { color: var(--amber-400); font-size: 0.7rem; }

/* Methodology */
.method-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 12px;
 margin-top: 16px;
}

.method-card {
 background: var(--white);
 border: 1px solid var(--border);
 border-radius: var(--radius);
 padding: 18px 16px;
 box-shadow: var(--shadow);
 counter-increment: method;
}

.method-card__num {
 width: 32px;
 height: 32px;
 border-radius: 8px;
 background: linear-gradient(135deg, var(--amber-400), var(--amber-500));
 color: var(--white);
 font-weight: 800;
 font-size: 0.85rem;
 display: grid;
 place-items: center;
 margin-bottom: 10px;
}

.method-card h3 {
 font-family: var(--font-sans);
 font-size: 0.95rem;
 font-weight: 700;
 margin-bottom: 6px;
}

.method-card p {
 font-size: 0.85rem;
 color: var(--muted);
 line-height: 1.5;
}

/* Review blocks on homepage */
.review-block {
 background: var(--white);
 border: 1px solid var(--border);
 border-radius: var(--radius-lg);
 padding: 22px;
 margin-bottom: 16px;
 box-shadow: var(--shadow);
}

.review-block__head {
 display: flex;
 flex-wrap: wrap;
 align-items: center;
 gap: 14px;
 margin-bottom: 14px;
}

.review-block__logo {
 width: 52px;
 height: 52px;
 border-radius: 12px;
 background: linear-gradient(145deg, var(--brown-700), var(--brown-900));
 color: var(--amber-300);
 display: grid;
 place-items: center;
 font-weight: 800;
 font-size: 0.65rem;
 flex-shrink: 0;
}

.review-block__meta h3 {
 margin-bottom: 4px;
}

.pros-cons {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 12px;
 margin: 14px 0;
}

.pros-cons__col {
 border-radius: var(--radius);
 padding: 14px;
 font-size: 0.88rem;
}

.pros-cons__col--pro {
 background: #F0FDF4;
 border: 1px solid #BBF7D0;
}

.pros-cons__col--con {
 background: #FEF2F2;
 border: 1px solid #FECACA;
}

.pros-cons__col h4 {
 font-family: var(--font-sans);
 font-size: 0.8rem;
 font-weight: 700;
 text-transform: uppercase;
 letter-spacing: 0.04em;
 margin-bottom: 8px;
}

.pros-cons__col--pro h4 { color: var(--success); }
.pros-cons__col--con h4 { color: var(--danger); }

.pros-cons__col ul {
 list-style: none;
 padding: 0;
}

.pros-cons__col li {
 padding: 3px 0;
 color: var(--muted);
 display: flex;
 gap: 8px;
 align-items: flex-start;
}

.pros-cons__col li i {
 margin-top: 4px;
 font-size: 0.7rem;
}

.pros-cons__col--pro li i { color: var(--success); }
.pros-cons__col--con li i { color: var(--danger); }

/* Steps */
.content-steps {
 counter-reset: step;
 list-style: none;
 padding: 0;
 margin: 16px 0;
 display: flex;
 flex-direction: column;
 gap: 12px;
}

.content-steps li {
 counter-increment: step;
 display: flex;
 gap: 14px;
 align-items: flex-start;
 background: var(--white);
 border: 1px solid var(--border);
 border-radius: var(--radius);
 padding: 14px 16px;
 box-shadow: var(--shadow);
 font-size: 0.92rem;
}

.content-steps li::before {
 content: counter(step);
 flex-shrink: 0;
 width: 30px;
 height: 30px;
 border-radius: 50%;
 background: var(--brown-900);
 color: var(--white);
 font-weight: 800;
 font-size: 0.85rem;
 display: grid;
 place-items: center;
}

/* Promo types */
.promo-types {
 display: grid;
 grid-template-columns: repeat(2, 1fr);
 gap: 12px;
 margin-top: 14px;
}

.promo-type {
 background: var(--white);
 border: 1px solid var(--border);
 border-radius: var(--radius);
 padding: 16px;
 box-shadow: var(--shadow);
}

.promo-type h3 {
 font-family: var(--font-sans);
 font-size: 0.95rem;
 font-weight: 700;
 margin-bottom: 6px;
 display: flex;
 align-items: center;
 gap: 8px;
}

.promo-type h3 i { color: var(--amber-500); }
.promo-type p { font-size: 0.86rem; color: var(--muted); }

/* FAQ accordion */
.faq-list {
 display: flex;
 flex-direction: column;
 gap: 8px;
 margin-top: 14px;
}

.faq-item {
 background: var(--white);
 border: 1px solid var(--border);
 border-radius: var(--radius);
 overflow: hidden;
 box-shadow: var(--shadow);
}

.faq-item__q {
 width: 100%;
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 12px;
 padding: 16px 18px;
 background: none;
 border: none;
 font-family: inherit;
 font-size: 0.95rem;
 font-weight: 700;
 color: var(--brown-900);
 text-align: left;
 cursor: pointer;
}

.faq-item__q i {
 color: var(--muted);
 transition: transform 0.2s;
 flex-shrink: 0;
}

.faq-item.is-open .faq-item__q i {
 transform: rotate(180deg);
 color: var(--amber-500);
}

.faq-item__body {
 display: none;
 padding: 0 18px 16px;
 font-size: 0.92rem;
 color: var(--muted);
 line-height: 1.6;
}

.faq-item.is-open .faq-item__body {
 display: block;
}

/* ========== Review page ========== */
.review-hero {
 background: var(--white);
 border: 1px solid var(--border);
 border-radius: var(--radius-lg);
 padding: 28px 24px;
 box-shadow: var(--shadow-lg);
 margin-bottom: 24px;
 display: grid;
 grid-template-columns: auto 1fr auto;
 gap: 20px;
 align-items: center;
}

.review-hero__logo {
 width: 80px;
 height: 80px;
 border-radius: 16px;
 background: linear-gradient(145deg, var(--brown-700), var(--brown-900));
 color: var(--amber-300);
 display: grid;
 place-items: center;
 font-weight: 800;
 font-size: 0.85rem;
 border: 1px solid var(--border);
}

.review-hero__logo-img {
 width: 80px;
 height: 80px;
 border-radius: 16px;
 object-fit: contain;
 background: var(--white);
 border: 1px solid var(--border);
 padding: 6px;
 box-shadow: var(--shadow);
}

.review-hero__badge {
 font-size: 0.72rem;
 font-weight: 700;
 text-transform: uppercase;
 letter-spacing: 0.08em;
 color: var(--amber-500);
 margin-bottom: 6px;
}

.review-hero__score {
 text-align: center;
 padding: 14px 18px;
 background: var(--cream);
 border-radius: var(--radius);
 border: 1px solid var(--border);
 min-width: 110px;
}

.review-hero__score strong {
 display: block;
 font-size: 2rem;
 font-family: var(--font-display);
 color: var(--brown-900);
 line-height: 1;
}

.review-hero__score span {
 font-size: 0.72rem;
 color: var(--muted);
 font-weight: 600;
}

.score-bars {
 display: flex;
 flex-direction: column;
 gap: 10px;
 margin: 16px 0;
}

.score-bar {
 display: grid;
 grid-template-columns: 140px 1fr 40px;
 gap: 10px;
 align-items: center;
 font-size: 0.85rem;
}

.score-bar__label { color: var(--muted); font-weight: 600; }
.score-bar__val { font-weight: 800; color: var(--brown-900); text-align: right; }

.score-bar__track {
 height: 8px;
 background: var(--cream-dark);
 border-radius: 4px;
 overflow: hidden;
}

.score-bar__fill {
 height: 100%;
 border-radius: 4px;
 background: linear-gradient(90deg, var(--amber-400), var(--amber-500));
}

.score-bar--rich {
 display: grid;
 grid-template-columns: 120px 1fr 40px;
 gap: 8px 10px;
 align-items: center;
 margin-bottom: 12px;
 padding-bottom: 10px;
 border-bottom: 1px dashed var(--border);
}

.score-bar--rich .score-bar__note {
 grid-column: 1 / -1;
 margin: 0;
 font-size: 0.82rem;
 color: var(--muted);
 line-height: 1.45;
}

.review-hook {
 font-size: 1.05rem;
 line-height: 1.65;
 color: var(--brown-800);
 padding: 14px 16px;
 background: linear-gradient(90deg, rgba(217, 119, 6, 0.1), transparent);
 border-left: 4px solid var(--amber-500);
 border-radius: 0 10px 10px 0;
}

.template-review .guide-toc ol {
 columns: 1;
}

@media (min-width: 720px) {
 .template-review .guide-toc ol {
 columns: 2;
 }
}

.breadcrumb {
 display: flex;
 flex-wrap: wrap;
 gap: 6px;
 align-items: center;
 font-size: 0.82rem;
 color: var(--muted);
 margin-bottom: 16px;
}

.breadcrumb a { color: var(--muted); font-weight: 500; }
.breadcrumb a:hover { color: var(--amber-500); }
.breadcrumb span { color: var(--brown-900); font-weight: 600; }

.card-box {
 background: var(--white);
 border: 1px solid var(--border);
 border-radius: var(--radius-lg);
 padding: 22px;
 margin-bottom: 18px;
 box-shadow: var(--shadow);
}

.card-box h2 {
 margin-bottom: 12px;
 padding-bottom: 10px;
 border-bottom: 1px solid var(--border);
}

.info-grid {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 12px;
 margin-top: 12px;
}

.info-grid--dense {
 grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 900px) {
 .info-grid--dense {
 grid-template-columns: repeat(3, 1fr);
 }
}

.info-grid--dense .info-cell {
 padding: 10px 12px;
}

.info-grid--dense .info-cell dd {
 font-size: 0.86rem;
 line-height: 1.4;
 font-weight: 600;
}

.info-cell {
 background: var(--cream);
 border-radius: 8px;
 padding: 12px 14px;
}

.info-cell dt {
 font-size: 0.72rem;
 font-weight: 700;
 text-transform: uppercase;
 letter-spacing: 0.05em;
 color: var(--muted);
 margin-bottom: 4px;
}

.info-cell dd {
 font-weight: 600;
 color: var(--brown-900);
 font-size: 0.92rem;
}

/* Contact */
.contact-panel__grid {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 28px;
 align-items: start;
}

.contact-methods {
 display: flex;
 flex-direction: column;
 gap: 16px;
}

.contact-method {
 display: flex;
 gap: 14px;
 align-items: flex-start;
}

.contact-method__icon {
 display: flex;
 align-items: center;
 justify-content: center;
 width: 42px;
 height: 42px;
 flex-shrink: 0;
 border-radius: 10px;
 background: var(--cream-dark);
 color: var(--amber-500);
 font-size: 1rem;
}

.contact-method__title {
 font-family: var(--font-display);
 font-size: 1rem;
 margin-bottom: 4px;
}

.contact-method__body p {
 font-size: 0.9rem;
 line-height: 1.5;
}

.contact-method__note {
 color: var(--muted);
 font-size: 0.8rem !important;
}

.contact-form__row { margin-bottom: 14px; }

.contact-form__label {
 display: block;
 font-size: 0.85rem;
 font-weight: 600;
 color: var(--brown-900);
 margin-bottom: 6px;
}

.contact-form__input {
 width: 100%;
 padding: 11px 14px;
 font-family: inherit;
 font-size: 0.92rem;
 color: var(--text);
 background: var(--white);
 border: 1px solid var(--border);
 border-radius: var(--radius);
 transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-form__input:focus {
 outline: none;
 border-color: var(--amber-400);
 box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}

.contact-form__textarea {
 resize: vertical;
 min-height: 120px;
}

.contact-form__hint {
 font-size: 0.8rem;
 color: var(--muted);
 margin-bottom: 14px;
}

/* ========== Footer ========== */
.site-footer {
 background: var(--brown-950);
 color: rgba(255, 255, 255, 0.78);
 padding: 48px 0 0;
 margin-top: 24px;
}

.footer-grid {
 display: grid;
 grid-template-columns: 1.4fr 1fr 1fr 1fr;
 gap: 28px;
 max-width: var(--container);
 margin: 0 auto;
 padding: 0 20px 36px;
}

.footer-brand__name {
 display: inline-block;
 margin-bottom: 12px;
 line-height: 0;
 color: var(--white);
}

.footer-brand__name:hover {
 opacity: 0.9;
 color: var(--white);
}

.footer-brand__desc {
 font-size: 0.88rem;
 line-height: 1.6;
 max-width: 32ch;
}

.footer-col__title {
 font-family: var(--font-sans);
 font-size: 0.78rem;
 font-weight: 700;
 text-transform: uppercase;
 letter-spacing: 0.08em;
 color: var(--amber-300);
 margin-bottom: 14px;
}

.footer-col__links {
 list-style: none;
 padding: 0;
}

.footer-col__links a {
 color: rgba(255, 255, 255, 0.72);
 font-size: 0.88rem;
 display: block;
 padding: 4px 0;
}

.footer-col__links a:hover {
 color: var(--amber-300);
}

.footer-col__text {
 font-size: 0.85rem;
 line-height: 1.55;
}

.footer-trust {
 border-top: 1px solid rgba(255, 255, 255, 0.1);
 padding: 22px 20px;
 max-width: var(--container);
 margin: 0 auto;
}

.footer-trust__title {
 font-size: 0.72rem;
 font-weight: 700;
 text-transform: uppercase;
 letter-spacing: 0.08em;
 color: rgba(255, 255, 255, 0.45);
 margin-bottom: 12px;
}

.footer-trust__badges {
 display: flex;
 flex-wrap: wrap;
 gap: 10px;
 margin-bottom: 16px;
}

.footer-trust__badges span {
 display: inline-flex;
 align-items: center;
 gap: 6px;
 padding: 5px 10px;
 background: rgba(255, 255, 255, 0.06);
 border: 1px solid rgba(255, 255, 255, 0.1);
 border-radius: 4px;
 font-size: 0.75rem;
 font-weight: 600;
}

.footer-trust__browsers {
 display: flex;
 flex-wrap: wrap;
 gap: 8px;
}

.browser-badge {
 display: inline-flex;
 align-items: center;
 gap: 6px;
 padding: 5px 10px;
 background: rgba(255, 255, 255, 0.05);
 border-radius: 6px;
 font-size: 0.72rem;
 color: rgba(255, 255, 255, 0.65);
}

.footer-bottom {
 border-top: 1px solid rgba(255, 255, 255, 0.1);
 padding: 16px 20px;
 text-align: center;
 font-size: 0.78rem;
 color: rgba(255, 255, 255, 0.45);
}

.footer-note {
 max-width: var(--container);
 margin: 0 auto;
 padding: 0 20px 20px;
 font-size: 0.78rem;
 line-height: 1.55;
 color: rgba(255, 255, 255, 0.4);
}

/* Scroll top */
.scroll-top {
 position: fixed;
 right: 20px;
 bottom: 20px;
 width: 44px;
 height: 44px;
 border-radius: 50%;
 background: var(--brown-900);
 color: var(--white);
 border: none;
 cursor: pointer;
 box-shadow: var(--shadow-lg);
 z-index: 80;
 display: grid;
 place-items: center;
 transition: transform var(--transition), opacity var(--transition);
}

.scroll-top:hover {
 transform: translateY(-2px);
 background: var(--amber-500);
}

/* Homepage long-form article */
.home-article {
 padding: 28px 26px 24px;
}

.article-meta {
 display: flex;
 flex-wrap: wrap;
 gap: 10px 18px;
 margin: -4px 0 20px;
 font-size: 0.82rem;
 font-weight: 600;
 color: var(--muted);
}

.article-meta span {
 display: inline-flex;
 align-items: center;
 gap: 6px;
}

.article-meta i {
 color: var(--amber-500);
 font-size: 0.85rem;
}

.article-body h3 {
 font-family: var(--font-display);
 font-size: 1.12rem;
 margin: 22px 0 10px;
 color: var(--brown-900);
}

.article-body p {
 margin-bottom: 0.9rem;
 line-height: 1.7;
}

.article-footer {
 display: flex;
 flex-wrap: wrap;
 gap: 10px;
 margin-top: 22px;
 padding-top: 18px;
 border-top: 1px solid var(--border);
}

.teaser-points {
 margin: 14px 0;
 padding-left: 1.15rem;
}

.teaser-points li {
 margin: 8px 0;
 color: var(--muted);
 line-height: 1.55;
}

.teaser-points strong {
 color: var(--brown-900);
}

.home-teaser .content-prose p:last-child {
 margin-bottom: 0;
}

.guide-toc {
 background: var(--cream);
 border: 1px solid var(--border);
 border-radius: var(--radius);
 padding: 16px 18px;
 margin: 0 0 20px;
}

.guide-toc a {
 color: var(--brown-700);
 font-weight: 600;
}

.guide-toc a:hover {
 color: var(--amber-500);
}

.article-body h2 {
 font-family: var(--font-display);
 font-size: 1.2rem;
 margin: 26px 0 10px;
 color: var(--brown-900);
 scroll-margin-top: 90px;
}

/* Highlight box */
.highlight-box {
 background: linear-gradient(135deg, rgba(217, 119, 6, 0.08), rgba(217, 119, 6, 0.02));
 border-left: 4px solid var(--amber-500);
 border-radius: 0 var(--radius) var(--radius) 0;
 padding: 14px 16px;
 margin: 16px 0;
 font-size: 0.92rem;
}

.highlight-box strong { color: var(--brown-900); }

/* Empty state for filter */
.casino-card.is-hidden { display: none; }
.no-results {
 display: none;
 text-align: center;
 padding: 40px 20px;
 color: var(--muted);
 background: var(--white);
 border: 1px dashed var(--border);
 border-radius: var(--radius);
}

.no-results.is-visible { display: block; }

/* ========== Responsive ========== */
@media (max-width: 1024px) {
 .top-nav { display: none; }
 .nav-toggle { display: inline-flex; }
 .mobile-nav { display: block; }

 /* mobile header: logo + claim + hamburger, clean */
 .bl-header__bar {
   gap: 10px;
   padding: 0 14px;
   min-height: 56px;
 }

 .bl-logo {
   margin-right: auto;
 }

 .bl-logo__img {
   width: 148px;
   max-height: 34px;
 }

 .bl-header__promo {
   order: 2;
   padding: 8px 12px;
   font-size: 0.75rem;
 }

 .nav-toggle {
   order: 3;
 }

 .method-grid { grid-template-columns: repeat(2, 1fr); }
 .trust-strip { grid-template-columns: repeat(2, 1fr); }
 .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}

@media (max-width: 1100px) and (min-width: 1025px) {
 .top-nav__link { padding: 8px 9px; font-size: 0.82rem; }
 .bl-logo__img { width: 160px; }
}

@media (max-width: 768px) {
 .casino-grid { grid-template-columns: 1fr; }
 .top-nav { display: none; }
 .e-e-a-t { grid-template-columns: 1fr; }
 .pros-cons { grid-template-columns: 1fr; }
 .promo-types { grid-template-columns: 1fr; }
 .method-grid { grid-template-columns: 1fr; }
 .contact-panel__grid { grid-template-columns: 1fr; }
 .info-grid { grid-template-columns: 1fr; }
 .review-hero {
 grid-template-columns: 1fr;
 text-align: center;
 justify-items: center;
 }
 .review-hero__score { width: 100%; }
 .casino-card__actions { grid-template-columns: 1fr; }
 .score-bar { grid-template-columns: 1fr; gap: 4px; }
 .score-bar__val { text-align: left; }
 .footer-grid { grid-template-columns: 1fr; }
 .promo-banner__content { padding: 24px 18px; max-width: 100%; }
 .promo-banner--hero { min-height: 280px; }
 .promo-banner__bg { object-position: 70% center; }
 .promo-banner__overlay {
 background: linear-gradient(180deg, rgba(28, 16, 8, 0.55) 0%, rgba(28, 16, 8, 0.88) 100%);
 }
 .bl-logo__img { width: 150px; max-height: 34px; }
}

@media (max-width: 480px) {
 .trust-strip { grid-template-columns: 1fr 1fr; }
 .rank-toolbar { flex-direction: column; align-items: stretch; }
}

/* Print */
@media print {
 .bl-header, .site-sidebar, .scroll-top, .sidebar-toggle, .bl-header__promo { display: none !important; }
 .page-body { display: block; padding: 0; }
 body { background: white; color: black; }
}

/* ============================================================
   ANTI-SAAS / less AI polish pass
   Flat, slightly rough review-site look. No glass, no soft glow.
   ============================================================ */

body {
  background: #efece6;
  color: #222;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.55;
}

h1, h2, h3, h4,
.section-title,
.casino-card__name,
.contact-method__title,
.contact-form__heading {
  font-family: Georgia, "Times New Roman", serif !important;
  font-weight: 700;
  letter-spacing: 0 !important;
}

.bl-header {
  background: #fff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 2px solid #333;
  box-shadow: none;
}

.bl-header__promo {
  background: #6b4423 !important;
  border-radius: 2px !important;
  box-shadow: none !important;
  text-transform: none;
}

.bl-header__promo:hover {
  background: #54351c !important;
}

.top-nav__link:hover,
.top-nav__link.is-active {
  color: #6b4423;
  border-bottom-color: #6b4423;
}

.bl-logo__img {
  width: 170px;
  max-height: 40px;
}

.page-body {
  padding-top: 18px;
}

/* kill soft cards */
.card-box,
.casino-card,
.trust-item,
.eeat-card,
.method-card,
.promo-type,
.faq-item,
.rank-toolbar,
.review-hero,
.home-article,
.table-wrap,
.site-sidebar__card {
  box-shadow: none !important;
  border: 1px solid #bbb !important;
  border-radius: 2px !important;
  background: #fff;
}

.casino-card:hover {
  transform: none !important;
  border-color: #666 !important;
}

.section-label {
  color: #6b4423;
  letter-spacing: 0.04em;
  font-size: 0.7rem;
  font-family: Arial, Helvetica, sans-serif;
}

.btn,
.btn-cta,
.btn-outline,
.btn-dark {
  border-radius: 2px !important;
  box-shadow: none !important;
  transform: none !important;
  font-family: Arial, Helvetica, sans-serif;
}

.btn-cta {
  background: #6b4423 !important;
  border: 1px solid #54351c !important;
}

.btn-cta:hover {
  background: #54351c !important;
}

.btn-outline {
  border: 1px solid #888 !important;
  background: #fff !important;
  color: #333 !important;
}

.btn-outline:hover {
  border-color: #333 !important;
  color: #000 !important;
  background: #f5f5f0 !important;
}

/* hero: flatter, less cinematic SaaS */
.promo-banner {
  border-radius: 2px !important;
  box-shadow: none !important;
  border: 1px solid #444;
  background: #2b2118 !important;
}

.promo-banner--hero {
  min-height: 260px;
}

.promo-banner__overlay {
  background: linear-gradient(90deg, rgba(20, 14, 10, 0.92) 0%, rgba(20, 14, 10, 0.75) 45%, rgba(20, 14, 10, 0.35) 100%) !important;
}

.promo-banner__badge {
  border-bottom: 1px solid #c4a574 !important;
  color: #e8dcc8 !important;
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.promo-banner__content h1 {
  font-size: clamp(1.45rem, 3.5vw, 1.95rem);
}

.trust-strip {
  gap: 8px;
}

.trust-item {
  padding: 12px 10px;
}

.trust-item i {
  color: #6b4423 !important;
}

.chip,
.tag,
.meta-pill,
.score-badge,
.footer-trust__badges span {
  border-radius: 2px !important;
}

.chip.is-active,
.chip:hover {
  background: #333 !important;
  border-color: #333 !important;
}

.score-bar__fill {
  background: #6b4423 !important;
}

.site-footer {
  background: #1a1410 !important;
}

.footer-col__title {
  color: #c4a574 !important;
  letter-spacing: 0.06em;
}

a {
  color: #5c3a1e;
}

a:hover {
  color: #000;
  text-decoration: underline;
}

.top-nav__link:hover,
.bl-header a:hover,
.bl-header__promo:hover {
  text-decoration: none;
}

.rank-toolbar {
  background: #f7f4ee;
}

.faq-item__q {
  font-family: Arial, Helvetica, sans-serif;
}

.review-hook {
  background: #f7f4ee;
  border-left: 3px solid #6b4423;
  border-radius: 0;
}

.guide-toc {
  background: #f7f4ee;
  border-radius: 2px;
}

.compare-table th {
  background: #2b2118 !important;
}

.casino-card__logo,
.review-hero__logo-img,
.compare-table__logo-img {
  border-radius: 2px !important;
}

.scroll-top {
  border-radius: 2px !important;
  background: #333 !important;
}

.scroll-top:hover {
  background: #6b4423 !important;
}

/* slightly uneven vertical rhythm = less template-perfect */
.page-section {
  margin-bottom: 28px;
}

.card-box {
  padding: 18px 16px;
}

@media (max-width: 1024px) {
  .bl-logo__img {
    width: 140px !important;
    max-height: 32px !important;
  }
  .bl-header {
    border-bottom-width: 2px;
  }
  .mobile-nav {
    border-top: 2px solid #333;
  }
}
