/* ============================================
   BEST CASINO SITES UK - Main Stylesheet
   funkysoapshop.com | Targeted at UK Players
   ============================================ */

/* --- CSS Variables --- */
:root {
    --primary: #1a1a2e;
    --secondary: #16213e;
    --accent: #e94560;
    --gold: #f5a623;
    --gold-light: #ffd700;
    --green: #27ae60;
    --green-dark: #1e8449;
    --blue: #2980b9;
    --blue-light: #3498db;
    --dark: #0f0f1a;
    --dark-card: #1c1c2e;
    --dark-border: #2a2a3e;
    --text: #e0e0e0;
    --text-muted: #a0a0b0;
    --text-light: #ccccdd;
    --white: #ffffff;
    --bg-body: #0f0f1a;
    --bg-section: #141425;
    --bg-card: #1c1c2e;
    --bg-card-hover: #242440;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
    --shadow: 0 4px 20px rgba(0,0,0,0.3);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.4);
    --transition: all 0.3s ease;
    --max-width: 1200px;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-primary);
    background: var(--bg-body);
    color: var(--text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-light); }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--white);
    line-height: 1.3;
    font-weight: 700;
}

/* --- Container --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }
.section { padding: 60px 0; }
.section-alt { background: var(--bg-section); }

/* --- Utility --- */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-green { color: var(--green); }
.text-accent { color: var(--accent); }
.text-muted { color: var(--text-muted); }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }

/* --- Top Bar --- */
.top-bar {
    background: var(--dark);
    padding: 8px 0;
    font-size: 0.8rem;
    color: var(--text-muted);
    border-bottom: 1px solid var(--dark-border);
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.top-bar a { color: var(--text-muted); font-size: 0.8rem; }
.top-bar a:hover { color: var(--gold); }
.age-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--accent);
    color: var(--white);
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.75rem;
}

/* --- Header --- */
.site-header {
    background: var(--primary);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--gold);
    box-shadow: var(--shadow);
}
.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
}
.logo span { color: var(--gold); }

/* --- Navigation --- */
.main-nav { display: flex; align-items: center; gap: 5px; }
.main-nav a {
    color: var(--text-light);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
}
.main-nav a:hover, .main-nav a.active {
    color: var(--white);
    background: rgba(233, 69, 96, 0.15);
}
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* --- Dropdown Navigation --- */
.nav-dropdown {
    position: relative;
}
.nav-dropdown > a::after {
    content: ' \25BE';
    font-size: 0.7rem;
}
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--primary);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-sm);
    min-width: 240px;
    padding: 8px 0;
    z-index: 1001;
    box-shadow: var(--shadow-lg);
    max-height: 400px;
    overflow-y: auto;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
    display: block;
}
.dropdown-menu a {
    display: block;
    padding: 8px 18px;
    color: var(--text-light);
    font-size: 0.82rem;
    font-weight: 500;
    border-radius: 0;
    white-space: nowrap;
}
.dropdown-menu a:hover {
    background: rgba(233, 69, 96, 0.12);
    color: var(--white);
}
.dropdown-divider {
    height: 1px;
    background: var(--dark-border);
    margin: 6px 0;
}
.dropdown-label {
    padding: 6px 18px 2px;
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* --- Hero Section --- */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, #0a3d62 100%);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(245,166,35,0.05) 0%, transparent 50%);
    animation: heroGlow 15s ease-in-out infinite;
}
@keyframes heroGlow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(5%, 5%); }
}
.hero-content { position: relative; z-index: 1; }
.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--white) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero .subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 25px;
}
.hero-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 25px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.08);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--text-light);
    border: 1px solid rgba(255,255,255,0.1);
}
.hero-badge svg { width: 16px; height: 16px; fill: var(--gold); }

/* --- Trust Bar --- */
.trust-bar {
    background: var(--secondary);
    padding: 20px 0;
    border-bottom: 1px solid var(--dark-border);
}
.trust-items {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.trust-item svg { width: 20px; height: 20px; fill: var(--green); flex-shrink: 0; }

/* --- Last Updated --- */
.last-updated {
    text-align: center;
    padding: 15px 0;
    font-size: 0.85rem;
    color: var(--text-muted);
    border-bottom: 1px solid var(--dark-border);
}
.last-updated strong { color: var(--gold); }

/* --- Casino Card --- */
.casino-card {
    background: var(--bg-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    padding: 25px;
    margin-bottom: 20px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.casino-card:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.casino-card.featured {
    border-color: var(--gold);
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(245,166,35,0.05) 100%);
}
.casino-card.featured::before {
    content: "Editor's Pick";
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--gold);
    color: var(--dark);
    padding: 3px 40px;
    font-size: 0.7rem;
    font-weight: 700;
    transform: rotate(45deg);
    text-transform: uppercase;
}
.casino-rank {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--gold);
    color: var(--dark);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    border-radius: 0 0 var(--radius-sm) 0;
}
.casino-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
    padding-left: 50px;
}
.casino-logo-wrap {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 800;
    color: var(--primary);
    font-size: 0.7rem;
    text-align: center;
    padding: 5px;
}
.casino-info { flex: 1; }
.casino-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}
.casino-tagline { font-size: 0.85rem; color: var(--text-muted); }
.casino-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
}
.rating-score {
    background: var(--green);
    color: var(--white);
    padding: 3px 10px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.9rem;
}
.rating-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 2px; }

.casino-body {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin: 20px 0;
    padding: 20px 0;
    border-top: 1px solid var(--dark-border);
    border-bottom: 1px solid var(--dark-border);
}
.casino-detail h4 {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 5px;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.casino-detail .value {
    font-size: 1rem;
    color: var(--white);
    font-weight: 600;
}
.casino-detail .bonus-value {
    font-size: 1.1rem;
    color: var(--gold);
    font-weight: 700;
}

.casino-features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}
.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(39, 174, 96, 0.1);
    color: var(--green);
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    border: 1px solid rgba(39, 174, 96, 0.2);
}

.casino-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}
.casino-payments {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.payment-icon {
    background: rgba(255,255,255,0.08);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.72rem;
    color: var(--text-muted);
    border: 1px solid var(--dark-border);
}

/* --- CTA Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}
.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, #c0392b 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.3);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 69, 96, 0.4);
    color: var(--white);
}
.btn-secondary {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}
.btn-secondary:hover {
    background: var(--gold);
    color: var(--dark);
}
.btn-green {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}
.btn-green:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
    color: var(--white);
}
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-lg { padding: 15px 35px; font-size: 1.05rem; }

/* --- Section Headers --- */
.section-header {
    margin-bottom: 40px;
}
.section-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}
.section-header p {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 700px;
}
.section-header.text-center p { margin: 0 auto; }

/* --- Comparison Table --- */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    margin: 20px 0;
}
.comparison-table thead {
    background: var(--secondary);
}
.comparison-table th {
    padding: 15px 20px;
    text-align: left;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.5px;
}
.comparison-table td {
    padding: 15px 20px;
    border-bottom: 1px solid var(--dark-border);
    font-size: 0.9rem;
}
.comparison-table tr:hover { background: var(--bg-card-hover); }
.comparison-table .casino-name-cell {
    font-weight: 700;
    color: var(--white);
}

/* --- Info Boxes --- */
.info-box {
    background: var(--bg-card);
    border-left: 4px solid var(--blue);
    padding: 20px 25px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 25px 0;
}
.info-box.warning { border-left-color: var(--gold); }
.info-box.danger { border-left-color: var(--accent); }
.info-box.success { border-left-color: var(--green); }
.info-box h4 { margin-bottom: 8px; font-size: 1rem; }

/* --- FAQ Accordion --- */
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
    overflow: hidden;
}
.faq-question {
    padding: 18px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--white);
    transition: var(--transition);
}
.faq-question:hover { background: var(--bg-card-hover); }
.faq-question::after {
    content: '+';
    font-size: 1.3rem;
    color: var(--gold);
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: 15px;
}
.faq-item.active .faq-question::after {
    content: '-';
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-answer-inner {
    padding: 0 25px 20px;
    color: var(--text);
    line-height: 1.8;
}

/* --- Pros/Cons --- */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 20px 0;
}
.pros h4 { color: var(--green); margin-bottom: 10px; }
.cons h4 { color: var(--accent); margin-bottom: 10px; }
.pros li, .cons li {
    padding: 6px 0;
    padding-left: 22px;
    position: relative;
    font-size: 0.9rem;
}
.pros li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 700;
}
.cons li::before {
    content: '\2717';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* --- Author Box (EEAT) --- */
.author-box {
    display: flex;
    gap: 20px;
    background: var(--bg-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    padding: 25px;
    margin: 30px 0;
}
.author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 700;
}
.author-info h4 { font-size: 1rem; margin-bottom: 3px; }
.author-info .author-role {
    font-size: 0.8rem;
    color: var(--gold);
    margin-bottom: 8px;
}
.author-info p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* --- Review Methodology --- */
.methodology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.methodology-card {
    background: var(--bg-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    padding: 25px;
    text-align: center;
    transition: var(--transition);
}
.methodology-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
}
.methodology-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    background: rgba(245,166,35,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}
.methodology-card h4 { margin-bottom: 8px; font-size: 0.95rem; }
.methodology-card p { font-size: 0.85rem; color: var(--text-muted); }
.methodology-card .weight {
    display: inline-block;
    background: var(--gold);
    color: var(--dark);
    padding: 2px 10px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 10px;
}

/* --- Content Blocks --- */
.content-block {
    max-width: 800px;
    margin: 0 auto;
}
.content-block h2 {
    font-size: 1.8rem;
    margin: 40px 0 15px;
}
.content-block h3 {
    font-size: 1.3rem;
    margin: 30px 0 12px;
    color: var(--gold);
}
.content-block p {
    margin-bottom: 15px;
    color: var(--text);
}
.content-block ul, .content-block ol {
    margin: 15px 0;
    padding-left: 25px;
}
.content-block ul { list-style: disc; }
.content-block ol { list-style: decimal; }
.content-block li {
    margin-bottom: 8px;
    color: var(--text);
}

/* --- Category Cards --- */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.category-card {
    background: var(--bg-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    padding: 30px;
    transition: var(--transition);
    text-align: center;
}
.category-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}
.category-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}
.category-card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.category-card p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 15px; }

/* --- Responsible Gambling Banner --- */
.rg-banner {
    background: linear-gradient(135deg, #1a3a5c 0%, #0d2137 100%);
    border: 1px solid rgba(41, 128, 185, 0.3);
    border-radius: var(--radius);
    padding: 30px;
    margin: 30px 0;
    text-align: center;
}
.rg-banner h3 { margin-bottom: 10px; color: var(--blue-light); }
.rg-banner p { color: var(--text-muted); margin-bottom: 15px; font-size: 0.9rem; }
.rg-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.rg-links a {
    color: var(--blue-light);
    font-size: 0.85rem;
    padding: 6px 15px;
    border: 1px solid rgba(41,128,185,0.3);
    border-radius: 50px;
}
.rg-links a:hover {
    background: rgba(41,128,185,0.15);
    color: var(--white);
}

/* --- Footer --- */
.site-footer {
    background: var(--dark);
    padding: 60px 0 30px;
    border-top: 2px solid var(--dark-border);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-about p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 15px 0;
    line-height: 1.7;
}
.footer-col h4 {
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 0.95rem;
}
.footer-col a {
    display: block;
    color: var(--text-muted);
    padding: 4px 0;
    font-size: 0.85rem;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
    border-top: 1px solid var(--dark-border);
    padding-top: 25px;
    text-align: center;
}
.footer-bottom p {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}
.footer-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}
.footer-badge {
    background: rgba(255,255,255,0.05);
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.75rem;
    color: var(--text-muted);
    border: 1px solid var(--dark-border);
}

/* --- Breadcrumb --- */
.breadcrumb {
    padding: 15px 0;
    font-size: 0.82rem;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--text-muted); margin: 0 8px; }
.breadcrumb .current { color: var(--gold); }

/* --- Table of Contents --- */
.toc {
    background: var(--bg-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    padding: 25px;
    margin: 25px 0;
}
.toc h4 { margin-bottom: 12px; font-size: 0.95rem; }
.toc ol {
    list-style: decimal;
    padding-left: 25px;
}
.toc li {
    margin-bottom: 6px;
}
.toc a {
    color: var(--text);
    font-size: 0.9rem;
}
.toc a:hover { color: var(--gold); }

/* --- Disclaimer --- */
.disclaimer {
    background: rgba(233, 69, 96, 0.05);
    border: 1px solid rgba(233, 69, 96, 0.15);
    border-radius: var(--radius-sm);
    padding: 15px 20px;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 20px 0;
    line-height: 1.6;
}

/* --- Bonus Box --- */
.bonus-box {
    background: linear-gradient(135deg, rgba(245,166,35,0.08) 0%, rgba(233,69,96,0.05) 100%);
    border: 1px solid rgba(245,166,35,0.2);
    border-radius: var(--radius);
    padding: 25px;
    text-align: center;
    margin: 15px 0;
}
.bonus-box .bonus-amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 5px;
}
.bonus-box .bonus-terms {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .casino-body {
        grid-template-columns: 1fr;
    }
    .hero h1 { font-size: 2.2rem; }
}
@media (max-width: 768px) {
    .main-nav { display: none; }
    .main-nav.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary);
        padding: 20px;
        border-bottom: 2px solid var(--gold);
        z-index: 999;
    }
    .dropdown-menu {
        position: static;
        border: none;
        box-shadow: none;
        min-width: auto;
        padding: 0 0 0 15px;
        max-height: none;
    }
    .nav-dropdown:hover .dropdown-menu,
    .nav-dropdown:focus-within .dropdown-menu {
        display: none;
    }
    .nav-dropdown.open .dropdown-menu {
        display: block;
    }
    .mobile-toggle { display: block; }
    .hero h1 { font-size: 1.8rem; }
    .hero { padding: 50px 0 40px; }
    .casino-header { flex-direction: column; text-align: center; padding-left: 0; padding-top: 40px; }
    .casino-footer { flex-direction: column; text-align: center; }
    .casino-payments { justify-content: center; }
    .footer-grid { grid-template-columns: 1fr; }
    .pros-cons { grid-template-columns: 1fr; }
    .comparison-table { font-size: 0.8rem; }
    .comparison-table th, .comparison-table td { padding: 10px; }
    .section-header h2 { font-size: 1.5rem; }
    .author-box { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
    .hero h1 { font-size: 1.5rem; }
    .hero .subtitle { font-size: 1rem; }
    .btn-lg { padding: 12px 25px; font-size: 0.95rem; }
}
