:root {
    --primary: #0F172A;
    --primary-light: #1E293B;
    --accent: #F59E0B;
    --accent-hover: #D97706;
    --green: #10B981;
    --green-bg: #ECFDF5;
    --green-border: #A7F3D0;
    --red: #EF4444;
    --red-bg: #FEF2F2;
    --blue: #3B82F6;
    --blue-bg: #EFF6FF;
    --blue-border: #BFDBFE;
    --text: #1E293B;
    --text-light: #64748B;
    --text-lighter: #94A3B8;
    --bg: #F8FAFC;
    --white: #FFFFFF;
    --border: #E2E8F0;
    --border-light: #F1F5F9;
    --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --radius: 8px;
    --radius-lg: 12px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

/* Header */
.site-header {
    background: var(--primary);
    color: var(--white);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.site-header .container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 20px; font-weight: 800; color: var(--white); text-decoration: none; letter-spacing: -0.5px; }
.logo span { color: var(--accent); }
.header-nav { display: flex; gap: 4px; align-items: center; }
.header-nav > a, .nav-dropdown > .nav-link {
    color: var(--text-lighter);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s, background 0.2s;
    padding: 10px 14px;
    border-radius: 6px;
}
.header-nav > a:hover, .nav-dropdown > .nav-link:hover { color: var(--white); background: rgba(255,255,255,0.08); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > .nav-link { cursor: pointer; display: flex; align-items: center; gap: 4px; padding: 10px 14px; }
.nav-dropdown > .nav-link::after { content: ''; border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 5px solid currentColor; margin-top: 1px; }
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: -12px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 12px 28px rgba(0,0,0,0.15), 0 4px 10px rgba(0,0,0,0.08);
    min-width: 270px;
    padding: 6px 0;
    z-index: 9999;
    border: 1px solid var(--border);
}
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    height: 20px;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.15s, padding-left 0.15s;
}
.dropdown-menu a:hover { background: var(--blue-bg); color: var(--primary); padding-left: 24px; }
.dropdown-menu .dropdown-label {
    padding: 8px 20px 4px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-lighter);
    font-weight: 700;
}

/* Container */
.container { max-width: 900px; margin: 0 auto; padding: 0 20px; }

/* Breadcrumb */
.breadcrumb { padding: 12px 0; font-size: 13px; color: var(--text-light); }
.breadcrumb a { color: var(--blue); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* Hero */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, #1a2744 50%, #0c1929 100%);
    color: var(--white);
    padding: 60px 0 50px;
    text-align: center;
}
.hero h1 { font-size: 36px; font-weight: 800; line-height: 1.2; margin-bottom: 16px; letter-spacing: -0.5px; }
.hero .subtitle { font-size: 18px; color: var(--text-lighter); max-width: 650px; margin: 0 auto 24px; line-height: 1.6; }
.hero-meta { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; font-size: 13px; color: var(--text-lighter); }
.page-hero { padding: 50px 0 40px; }
.page-hero h1 { font-size: 32px; margin-bottom: 12px; }

/* Sections */
.content-section {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin: 24px auto;
    max-width: 900px;
    box-shadow: var(--shadow);
}
.content-section h2 { font-size: 26px; font-weight: 700; margin-bottom: 16px; color: var(--primary); line-height: 1.3; }
.content-section h3 { font-size: 20px; font-weight: 600; margin: 28px 0 12px; color: var(--primary); }
.content-section h4 { font-size: 17px; font-weight: 600; margin: 20px 0 8px; color: var(--primary); }
.content-section p { margin-bottom: 16px; color: var(--text); }
.content-section ul { margin: 0 0 16px 0; list-style: none; }
.content-section ol { margin: 0 0 16px 24px; }
.content-section ul li { margin-bottom: 10px; padding-left: 28px; position: relative; }
.content-section ul li::before { content: ''; position: absolute; left: 0; top: 7px; width: 8px; height: 8px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), #e88d00); }
.content-section ol li { margin-bottom: 10px; }
.content-section a { color: var(--blue); text-decoration: none; }
.content-section a:hover { text-decoration: underline; }

/* CTA Buttons */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: var(--primary) !important;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 13px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}
.cta-button:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(245,158,11,0.4); }
.cta-button-large { padding: 14px 32px; font-size: 15px; border-radius: 8px; }
.cta-button-green { background: linear-gradient(135deg, var(--green), #059669); color: var(--white) !important; }
.cta-button-green:hover { box-shadow: 0 4px 12px rgba(16,185,129,0.4); }

/* Info Boxes */
.info-box { padding: 16px 20px; border-radius: var(--radius); margin: 20px 0; font-size: 14px; }
.info-box.tip { background: #ECFDF5; border-left: 4px solid #10B981; }
.info-box.warning { background: #FEF3C7; border-left: 4px solid #F59E0B; }
.info-box.danger { background: #FEF2F2; border-left: 4px solid #EF4444; }
.info-box strong { display: block; margin-bottom: 4px; }

/* Tables */
.comparison-table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 14px; }
.comparison-table thead th {
    background: var(--primary); color: var(--white); padding: 12px 16px; text-align: left;
    font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px;
}
.comparison-table tbody td { padding: 14px 16px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.comparison-table tbody tr:hover { background: var(--blue-bg); }
.speed-badge { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.speed-instant { background: #ECFDF5; color: #059669; }
.speed-fast { background: #FEF3C7; color: #B45309; }

/* Review Stat Grid */
.review-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
    margin: 20px 0;
}
.review-stat {
    text-align: center;
    padding: 16px 12px;
    background: var(--bg);
    border-radius: var(--radius);
}
.review-stat .stat-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-light); margin-bottom: 4px; }
.review-stat .stat-value { font-size: 18px; font-weight: 700; color: var(--primary); }
.review-stat .stat-value.highlight { color: #059669; }

/* Pros/Cons */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 20px 0; }
.pros-box, .cons-box { padding: 20px; border-radius: var(--radius); font-size: 14px; }
.pros-box { background: #ECFDF5; border-left: 3px solid #10B981; }
.cons-box { background: #FEF2F2; border-left: 3px solid #EF4444; }
.pros-box strong, .cons-box strong { display: block; margin-bottom: 10px; font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px; }
.pros-box ul, .cons-box ul { list-style: none; margin: 0; padding: 0; }
.pros-box li, .cons-box li { padding-left: 26px; position: relative; margin-bottom: 10px; }
.pros-box li::before { content: '\2713'; position: absolute; left: 0; top: 0; font-weight: 700; font-size: 15px; color: #10B981; }
.cons-box li::before { content: '\2717'; position: absolute; left: 0; top: 0; font-weight: 700; font-size: 15px; color: #EF4444; }
.pros-box li { color: #065F46; }
.cons-box li { color: #991B1B; }

/* Steps */
.steps { counter-reset: step; margin: 20px 0; }
.step { display: flex; gap: 16px; margin-bottom: 20px; counter-increment: step; }
.step::before {
    content: counter(step); flex-shrink: 0; width: 36px; height: 36px;
    background: var(--accent); color: var(--primary); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px;
}
.step-content h4 { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.step-content p { font-size: 14px; color: var(--text-light); margin: 0; }

/* FAQ */
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; }
.faq-question {
    width: 100%; background: var(--white); border: none; padding: 18px 24px; text-align: left;
    font-size: 16px; font-weight: 600; color: var(--primary); cursor: pointer;
    display: flex; justify-content: space-between; align-items: center; font-family: inherit;
}
.faq-question:hover { background: var(--bg); }
.faq-question::after { content: '+'; font-size: 22px; font-weight: 300; color: var(--text-light); }
.faq-item.active .faq-question::after { content: '\2212'; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-item.active .faq-answer { max-height: 500px; padding: 0 24px 18px; }
.faq-answer p { font-size: 15px; color: var(--text-light); margin: 0; }

/* Casino Header Banner (for review pages) */
.casino-banner {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    padding: 30px;
    border-radius: var(--radius-lg);
    margin: 24px auto;
    max-width: 900px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    color: var(--white);
}
.casino-banner .banner-logo {
    background: var(--white);
    border-radius: 8px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
}
.casino-banner .banner-logo img { max-width: 120px; height: auto; }
.casino-banner .banner-info { flex: 1; }
.casino-banner .banner-info .banner-title { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.casino-banner .banner-info .banner-bonus { font-size: 22px; font-weight: 800; color: var(--accent); }
.casino-banner .banner-info .banner-detail { font-size: 13px; color: var(--text-lighter); margin-top: 4px; }

/* Responsible Gambling */
.rg-section {
    background: var(--primary); color: var(--white); border-radius: var(--radius-lg);
    padding: 40px; margin: 24px auto; max-width: 900px;
}
.rg-section h2 { color: var(--white); }
.rg-section p { color: var(--text-lighter); }
.rg-resources { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin-top: 20px; }
.rg-resource { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); padding: 16px; }
.rg-resource .rg-name { font-weight: 700; font-size: 15px; margin-bottom: 4px; }
.rg-resource .rg-contact { font-size: 14px; color: var(--accent); }
.rg-resource .rg-desc { font-size: 13px; color: var(--text-lighter); margin-top: 4px; }

/* Footer */
.site-footer { background: var(--primary); color: var(--text-lighter); padding: 40px 0 24px; margin-top: 40px; }
.footer-content { max-width: 900px; margin: 0 auto; padding: 0 20px; }
.footer-disclaimer { font-size: 12px; line-height: 1.8; color: var(--text-lighter); border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; margin-top: 20px; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; margin-bottom: 16px; }
.footer-links a { color: var(--text-lighter); text-decoration: none; font-size: 13px; }
.footer-links a:hover { color: var(--white); }

/* Guide Cards */
.guide-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin: 20px 0; }
.guide-card { border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; transition: box-shadow 0.2s; }
.guide-card:hover { box-shadow: var(--shadow-md); }
.guide-card h3 { font-size: 17px; margin: 0 0 8px; }
.guide-card p { font-size: 14px; color: var(--text-light); margin: 0; }

/* Responsive */
@media (max-width: 768px) {
    .hero h1, .page-hero h1 { font-size: 24px; }
    .hero .subtitle { font-size: 15px; }
    .content-section { padding: 24px 20px; margin: 16px 12px; }
    .header-nav { display: none; }
    .pros-cons { grid-template-columns: 1fr; }
    .review-stats { grid-template-columns: repeat(2, 1fr); }
    .comparison-table { font-size: 12px; }
    .comparison-table thead th, .comparison-table tbody td { padding: 8px 10px; }
    .casino-banner { flex-direction: column; text-align: center; }
    .rg-resources { grid-template-columns: 1fr; }
}
