@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --blue: #0a4c99;
    --dark-blue: #003266;
    --light-blue: #4993e3;
    --orange: #fa5800;
    --purple: #6100ff;
    --green: #87c209;
    --green2: #88c00d;
    --bg: #f0f4f9;
    --border: #d0dae8;
    --default-color: #fa5800;
    --default-lighten-color: #e8f0fb;
    --default-header-color: #003266;
    --default-footer-color: #003266;
    --btn-text: #fff;
}

*, :after, :before { box-sizing: border-box; }
body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, figure { margin: 0; padding: 0; }
li, ol[class], ul[class] { list-style: none; }
a { text-decoration: none; }
img { display: block; max-width: 100%; }
button, input { border: none; font: inherit; background: none; }
[role=button], button { cursor: pointer; }

body {
    background: #fff;
    color: #222;
    font-family: 'Inter', 'Ubuntu', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    min-height: 100vh;
}

body.-toggle, html.-toggle { overflow: hidden; }

@media (max-width: 768px) {
    body { font-size: 15px; overflow-x: hidden; }
}

.container {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.header {
    background: var(--dark-blue);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(0,0,50,.22);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 14px 0;
}

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

.main-nav { flex: 1; }

.main-nav ul {
    display: flex;
    gap: 2px;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: center;
    flex-wrap: wrap;
}

.main-nav ul li a {
    color: rgba(255,255,255,.85);
    font-size: 14px;
    font-weight: 500;
    padding: 7px 12px;
    border-radius: 6px;
    display: block;
    transition: all .2s;
}

.main-nav ul li a:hover {
    color: #fff;
    background: rgba(255,255,255,.12);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.header-socials { display: flex; gap: 4px; }

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    color: rgba(255,255,255,.75);
    transition: all .2s;
}

.social-btn:hover {
    color: #fff;
    background: rgba(255,255,255,.14);
}

.btn-outline {
    display: inline-block;
    border: 1px solid rgba(255,255,255,.45);
    color: #fff;
    padding: 7px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    transition: all .2s;
}

.btn-outline:hover {
    background: rgba(255,255,255,.1);
    border-color: #fff;
}

.btn-primary {
    display: inline-block;
    background: var(--orange);
    color: #fff;
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    transition: opacity .2s;
}

.btn-primary:hover { opacity: .87; }

.mob-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
    cursor: pointer;
    margin-left: auto;
    flex-shrink: 0;
}

.mob-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all .3s;
}

.mob-menu-btn.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mob-menu-btn.open span:nth-child(2) { opacity: 0; }
.mob-menu-btn.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.hero {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--blue) 58%, #1565c0 100%);
    padding: 64px 0;
    overflow: hidden;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    top: -80px;
    right: -60px;
    width: 420px;
    height: 420px;
    background: rgba(73,147,227,.12);
    border-radius: 50%;
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h2 {
    font-size: 44px;
    font-weight: 800;
    color: #fff;
    line-height: 1.12;
    margin-bottom: 16px;
}

.hero-text-up {
	font-size: 44px;
    font-weight: 800;
    color: #fff;
    line-height: 1.12;
    margin-bottom: 16px;
}

.hero-text p {
    font-size: 17px;
    color: rgba(255,255,255,.82);
    line-height: 1.65;
    margin-bottom: 28px;
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.btn-orange {
    display: inline-block;
    background: var(--orange);
    color: #fff;
    padding: 13px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    transition: all .2s;
}

.btn-orange:hover { opacity: .87; transform: translateY(-1px); }

.btn-ghost {
    display: inline-block;
    background: rgba(255,255,255,.12);
    border: 2px solid rgba(255,255,255,.45);
    color: #fff;
    padding: 11px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: all .2s;
}

.btn-ghost:hover { background: rgba(255,255,255,.22); border-color: #fff; }

.hero-apps { display: flex; gap: 10px; flex-wrap: wrap; }

.app-dl-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 16px;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    transition: all .2s;
}

.app-dl-btn:hover { opacity: .87; transform: translateY(-1px); }
.app-dl-btn.android { background: var(--green2); }
.app-dl-btn.ios { background: #1a1a2e; border: 1px solid rgba(255,255,255,.2); }

.hero-img img {
    width: 100%;
    height: auto;
    border-radius: 14px;
    box-shadow: 0 24px 64px rgba(0,0,0,.32);
}

.app-widget {
    position: fixed;
    bottom: 80px;
    right: 0;
    background: var(--dark-blue);
    border: 1px solid rgba(255,255,255,.15);
    border-right: none;
    border-radius: 12px 0 0 12px;
    padding: 14px 12px 12px;
    width: 110px;
    z-index: 50;
    box-shadow: -4px 4px 20px rgba(0,0,50,.2);
    text-align: center;
}

.app-widget-close {
    position: absolute;
    top: 5px;
    right: 8px;
    color: rgba(255,255,255,.5);
    font-size: 15px;
    line-height: 1;
    padding: 0;
    cursor: pointer;
}

.app-widget-close:hover { color: #fff; }

.app-widget-title {
    color: rgba(255,255,255,.7);
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 8px;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.app-widget-btn {
    display: block;
    padding: 7px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #fff;
    transition: opacity .2s;
}

.app-widget-btn:hover { opacity: .85; }
.app-widget-btn.android { background: var(--green2); }
.app-widget-btn.ios { background: var(--blue); }

.main { padding: 48px 0; background: var(--bg); }

.content-block {
    background: #fff;
    border-radius: 14px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 28px rgba(10,76,153,.07);
    padding: 40px 48px;
}

.post-entry h1 {
    font-size: 30px;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 18px;
    line-height: 1.25;
}

.post-entry h2 {
    font-size: 23px;
    font-weight: 700;
    color: var(--dark-blue);
    margin: 32px 0 14px;
    padding-left: 14px;
    border-left: 4px solid var(--orange);
    line-height: 1.3;
}

.post-entry h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--blue);
    margin: 22px 0 10px;
}

.post-entry p { margin-bottom: 16px; color: #2d3748; line-height: 1.75; }

.post-entry a { color: var(--light-blue); }
.post-entry a:hover { color: var(--dark-blue); }

.post-entry ul {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
}

.post-entry ul li {
    padding: 6px 0 6px 22px;
    position: relative;
    color: #2d3748;
    line-height: 1.65;
}

.post-entry ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15px;
    width: 8px;
    height: 8px;
    background: var(--light-blue);
    border-radius: 50%;
}

.post-entry ol {
    list-style: none;
    counter-reset: num;
    margin: 0 0 20px;
    padding: 0;
}

.post-entry ol li {
    counter-increment: num;
    padding: 8px 0 8px 36px;
    position: relative;
    color: #2d3748;
    line-height: 1.65;
    margin: 0;
}

.post-entry ol li::before {
    content: counter(num);
    position: absolute;
    left: 0;
    top: 8px;
    width: 24px;
    height: 24px;
    background: var(--blue);
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.post-entry strong { color: var(--dark-blue); }

.wp-block-image { margin: 24px 0; }
.wp-block-image figure { margin: 0; }
.wp-block-image img {
    border-radius: 12px;
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: cover;
    margin: 0 auto;
}

.post-entry table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
    font-size: 14px;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.post-entry table tr:first-child { background: var(--blue) !important; }
.post-entry table tr:first-child td { color: #fff !important; font-weight: 700; }
.post-entry table tr:nth-child(odd) { background: var(--bg); }
.post-entry table tr td { padding: 12px 14px; border: 1px solid var(--border); }

.faq-block {
    margin-top: 40px;
}

.faq-block--title {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 18px;
}

.faq-block--items__item {
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
}

.faq-block--items__item--header {
    background: #f3f7ff;
    border: 1px solid #c8d8f0;
    border-radius: 8px;
    padding: 16px 56px 16px 18px;
    cursor: pointer;
    position: relative;
    transition: background .2s;
}

.faq-block--items__item--header:hover { background: #e8f0fb; }

.title-faq {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-blue);
}

.title-faq::after {
    content: '+';
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: var(--blue);
    color: #fff;
    border-radius: 6px;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    display: block;
}

.faq-block--items__item.-toggle .faq-block--items__item--header {
    background: var(--blue);
    border-color: var(--blue);
    border-radius: 8px 8px 0 0;
}

.faq-block--items__item.-toggle .title-faq { color: #fff; }

.faq-block--items__item.-toggle .title-faq::after {
    content: '−';
    background: rgba(255,255,255,.25);
}

.faq-block--items__item--content {
    display: none;
    padding: 16px 18px;
    border: 1px solid #c8d8f0;
    border-top: none;
    border-radius: 0 0 8px 8px;
    background: #fff;
    color: #2d3748;
    font-size: 15px;
    line-height: 1.7;
}

.faq-block--items__item.-toggle .faq-block--items__item--content { display: block; }

.footer {
    background: var(--dark-blue);
    color: rgba(255,255,255,.82);
    padding-top: 56px;
}

.footer-top {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-brand img { height: 42px; width: auto; margin-bottom: 16px; }

.footer-brand p {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255,255,255,.6);
    margin-bottom: 18px;
}

.footer-socials { display: flex; gap: 8px; }

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,.09);
    border-radius: 8px;
    color: rgba(255,255,255,.65);
    transition: all .2s;
}

.footer-socials a:hover { background: rgba(255,255,255,.18); color: #fff; }

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.footer-nav-col h4 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: rgba(255,255,255,.45);
    margin-bottom: 14px;
}

.footer-nav-col ul { list-style: none; padding: 0; margin: 0; }
.footer-nav-col ul li { margin-bottom: 9px; }

.footer-nav-col ul li a {
    color: rgba(255,255,255,.7);
    font-size: 14px;
    transition: color .2s;
}

.footer-nav-col ul li a:hover { color: #fff; }

.footer-payment {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-payment img { max-height: 52px; object-fit: contain; }

.footer-trust {
    padding: 28px 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-trust h4 {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: rgba(255,255,255,.4);
    margin-bottom: 14px;
}

.trust-items { display: flex; gap: 12px; flex-wrap: wrap; }

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 8px;
    padding: 8px 14px;
    transition: background .2s;
}

.trust-item:hover { background: rgba(255,255,255,.1); }

.trust-badge {
    font-size: 12px;
    font-weight: 800;
    color: var(--light-blue);
}

.trust-item span:last-child {
    font-size: 12px;
    color: rgba(255,255,255,.5);
}

.footer-warning { padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,.1); }

.age-warning {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 14px;
}

.age-badge {
    flex-shrink: 0;
    background: #c0392b;
    color: #fff;
    font-size: 15px;
    font-weight: 900;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.age-warning p {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255,255,255,.7);
    margin: 0;
}

.responsible-gaming p {
    font-size: 12px;
    line-height: 1.65;
    color: rgba(255,255,255,.5);
    margin-bottom: 8px;
}

.responsible-gaming strong { color: rgba(255,255,255,.72); }
.responsible-gaming a { color: var(--light-blue); }

.footer-copyright {
    padding: 18px 0;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,.35);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0e1a2e;
    border-top: 2px solid var(--orange);
    z-index: 200;
    padding: 14px 0;
}

.cookie-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-inner p {
    flex: 1;
    font-size: 13px;
    color: rgba(255,255,255,.75);
    margin: 0;
    line-height: 1.5;
    min-width: 200px;
}

.cookie-inner a { color: var(--light-blue); }

.cookie-accept {
    background: var(--orange);
    color: #fff;
    border: none;
    padding: 9px 24px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
}

.cookie-accept:hover { opacity: .88; }

@media (max-width: 1024px) {
    .footer-top { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-img { display: none; }
    .hero-text h2 { font-size: 32px; }
}

@media (max-width: 768px) {
    .mob-menu-btn { display: flex; }

    .main-nav {
        display: none;
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        bottom: 0;
        background: #001f42;
        padding: 20px;
        overflow-y: auto;
        z-index: 99;
    }

    .main-nav.open { display: block; }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }

    .main-nav ul li {
        border-bottom: 1px solid rgba(255,255,255,.08);
    }

    .main-nav ul li a {
        padding: 15px 8px;
        font-size: 16px;
        border-radius: 0;
    }

    .header-socials { display: none; }
    .btn-outline, .btn-primary { padding: 7px 12px; font-size: 12px; }

    .hero { padding: 36px 0; }
    .hero-text h2 { font-size: 26px; }
    .hero-text p { font-size: 15px; }
    .hero-btns { flex-direction: column; }
    .btn-orange, .btn-ghost { text-align: center; }

    .content-block { padding: 20px 16px; }

    .footer-nav { grid-template-columns: repeat(2,1fr); gap: 20px; }

    .app-widget { bottom: 60px; width: 100px; }

    .post-entry h1 { font-size: 22px; }
    .post-entry h2 { font-size: 18px; }
    .post-entry h3 { font-size: 16px; }
}

@media (max-width: 480px) {
    .footer-nav { grid-template-columns: 1fr; }
    .cookie-inner { flex-direction: column; align-items: stretch; }
    .hero-apps { flex-direction: column; }
    .trust-items { gap: 8px; }
}
