/* ExperienceOrigin - styles */
:root {
    --primary: #1a5f4a;
    --primary-hover: #134a3a;
    --text: #1f2937;
    --text-muted: #6b7280;
    --bg: #ffffff;
    --bg-alt: #f3f4f6;
    --border: #e5e7eb;
    --radius: 8px;
    --shadow: 0 1px 3px rgba(0,0,0,0.08);
    --header-height: 60px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; line-height: 1.6; color: var(--text); background: var(--bg); }
img { max-width: 100%; height: auto; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }

.container { max-width: 960px; margin: 0 auto; padding: 0 1.25rem; }

/* Header */
.site-header {
    background: var(--bg);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}
.nav-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0.75rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo a { font-weight: 700; font-size: 1.25rem; color: var(--primary); }
.logo a:hover { text-decoration: none; }
.nav-menu { display: flex; gap: 1.5rem; align-items: center; }
.nav-menu a { color: var(--text-muted); font-weight: 500; }
.nav-menu a:hover { color: var(--primary); }

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.burger-menu span { display: block; width: 22px; height: 2px; background: var(--text); }

@media (max-width: 768px) {
    .burger-menu { display: flex; }
    .nav-menu {
        position: absolute;
        top: var(--header-height);
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--bg);
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        /* padding: 1rem; */
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-bottom: 1px solid var(--border);
    }
    .nav-menu.active { max-height: 400px; }
    .nav-menu li { width: 100%; }
    .nav-menu a { display: block; padding: 0.75rem 1rem; }
}

/* Hero */
.hero {
    position: relative;
    background: linear-gradient(135deg, #0d3d2e 0%, var(--primary) 35%, #1e7a5e 70%, #0d3d2e 100%);
    background-size: 200% 200%;
    animation: heroGradient 12s ease infinite;
    color: #fff;
    padding: 2.5rem 0;
    overflow: hidden;
}
@keyframes heroGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.hero-icon {
    position: absolute;
    left: var(--x);
    top: var(--y);
    font-size: clamp(1.25rem, 3vw, 2.25rem);
    opacity: 0.12;
    animation: heroFloat var(--d, 16s) ease-in-out infinite;
    animation-delay: calc(var(--i, 0) * -1.5s);
    filter: drop-shadow(0 0 8px rgba(0,0,0,0.2));
}
@keyframes heroFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); opacity: 0.12; }
    25% { transform: translate(8px, -12px) rotate(5deg) scale(1.05); opacity: 0.18; }
    50% { transform: translate(-5px, -20px) rotate(-3deg) scale(0.95); opacity: 0.14; }
    75% { transform: translate(12px, -8px) rotate(8deg) scale(1.02); opacity: 0.16; }
}
.hero .container.hero-content { position: relative; z-index: 1; }
.hero-updated { font-size: 0.875rem; opacity: 0.9; margin-bottom: 0.5rem; }
.hero h1 { font-size: 2rem; margin-bottom: 1rem; }
.hero-intro { font-size: 1rem; max-width: 720px; opacity: 0.95; margin-bottom: 1rem; }
.hero-badges { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.badge { background: rgba(255,255,255,0.2); padding: 0.35rem 0.75rem; border-radius: 999px; font-size: 0.875rem; }

/* Recommended */
.recommended { padding: 2rem 0; background: var(--bg-alt); }
.recommended h2 { margin-bottom: 0.5rem; font-size: 1.5rem; }
.comparison-note { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.25rem; }
.casino-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.casino-table { width: 100%; min-width: 560px; border-collapse: collapse; background: var(--bg); border-radius: var(--radius); box-shadow: var(--shadow); }
.casino-table th, .casino-table td { padding: 0.75rem 1rem; text-align: left; border-bottom: 1px solid var(--border); }
.casino-table th { background: var(--primary); color: #fff; font-weight: 600; font-size: 0.875rem; }
.casino-table th:first-child { border-radius: var(--radius) 0 0 0; }
.casino-table tbody tr:last-child td { border-bottom: none; }
.casino-name { vertical-align: middle; }
.casino-name .casino-logo { display: block; max-width: 120px; height: auto; max-height: 40px; }
.casino-bonus { font-size: 0.875rem; color: var(--text-muted); max-width: 280px; }
.casino-our-score small { font-weight: normal; color: var(--text-muted); }
.btn-visit { display: inline-block; background: var(--primary); color: #fff !important; padding: 0.5rem 1rem; border-radius: var(--radius); font-weight: 600; text-decoration: none !important; }
.btn-visit:hover { background: var(--primary-hover); text-decoration: none !important; }
.link-review { margin-left: 0.5rem; font-size: 0.9rem; }

/* Guide */
.guide-section { padding: 2rem 0; }
.guide-section h2 { font-size: 1.5rem; margin-bottom: 1rem; }
.guide-section h3 { font-size: 1.2rem; margin: 1.5rem 0 0.5rem; }
.guide-section p, .guide-section ul { margin-bottom: 1rem; color: var(--text-muted); }
.guide-section ul { list-style: disc; padding-left: 1.5rem; }
.guide-section li { margin-bottom: 0.35rem; }

/* Disclaimer */
.disclaimer-section { padding: 2rem 0; background: var(--bg-alt); }
.disclaimer-section h2 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.disclaimer-section p { font-size: 0.9rem; color: var(--text-muted); }

/* Play safe */
.play-safe { padding: 2rem 0; text-align: center; background: #e6e6e6; }
.play-safe h2 { font-size: 1.1rem; margin-bottom: 1rem; color: #000; }
.play-safe-logos { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 1rem 1.5rem; }
.play-safe-logo { display: inline-flex; align-items: center; justify-content: center; }
.play-safe-logo img { height: 40px; width: auto; max-width: 120px; object-fit: contain; display: block; filter: brightness(0); }
.play-safe-logo:hover { opacity: 0.85; }
.play-safe-logo:hover img { filter: brightness(0) opacity(0.8); }

/* Footer */
.site-footer {
    background: #1f2937;
    color: #9ca3af;
    padding: 2rem 0 1.5rem;
    margin-top: 2rem;
}
.footer-privacy h4 { color: #e5e7eb; font-size: 1rem; margin-bottom: 0.75rem; }
.footer-privacy ul { display: flex; flex-wrap: wrap; gap: 0 1.25rem; }
.footer-privacy a { color: #9ca3af; }
.footer-privacy a:hover { color: #fff; }
.footer-copyright { margin-top: 1.5rem; font-size: 0.8rem; line-height: 1.5; }
.footer-18 { margin-top: 1rem; font-weight: 700; font-size: 1rem; }

/* Legal pages */
.legal-page { padding: 2rem 0 3rem; min-height: 60vh; }
.legal-content { max-width: 720px; margin: 0 auto; }
.legal-content h1 { font-size: 1.75rem; margin-bottom: 0.5rem; }
.last-updated { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.legal-content section { margin-bottom: 1.5rem; }
.legal-content h2 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.legal-content h3 { font-size: 1rem; margin: 0.75rem 0 0.35rem; }
.legal-content p, .legal-content ul { margin-bottom: 0.75rem; color: var(--text-muted); font-size: 0.95rem; }
.legal-content ul { list-style: disc; padding-left: 1.5rem; }
