*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
--white: #ffffff;
--bg: #fafafa;
--text: #111827;
--text-mid: #374151;
--text-light: #6b7280;
--border: #e5e7eb;
--border-light: #f3f4f6;
--accent: #dc2626;
--accent-hover: #b91c1c;
--accent-soft: #fef2f2;
--blue: #2563eb;
--blue-soft: #eff6ff;
--green: #059669;
--green-soft: #ecfdf5;
--amber: #d97706;
--amber-soft: #fffbeb;
--purple: #7c3aed;
--purple-soft: #f5f3ff;
--shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
--shadow-md: 0 4px 12px rgba(0,0,0,0.06);
--shadow-lg: 0 12px 32px rgba(0,0,0,0.08);
--radius: 12px;
--radius-lg: 16px;
--radius-xl: 20px;
--max-w: 900px;
--transition: .2s ease;
}
html { scroll-behavior: smooth; }
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
background: var(--bg);
color: var(--text);
line-height: 1.7;
font-size: 16px;
-webkit-font-smoothing: antialiased;
}
a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }
img { max-width: 100%; height: auto; display: block; }

/* === HEADER === */
.site-header {
background: var(--white);
border-bottom: 1px solid var(--border);
position: sticky; top: 0; z-index: 100;
backdrop-filter: blur(12px);
background: rgba(255,255,255,0.92);
}
.header-inner {
max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
display: flex; align-items: center; justify-content: space-between; height: 68px;
}
.logo { display: flex; align-items: center; gap: 8px; font-weight: 800; font-size: 19px; color: var(--text); letter-spacing: -0.4px; }
.logo span { color: var(--accent); }
.header-nav { display: flex; gap: 24px; }
.header-nav a { color: var(--text-light); font-size: 14px; font-weight: 500; }
.header-nav a:hover { color: var(--accent); }

/* === HERO === */
.hero {
max-width: var(--max-w); margin: 0 auto;
padding: 56px 24px 40px;
}
.hero h1 {
font-family: 'DM Serif Display', Georgia, serif;
font-size: clamp(32px, 6vw, 48px);
font-weight: 400;
line-height: 1.15;
color: var(--text);
margin-bottom: 20px;
max-width: 680px;
}
.hero-intro {
font-size: 17px; color: var(--text-mid);
line-height: 1.8; max-width: 640px; margin-bottom: 0;
}

/* === AUTHOR STRIP === */
.author-strip {
max-width: var(--max-w); margin: 0 auto; padding: 0 24px 40px;
display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
}
.author-avatar {
width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
background: linear-gradient(135deg, #818cf8, #6366f1);
display: flex; align-items: center; justify-content: center;
color: #fff; font-weight: 700; font-size: 17px;
}
.author-meta { font-size: 14px; line-height: 1.5; }
.author-meta strong { color: var(--text); font-weight: 600; }
.author-meta span { color: var(--text-light); }
.meta-sep { color: var(--border); margin: 0 6px; }

/* === LAYOUT === */
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* === CASINO CARDS — NEW APPROACH === */
.casino-grid { display: flex; flex-direction: column; gap: 24px; padding-bottom: 56px; }

.c-card {
background: var(--white);
border: 1px solid var(--border);
border-radius: var(--radius-xl);
overflow: hidden;
transition: box-shadow .3s, transform .3s;
}
.c-card:hover {
box-shadow: var(--shadow-lg);
transform: translateY(-3px);
}
.c-card-banner {
width: 100%;
aspect-ratio: 4 / 1;
display: flex;
align-items: center;
justify-content: center;
font-weight: 800;
font-size: clamp(24px, 4vw, 36px);
color: var(--white);
letter-spacing: -0.5px;
position: relative;
overflow: hidden;
}
.c-card-banner::after {
content: '';
position: absolute; inset: 0;
background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.15) 100%);
}
.c-card-banner span { position: relative; z-index: 1; text-shadow: 0 2px 8px rgba(0,0,0,0.2); }
.c-rank {
position: absolute; top: 16px; left: 16px; z-index: 2;
width: 36px; height: 36px; border-radius: 10px;
background: rgba(0,0,0,0.35); backdrop-filter: blur(6px);
color: #fff; font-size: 15px; font-weight: 700;
display: flex; align-items: center; justify-content: center;
}
.c-card-body { padding: 24px 28px 28px; }
.c-card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 14px; flex-wrap: wrap; }
.c-card-name { font-size: 22px; font-weight: 700; color: var(--text); }
.c-bonus-pill {
display: inline-flex; align-items: center; gap: 5px;
background: var(--amber-soft); color: #92400e;
font-size: 13px; font-weight: 600;
padding: 6px 12px; border-radius: 8px; white-space: nowrap;
}
.c-bonus-pill svg { flex-shrink: 0; }
.c-desc {
font-size: 15px; color: var(--text-mid);
line-height: 1.7; margin-bottom: 18px;
}
.c-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.c-tag {
font-size: 12px; font-weight: 500;
background: var(--border-light); color: var(--text-light);
padding: 4px 10px; border-radius: 6px;
}
.c-card-footer {
display: flex; align-items: center; justify-content: space-between;
padding-top: 18px; border-top: 1px solid var(--border-light);
gap: 12px; flex-wrap: wrap;
}
.c-highlights { display: flex; gap: 20px; flex-wrap: wrap; }
.c-hl {
display: flex; flex-direction: column; gap: 2px;
}
.c-hl-label { font-size: 11px; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600; }
.c-hl-value { font-size: 14px; font-weight: 700; color: var(--text); }
.btn-play {
display: inline-flex; align-items: center; justify-content: center;
background: var(--accent); color: var(--white);
font-size: 15px; font-weight: 700;
padding: 14px 36px; border-radius: 12px;
border: none; cursor: pointer;
transition: background var(--transition), transform .15s;
text-decoration: none; white-space: nowrap;
}
.btn-play:hover { background: var(--accent-hover); transform: scale(1.03); color: var(--white); }

/* === SECTION HEADINGS === */
.s-heading {
font-family: 'DM Serif Display', Georgia, serif;
font-size: clamp(24px, 4vw, 34px);
font-weight: 400; color: var(--text);
margin: 56px 0 24px; line-height: 1.2;
}
.s-heading:first-child { margin-top: 0; }
.s-subheading {
font-size: 20px; font-weight: 700; color: var(--text);
margin: 36px 0 14px;
}

/* === TOC === */
.toc {
background: var(--white);
border: 1px solid var(--border);
border-radius: var(--radius-lg);
padding: 24px 28px; margin-bottom: 36px;
}
.toc-title { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: var(--text-light); margin-bottom: 14px; }
.toc ol { padding-left: 20px; margin: 0; }
.toc li { margin-bottom: 7px; font-size: 14px; line-height: 1.5; }
.toc a { color: var(--text-mid); font-weight: 500; }
.toc a:hover { color: var(--accent); }

/* === CONTENT BLOCK === */
.content p { margin-bottom: 16px; color: var(--text-mid); line-height: 1.8; font-size: 15px; }
.content ul, .content ol { margin: 0 0 20px 20px; color: var(--text-mid); }
.content li { margin-bottom: 8px; line-height: 1.7; font-size: 15px; }
.content figure { margin: 32px 0; text-align: center; }
.content figure img { border-radius: var(--radius-lg); margin: 0 auto; }
.content figcaption { font-size: 13px; color: var(--text-light); margin-top: 10px; font-style: italic; }
.content table {
width: 100%; border-collapse: collapse; margin: 24px 0;
font-size: 14px; background: var(--white);
border-radius: var(--radius-lg); overflow: hidden;
border: 1px solid var(--border);
}
.content thead { background: var(--border-light); }
.content th { padding: 14px 16px; text-align: left; font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-light); }
.content td { padding: 14px 16px; border-top: 1px solid var(--border-light); color: var(--text-mid); }
.content tbody tr:hover { background: var(--border-light); }
.content blockquote {
border-left: 4px solid var(--accent);
padding: 20px 24px; margin: 28px 0;
background: var(--accent-soft);
border-radius: 0 var(--radius) var(--radius) 0;
}
.content blockquote p { margin-bottom: 0; color: var(--text); font-style: italic; font-size: 15px; }
.video-wrap {
position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;
margin: 32px 0; border-radius: var(--radius-lg); background: #000;
}
.video-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

/* === CALLOUT BOXES === */
.callout {
border-radius: var(--radius-lg); padding: 24px 28px;
margin: 28px 0; display: flex; gap: 14px; align-items: flex-start;
}
.callout-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.callout-body p { margin: 0; font-size: 14px; line-height: 1.7; }
.callout-tip { background: var(--green-soft); border: 1px solid #a7f3d0; }
.callout-tip .callout-body p { color: #065f46; }
.callout-warn { background: var(--amber-soft); border: 1px solid #fde68a; }
.callout-warn .callout-body p { color: #78350f; }
.callout-info { background: var(--blue-soft); border: 1px solid #bfdbfe; }
.callout-info .callout-body p { color: #1e40af; }

/* === PROS/CONS === */
.proscons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 24px 0; }
.proscons-col { border-radius: var(--radius); padding: 20px; }
.proscons-col.pros { background: var(--green-soft); border: 1px solid #a7f3d0; }
.proscons-col.cons { background: var(--accent-soft); border: 1px solid #fecaca; }
.proscons-col h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; }
.proscons-col.pros h4 { color: #065f46; }
.proscons-col.cons h4 { color: #991b1b; }
.proscons-col ul { list-style: none; padding: 0; margin: 0; }
.proscons-col li { font-size: 14px; padding: 4px 0; line-height: 1.6; }
.proscons-col.pros li::before { content: '✓ '; color: var(--green); font-weight: 700; }
.proscons-col.cons li::before { content: '✗ '; color: var(--accent); font-weight: 700; }
.proscons-col li { color: var(--text-mid); }

/* === FAQ === */
.faq-list { margin-bottom: 52px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
width: 100%; padding: 20px 0; background: none; border: none;
text-align: left; font-size: 16px; font-weight: 600; color: var(--text);
cursor: pointer; display: flex; justify-content: space-between; align-items: center;
font-family: inherit; line-height: 1.5; gap: 16px;
}
.faq-q::after {
content: '+'; font-size: 22px; font-weight: 300; color: var(--text-light);
transition: transform .2s; flex-shrink: 0;
}
.faq-item.open .faq-q::after { content: '\2212'; }
.faq-a {
display: none; padding: 0 0 20px;
font-size: 15px; color: var(--text-mid); line-height: 1.75;
}
.faq-item.open .faq-a { display: block; }

/* === REVIEWS === */
.reviews-masonry { columns: 2; column-gap: 16px; margin-bottom: 52px; }
.rev-card {
background: var(--white); border: 1px solid var(--border);
border-radius: var(--radius-lg); padding: 24px;
break-inside: avoid; margin-bottom: 16px;
}
.rev-stars { color: var(--amber); font-size: 14px; margin-bottom: 10px; letter-spacing: 1px; }
.rev-text { font-size: 14px; color: var(--text-mid); line-height: 1.7; margin-bottom: 14px; font-style: italic; }
.rev-author { font-size: 13px; font-weight: 600; color: var(--text-light); }

/* === CONTACT === */
.contact-card {
background: var(--white); border: 1px solid var(--border);
border-radius: var(--radius-xl); padding: 36px;
max-width: 560px; margin-bottom: 52px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 5px; color: var(--text); }
.form-group input, .form-group textarea, .form-group select {
width: 100%; padding: 12px 14px; border: 1px solid var(--border);
border-radius: 10px; font-size: 15px; font-family: inherit;
color: var(--text); background: var(--white); transition: border-color var(--transition);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,235,0.08);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.btn-submit {
background: var(--accent); color: var(--white);
font-size: 15px; font-weight: 700; padding: 14px 36px;
border-radius: 12px; border: none; cursor: pointer;
font-family: inherit; transition: background var(--transition);
}
.btn-submit:hover { background: var(--accent-hover); }

/* === ABOUT + AUTHOR === */
.about-card {
background: var(--white); border: 1px solid var(--border);
border-radius: var(--radius-xl); padding: 36px; margin-bottom: 40px;
}
.about-card p { font-size: 15px; color: var(--text-mid); line-height: 1.8; margin-bottom: 14px; }
.about-card p:last-child { margin-bottom: 0; }

.author-card {
display: grid; grid-template-columns: 120px 1fr; gap: 28px;
background: var(--white); border: 1px solid var(--border);
border-radius: var(--radius-xl); padding: 36px; margin-bottom: 56px;
}
.author-card-photo {
width: 120px; height: 120px; border-radius: 16px;
background: linear-gradient(135deg, #818cf8, #6366f1);
display: flex; align-items: center; justify-content: center;
font-size: 40px; font-weight: 700; color: #fff;
}
.author-card-body h3 { font-size: 22px; font-weight: 700; margin: 0 0 8px; color: var(--text); }
.author-card-body .author-tagline { font-size: 13px; color: var(--text-light); margin-bottom: 14px; font-weight: 500; }
.author-card-body p { font-size: 15px; color: var(--text-mid); line-height: 1.8; margin-bottom: 10px; }
.author-card-body p:last-child { margin-bottom: 0; }

/* === FOOTER === */
.site-footer {
background: var(--white); border-top: 1px solid var(--border);
text-align: center; padding: 28px 24px;
}
.site-footer p { font-size: 13px; color: var(--text-light); }
.site-footer strong { color: var(--text); }

/* === RESPONSIVE === */
@media (max-width: 768px) {
.c-card-banner { aspect-ratio: 3 / 1; }
.c-card-body { padding: 20px; }
.c-card-top { flex-direction: column; gap: 8px; }
.c-card-footer { flex-direction: column; align-items: flex-start; }
.btn-play { width: 100%; text-align: center; }
.author-strip { padding-bottom: 32px; }
.reviews-masonry { columns: 1; }
.proscons { grid-template-columns: 1fr; }
.author-card { grid-template-columns: 1fr; justify-items: center; text-align: center; }
.form-row { grid-template-columns: 1fr; }
.content table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
}
@media (max-width: 480px) {
.hero { padding: 36px 16px 28px; }
.author-strip { padding: 0 16px 28px; }
.wrap { padding: 0 16px; }
.header-inner { padding: 0 16px; height: 56px; }
.header-nav { gap: 14px; }
.header-nav a { font-size: 13px; }
.c-card-body { padding: 16px; }
.contact-card { padding: 24px; }
}