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

:root {
    --bg: #f6f8fc;
    --surface: #ffffff;
    --surface-2: #f0f4ff;
    --text: #0b132b;
    --muted: #5c677d;
    --border: rgba(11, 19, 43, 0.12);
    --shadow: 0 14px 40px rgba(11, 19, 43, 0.10);
    --primary: #3a86ff;
    --primary-2: #00b894;
    --danger: #ff4d6d;
    --radius: 14px;
    --radius-sm: 10px;
    --container: 1180px;
    --font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    color: var(--text);
    background: radial-gradient(1200px 700px at 15% 5%, rgba(58, 134, 255, 0.18), transparent 60%),
        radial-gradient(900px 520px at 90% 0%, rgba(0, 184, 148, 0.14), transparent 55%),
        var(--bg);
    line-height: 1.65;
    overflow-x: hidden;
}

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

a {
    color: inherit;
}

.skip-link {
    position: absolute;
    top: -48px;
    left: 16px;
    background: var(--primary);
    color: #fff;
    padding: 10px 12px;
    border-radius: 10px;
    text-decoration: none;
    z-index: 1000;
}

.skip-link:focus {
    top: 16px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(246, 248, 252, 0.72);
    border-bottom: 1px solid var(--border);
}

.topbar {
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.55);
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 0;
}

.topbar-text {
    font-size: 0.95rem;
    color: var(--muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.topbar-search {
    display: flex;
    align-items: center;
    gap: 10px;
}

.topbar-search input {
    width: min(320px, 58vw);
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.85);
    outline: none;
}

.topbar-search input:focus {
    border-color: rgba(58, 134, 255, 0.55);
    box-shadow: 0 0 0 4px rgba(58, 134, 255, 0.14);
}

.navbar {
    padding: 14px 0;
}

.nav-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.logo img {
    height: 54px;
    width: auto;
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text);
    padding: 10px 12px;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.2px;
    transition: transform 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: rgba(58, 134, 255, 0.12);
    color: #0b2c69;
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    border: 0;
    background: transparent;
    padding: 10px;
    border-radius: 12px;
    cursor: pointer;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.hero {
    padding: 48px 0 26px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 24px;
    align-items: stretch;
}

.hero-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.68));
    border: 1px solid var(--border);
    border-radius: calc(var(--radius) + 6px);
    box-shadow: var(--shadow);
    padding: 28px;
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: "";
    position: absolute;
    inset: -100px;
    background: radial-gradient(circle at 20% 30%, rgba(58, 134, 255, 0.28), transparent 60%),
        radial-gradient(circle at 80% 0%, rgba(0, 184, 148, 0.22), transparent 55%);
    filter: blur(6px);
    opacity: 0.9;
    pointer-events: none;
}

.hero-card > * {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: clamp(2rem, 3.6vw, 3.2rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}

.hero p {
    color: var(--muted);
    font-size: 1.08rem;
    max-width: 62ch;
    margin-bottom: 18px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 999px;
    border: 1px solid transparent;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #1f6fe6);
    color: #fff;
    box-shadow: 0 10px 28px rgba(58, 134, 255, 0.28);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 34px rgba(58, 134, 255, 0.34);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.78);
    border-color: var(--border);
    color: var(--text);
}

.btn-ghost:hover {
    transform: translateY(-1px);
    border-color: rgba(58, 134, 255, 0.35);
}

.hero-aside {
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 14px;
}

.hero-media {
    border-radius: calc(var(--radius) + 6px);
    border: 1px solid var(--border);
    overflow: hidden;
    background: var(--surface);
    box-shadow: var(--shadow);
    aspect-ratio: 4 / 3;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-points {
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid var(--border);
    border-radius: calc(var(--radius) + 6px);
    box-shadow: var(--shadow);
    padding: 18px 18px;
    display: grid;
    gap: 12px;
}

.hero-point {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.hero-point-badge {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(58, 134, 255, 0.12);
    border: 1px solid rgba(58, 134, 255, 0.22);
    color: #0b2c69;
    font-weight: 800;
}

.hero-point strong {
    display: block;
    font-size: 0.98rem;
    margin-bottom: 2px;
}

.hero-point span {
    color: var(--muted);
    font-size: 0.92rem;
}

.section {
    padding: 44px 0;
}

.section-title {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.section-title h2 {
    font-size: 1.95rem;
    letter-spacing: -0.02em;
}

.section-title p {
    color: var(--muted);
    max-width: 68ch;
}

.grid {
    display: grid;
    gap: 18px;
}

.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 10px 28px rgba(11, 19, 43, 0.08);
    overflow: hidden;
}

.card-body {
    padding: 18px 18px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(0, 184, 148, 0.10);
    border: 1px solid rgba(0, 184, 148, 0.20);
    color: #0b4a3a;
    font-weight: 700;
    font-size: 0.85rem;
}

.casino-card-head {
    display: flex;
    gap: 14px;
    align-items: center;
}

.casino-logo {
    width: 104px;
    height: 52px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: #fff;
    display: grid;
    place-items: center;
    overflow: hidden;
    flex: 0 0 auto;
}

.casino-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.casino-name {
    font-size: 1.12rem;
    line-height: 1.2;
    margin-bottom: 6px;
}

.casino-desc {
    color: var(--muted);
    margin: 10px 0 14px;
    font-size: 0.95rem;
}

.meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
}

.rating {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-weight: 700;
}

.stars {
    letter-spacing: 1px;
    color: #f0b429;
    font-size: 1.05rem;
}

.btn-small {
    padding: 10px 12px;
    font-size: 0.92rem;
}

.trust-card h3 {
    font-size: 1.08rem;
    margin-bottom: 8px;
}

.trust-card p {
    color: var(--muted);
    font-size: 0.95rem;
}

.article-thumb {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
    background: #fff;
}

.article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.kicker {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 650;
}

.article-title {
    margin-top: 10px;
    font-size: 1.15rem;
    line-height: 1.3;
}

.article-excerpt {
    margin-top: 10px;
    color: var(--muted);
    font-size: 0.95rem;
}

.article-link {
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #0b2c69;
    text-decoration: none;
    font-weight: 800;
}

.article-link:hover {
    text-decoration: underline;
}

.content-shell {
    padding: 36px 0 50px;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 18px;
    align-items: start;
}

.prose {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 22px;
}

.prose h1 {
    font-size: 2.1rem;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.prose h2 {
    font-size: 1.6rem;
    margin: 22px 0 10px;
    letter-spacing: -0.02em;
}

.prose h3 {
    font-size: 1.2rem;
    margin: 18px 0 10px;
}

.prose p {
    color: var(--muted);
    margin: 10px 0;
}

.prose ul,
.prose ol {
    padding-left: 18px;
    color: var(--muted);
    margin: 12px 0;
}

.prose img,
.prose figure img,
[itemprop="reviewBody"] img,
[itemprop="articleBody"] img {
    max-width: 100%;
    height: auto;
    display: block;
}

.prose figure {
    max-width: 100%;
}

.sidebar {
    position: sticky;
    top: 110px;
    display: grid;
    gap: 12px;
}

.side-card {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 12px 30px rgba(11, 19, 43, 0.08);
    padding: 16px;
}

.side-card h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.side-card p,
.side-card li,
.side-card a {
    color: var(--muted);
    font-size: 0.95rem;
    text-decoration: none;
}

.side-card a:hover {
    text-decoration: underline;
}

.faq-list dt {
    margin-top: 12px;
}

.faq-question {
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 14px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.82);
    cursor: pointer;
    font-weight: 800;
    color: var(--text);
}

.faq-icon {
    color: var(--primary);
    font-size: 1.3rem;
    line-height: 1;
    transition: transform 0.18s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease, padding 0.25s ease, border-color 0.25s ease;
    border-radius: 0 0 14px 14px;
    border: 1px solid transparent;
    border-top: 0;
    background: rgba(255, 255, 255, 0.78);
}

.faq-answer.active {
    max-height: 520px;
    padding: 14px 14px 16px;
    border-color: var(--border);
}

.faq-answer p {
    color: var(--muted);
}

footer {
    margin-top: 44px;
    background: rgba(255, 255, 255, 0.82);
    border-top: 1px solid var(--border);
}

.footer-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 26px 20px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.footer-section h3 {
    font-size: 1.02rem;
    margin-bottom: 12px;
}

.footer-section ul {
    list-style: none;
    display: grid;
    gap: 8px;
}

.footer-section a {
    color: var(--muted);
    text-decoration: none;
    font-weight: 650;
}

.footer-section a:hover {
    text-decoration: underline;
}

.social-icons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.82);
    color: #0b2c69;
    text-decoration: none;
    transition: transform 0.15s ease, border-color 0.15s ease;
}

.social-icons a:hover {
    transform: translateY(-1px);
    border-color: rgba(58, 134, 255, 0.35);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 18px 0;
}

.footer-bottom .container {
    display: grid;
    gap: 10px;
}

.responsible-gambling {
    background: rgba(255, 77, 109, 0.08);
    border: 1px solid rgba(255, 77, 109, 0.22);
    border-radius: var(--radius);
    padding: 12px 14px;
    color: #6a1023;
}

.responsible-gambling a {
    color: #6a1023;
}

.copyright,
.disclaimer {
    color: var(--muted);
    font-size: 0.95rem;
}

:focus-visible {
    outline: 3px solid rgba(58, 134, 255, 0.35);
    outline-offset: 3px;
    border-radius: 10px;
}

@media (max-width: 960px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
        top: auto;
    }

    .grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 116px;
        left: 0;
        right: 0;
        background: rgba(246, 248, 252, 0.96);
        border-bottom: 1px solid var(--border);
        padding: 14px 16px;
        transform: translateY(-120%);
        transition: transform 0.2s ease;
        flex-direction: column;
        align-items: stretch;
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .nav-menu a {
        border-radius: 12px;
        padding: 12px 12px;
    }

    .topbar-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .topbar-search input {
        width: 100%;
    }

    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
