:root {
    --navy: #0A1628;
    --navy-light: #132038;
    --navy-mid: #1a2d4a;
    --gold: #C9A84C;
    --gold-light: #E8D48B;
    --gold-dark: #A68A30;
    --white: #FFFFFF;
    --grey-50: #F8F9FA;
    --grey-100: #F0F2F5;
    --grey-200: #E2E5EA;
    --grey-300: #CED2D9;
    --grey-400: #9BA3AE;
    --grey-500: #6B7280;
    --grey-600: #4B5563;
    --grey-700: #374151;
    --grey-800: #1F2937;
    --green: #16A34A;
    --green-light: #DCFCE7;
    --red: #DC2626;
    --red-light: #FEE2E2;
    --blue: #2563EB;
    --blue-light: #DBEAFE;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --shadow-sm: 0 1px 2px rgba(10,22,40,0.06);
    --shadow-md: 0 4px 12px rgba(10,22,40,0.08);
    --shadow-lg: 0 8px 24px rgba(10,22,40,0.12);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --max-width: 1200px;
    --header-height: 70px;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--grey-700);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--navy);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--gold-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--navy);
    line-height: 1.3;
    font-weight: 700;
}

h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 0.75rem; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); margin-bottom: 0.5rem; }
h4 { font-size: 1.125rem; margin-bottom: 0.5rem; font-family: var(--font-body); font-weight: 600; }

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

.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--navy);
    color: var(--white);
    padding: 8px 24px;
    z-index: 10000;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    font-size: 14px;
}
.skip-link:focus {
    top: 0;
    color: var(--white);
}

/* Age Banner */
.age-banner {
    background: var(--navy);
    color: var(--grey-300);
    font-size: 12px;
    padding: 6px 0;
    text-align: center;
}
.age-banner .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}
.age-banner a {
    color: var(--gold);
    font-weight: 600;
    font-size: 12px;
}
.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--red);
    color: var(--white);
    font-weight: 700;
    font-size: 11px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    flex-shrink: 0;
    line-height: 1;
}

/* Header */
.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--grey-200);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    transition: box-shadow 0.3s ease;
}
.site-header.scrolled {
    box-shadow: var(--shadow-md);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}
.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    color: var(--navy);
    font-weight: 400;
}
.site-logo:hover { color: var(--navy); }
.logo-text { font-family: var(--font-body); letter-spacing: -0.02em; }
.logo-text strong { font-weight: 700; }

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 4px;
}
.main-nav a {
    display: block;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--grey-600);
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}
.main-nav a:hover,
.main-nav a.active {
    color: var(--navy);
    background: var(--grey-100);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--navy-mid) 100%);
    color: var(--white);
    padding: clamp(3rem, 8vw, 5rem) 0;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.hero-content {
    max-width: 700px;
    position: relative;
    z-index: 1;
}
.hero h1 {
    color: var(--white);
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
}
.hero h1 .accent {
    color: var(--gold);
}
.hero .subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--grey-300);
    margin-bottom: 2rem;
    line-height: 1.6;
}
.hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    font-family: var(--font-body);
    line-height: 1.4;
}
.btn-primary {
    background: var(--gold);
    color: var(--navy);
}
.btn-primary:hover {
    background: var(--gold-light);
    color: var(--navy);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(201,168,76,0.3);
}
.btn-secondary {
    background: rgba(255,255,255,0.12);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.25);
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.2);
    color: var(--white);
}
.btn-outline {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}
.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
}
.btn-sm {
    padding: 8px 18px;
    font-size: 13px;
}
.btn-visit {
    background: var(--green);
    color: var(--white);
}
.btn-visit:hover {
    background: #15803d;
    color: var(--white);
    transform: translateY(-1px);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 24px;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}
.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--grey-400);
}
.trust-badge svg {
    width: 20px;
    height: 20px;
    fill: var(--gold);
    flex-shrink: 0;
}

/* Sections */
.section {
    padding: clamp(3rem, 6vw, 5rem) 0;
}
.section-alt {
    background: var(--grey-50);
}
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 2.5rem;
}
.section-header p {
    color: var(--grey-500);
    font-size: 1.05rem;
}
.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold-dark);
    margin-bottom: 8px;
}

/* Comparison Table */
.comparison-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    background: var(--white);
}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    min-width: 700px;
}
.comparison-table thead {
    background: var(--navy);
    color: var(--white);
}
.comparison-table th {
    padding: 14px 16px;
    font-weight: 600;
    text-align: left;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-family: var(--font-body);
    white-space: nowrap;
}
.comparison-table td {
    padding: 16px;
    border-bottom: 1px solid var(--grey-100);
    vertical-align: middle;
}
.comparison-table tbody tr:hover {
    background: var(--grey-50);
}
.comparison-table tbody tr:last-child td {
    border-bottom: none;
}
.casino-name {
    font-weight: 600;
    color: var(--navy);
    font-size: 15px;
}
.casino-features {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}
.feature-tag {
    display: inline-block;
    padding: 3px 8px;
    background: var(--blue-light);
    color: var(--blue);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
    white-space: nowrap;
}
.table-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

/* Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}
.card {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--grey-200);
    padding: 28px;
    transition: all 0.3s ease;
}
.card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.card h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
}
.card h3 a { color: var(--navy); }
.card h3 a:hover { color: var(--gold-dark); }

/* Review Card */
.review-card {
    display: flex;
    flex-direction: column;
}
.review-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--grey-100);
}
.review-card-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: var(--grey-500);
    margin-bottom: 12px;
}
.review-card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}
.review-card-actions {
    margin-top: auto;
    display: flex;
    gap: 10px;
    padding-top: 16px;
}

/* Star Rating */
.star-rating { display: inline-flex; gap: 2px; }
.star-rating .star { fill: var(--grey-200); }
.star-rating .star.filled { fill: var(--gold); }
.star-rating .star.half { fill: var(--gold); opacity: 0.6; }

/* Info Box */
.info-box {
    background: var(--blue-light);
    border-left: 4px solid var(--blue);
    padding: 20px 24px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 1.5rem 0;
}
.info-box p { color: var(--grey-700); font-size: 14px; }

.warning-box {
    background: var(--red-light);
    border-left: 4px solid var(--red);
    padding: 20px 24px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 1.5rem 0;
}

.success-box {
    background: var(--green-light);
    border-left: 4px solid var(--green);
    padding: 20px 24px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 1.5rem 0;
}

/* Responsible Gambling Section */
.rg-section {
    background: var(--navy);
    color: var(--white);
    padding: clamp(2.5rem, 5vw, 4rem) 0;
}
.rg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}
.rg-item {
    text-align: center;
    padding: 24px;
}
.rg-item svg {
    width: 40px;
    height: 40px;
    fill: var(--gold);
    margin-bottom: 12px;
}
.rg-item h3 {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    margin-bottom: 8px;
}
.rg-item p {
    color: var(--grey-400);
    font-size: 14px;
}

/* Responsible Gambling Bar */
.responsible-gambling-bar {
    background: var(--grey-50);
    border-top: 1px solid var(--grey-200);
    padding: 24px 0;
}
.rg-bar-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}
.rg-bar-inner p {
    font-size: 13px;
    color: var(--grey-500);
    max-width: 600px;
}
.rg-links {
    display: flex;
    gap: 16px;
}
.rg-links a {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border: 1px solid var(--grey-200);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
}
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    background: var(--white);
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    text-align: left;
    font-family: var(--font-body);
    transition: background 0.2s;
}
.faq-question:hover {
    background: var(--grey-50);
}
.faq-question .faq-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    fill: var(--grey-400);
}
.faq-item.open .faq-question .faq-icon {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-answer-inner {
    padding: 0 20px 20px;
    font-size: 14px;
    color: var(--grey-600);
    line-height: 1.7;
}

/* Content */
.content-section {
    max-width: 800px;
    margin: 0 auto;
}
.content-section h2 { margin-top: 2rem; }
.content-section ul, .content-section ol {
    margin: 1rem 0 1.5rem 1.5rem;
    color: var(--grey-600);
}
.content-section li { margin-bottom: 0.5rem; }

/* Page Header */
.page-header {
    background: var(--grey-50);
    padding: clamp(2rem, 4vw, 3rem) 0;
    border-bottom: 1px solid var(--grey-200);
}
.page-header h1 { margin-bottom: 0.5rem; }
.page-header .lead {
    font-size: 1.1rem;
    color: var(--grey-500);
    max-width: 680px;
}

/* Breadcrumb */
.breadcrumb {
    padding: 12px 0;
    font-size: 13px;
}
.breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 4px;
    align-items: center;
}
.breadcrumb li::after {
    content: '›';
    margin-left: 6px;
    color: var(--grey-400);
}
.breadcrumb li:last-child::after { content: ''; }
.breadcrumb a { color: var(--grey-500); }
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb [aria-current] { color: var(--navy); font-weight: 500; }

/* Contact Form */
.contact-form {
    max-width: 600px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--grey-700);
    margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--grey-300);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-family: var(--font-body);
    color: var(--grey-700);
    background: var(--white);
    transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

/* Two-column layout */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Footer */
.site-footer {
    background: var(--navy);
    color: var(--grey-400);
    padding: 3rem 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 32px;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-col h3 {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.footer-col p {
    font-size: 13px;
    line-height: 1.7;
}
.footer-col ul {
    list-style: none;
}
.footer-col li {
    margin-bottom: 8px;
}
.footer-col a {
    color: var(--grey-400);
    font-size: 13px;
    transition: color 0.2s;
}
.footer-col a:hover {
    color: var(--gold);
}
.footer-disclaimer {
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-disclaimer p {
    font-size: 12px;
    line-height: 1.7;
    margin-bottom: 10px;
}
.footer-disclaimer a {
    color: var(--gold);
}
.footer-bottom {
    padding: 1.5rem 0;
    text-align: center;
    font-size: 13px;
}

/* Pros Cons */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 1.5rem 0;
}
.pros, .cons {
    padding: 20px;
    border-radius: var(--radius-sm);
}
.pros { background: var(--green-light); }
.cons { background: var(--red-light); }
.pros h4 { color: var(--green); }
.cons h4 { color: var(--red); }
.pros ul, .cons ul {
    list-style: none;
    margin: 12px 0 0;
}
.pros li::before { content: '✓ '; color: var(--green); font-weight: 700; }
.cons li::before { content: '✗ '; color: var(--red); font-weight: 700; }
.pros li, .cons li {
    font-size: 14px;
    margin-bottom: 6px;
    color: var(--grey-700);
}

/* Key Facts */
.key-facts {
    background: var(--grey-50);
    border: 1px solid var(--grey-200);
    border-radius: var(--radius-md);
    padding: 24px;
    margin: 1.5rem 0;
}
.key-facts h3 {
    font-family: var(--font-body);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--grey-200);
}
.key-facts dl,
dl.key-facts {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 10px 16px;
    background: var(--grey-50);
    border: 1px solid var(--grey-200);
    border-radius: var(--radius-md);
    padding: 24px;
    margin: 1.5rem 0;
}
.key-facts dt, dl.key-facts dt {
    font-size: 13px;
    font-weight: 600;
    color: var(--grey-500);
}
.key-facts dd, dl.key-facts dd {
    font-size: 14px;
    color: var(--navy);
    font-weight: 500;
}

/* Payment Icons */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
}
.payment-card {
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: var(--radius-sm);
    padding: 20px;
    text-align: center;
    transition: all 0.2s;
}
.payment-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-sm);
}
.payment-card h3 {
    font-family: var(--font-body);
    font-size: 1rem;
    margin-bottom: 4px;
}
.payment-card p {
    font-size: 13px;
    color: var(--grey-500);
}

/* Feature List */
.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 2rem 0;
}
.feature-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--grey-200);
}
.feature-item svg {
    width: 32px;
    height: 32px;
    fill: var(--gold);
    flex-shrink: 0;
}
.feature-item h4 { margin-bottom: 4px; }
.feature-item p { font-size: 14px; color: var(--grey-500); }

/* Internal Links */
.internal-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
    margin: 2rem 0;
}
.internal-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    background: var(--grey-50);
    border: 1px solid var(--grey-200);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    color: var(--navy);
    transition: all 0.2s;
}
.internal-link:hover {
    background: var(--white);
    border-color: var(--gold);
    color: var(--navy);
    box-shadow: var(--shadow-sm);
}
.internal-link svg {
    width: 16px;
    height: 16px;
    fill: var(--gold);
    flex-shrink: 0;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .two-col {
        grid-template-columns: 1fr;
    }
    .pros-cons {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        box-shadow: var(--shadow-lg);
        padding: 80px 24px 24px;
        transition: right 0.3s ease;
        z-index: 999;
    }
    .main-nav.open {
        right: 0;
    }
    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }
    .main-nav a {
        padding: 12px 16px;
        font-size: 16px;
        border-bottom: 1px solid var(--grey-100);
        border-radius: 0;
    }
    .hero { padding: 2.5rem 0; }
    .trust-badges { gap: 16px; }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .card-grid {
        grid-template-columns: 1fr;
    }
    .key-facts dl {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-ctas { flex-direction: column; }
    .btn { justify-content: center; width: 100%; }
    .age-banner span:not(.age-badge) { font-size: 11px; }
}

/* Print */
@media print {
    .site-header, .age-banner, .mobile-menu-toggle,
    .responsible-gambling-bar, .site-footer { display: none; }
    body { font-size: 12pt; color: #000; }
    a { color: #000; text-decoration: underline; }
}
