:root{
    --bg:#061224;
    --bg-soft:#0b1733;
    --line:#17335d;
    --line-soft:#122848;
    --text:#f5f7ff;
    --muted:#c2d2ea;
    --accent:#1ea55a;
    --accent-hover:#26b463;
    --accent-2:#2d78ff;
    --max:1120px;
    --header-h:30px;
}
*,
*::before,
*::after{
    box-sizing:border-box;
}
html{
    scroll-behavior:smooth;
}
body{
    margin:0;
    min-width:320px;
    background:var(--bg);
    color:var(--text);
    font-family:Roboto, Arial, sans-serif;
    font-size:17px;
    line-height:1.7;
}
img{
    display:block;
    max-width:100%;
    height:auto;
}
a{
    color:inherit;
    text-decoration:none;
}
.container{
    width:min(100% - 32px, var(--max));
    margin:0 auto;
}
.site-header{
    position:fixed;
    top:0;
    right:0;
    left:0;
    z-index:1000;
    background:#09152d;
    border-bottom:1px solid var(--line-soft);
}
.site-header__inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    min-height:var(--header-h);
}
.site-brand{
    display:inline-flex;
    align-items:center;
    flex:0 0 auto;
    gap:10px;
    margin: 5px 0 8px;
}
.site-brand img{
    width:180px;
    height:auto;
}
.site-brand img.header-flag,
.header-flag{
    width:36px !important;
    height:36px !important;
    flex-shrink:0;
    opacity:.9;
    display:block;
}
.site-actions{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:12px;
    margin-left:auto;
}
.site-action{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:124px;
    min-height:44px;
    border:1px solid var(--line);
    background:transparent;
    color:var(--text);
    font-size:16px;
    font-weight:700;
    letter-spacing:.02em;
}
.site-action--primary{
    background:var(--accent);
    border-color:var(--accent);
}
.site-action--primary:hover,
.site-action--primary:focus-visible{
    background:var(--accent-hover);
    border-color:var(--accent-hover);
}
.site-action--ghost:hover,
.site-action--ghost:focus-visible{
    background:#0d1c39;
}
main{
    padding-top:42px; /* = высота шапки */
}
.breadcrumbs{
    border-bottom:1px solid var(--line-soft);
    padding:0 0 18px;
    margin: 2rem 0;
}
.breadcrumbs ol{
    list-style:none;
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin:0;
    padding:0;
    color:#9eb4d7;
    font-size:14px;
}
.breadcrumbs li:not(:last-child)::after{
    content:"/";
    margin-left:8px;
    color:#5874a0;
}
.hero{
    padding:56px 0 48px;
    border-bottom:1px solid var(--line-soft);
    position:relative;
    overflow:hidden;
}
/* тонкий ледяной glow за hero */
.hero::before{
    content:"";
    position:absolute;
    top:-120px;
    right:-100px;
    width:600px;
    height:600px;
    border-radius:50%;
    background:radial-gradient(ellipse at center,
        rgba(45,120,255,.07) 0%,
        rgba(30,165,90,.04) 45%,
        transparent 70%);
    pointer-events:none;
    z-index:0;
}
.hero > *{
    position:relative;
    z-index:1;
}
.hero h1{
    margin:0 0 24px;
    font-size:clamp(32px, 5vw, 62px);
    line-height:1.06;
    letter-spacing:-0.03em;
    color:#f5f7ff;
}
/* span.hl внутри h1 — ледяной акцент цвета логотипа */
.hero h1 .hl{
    background:linear-gradient(90deg,#2d78ff 0%,#1ea55a 100%);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;
}
.lead{
    color:var(--muted);
    font-size:19px;
    line-height:1.65;
    max-width:720px;
    margin-bottom:28px !important;
}
.hero p{
    margin:0 0 18px;

}
.hero-media{
    margin:22px 0 22px;
    border-top:1px solid var(--line-soft);
    border-bottom:1px solid var(--line-soft);
    padding:16px 0;
}
section img{
    margin:2rem auto;
}
.hero img{
    border-radius:12px;
    box-shadow:
        0 0 0 1px rgba(45,120,255,.15),
        0 8px 40px rgba(0,0,0,.45),
        0 0 60px rgba(45,120,255,.08);
    transition:box-shadow .3s ease;
}
.hero img:hover{
    box-shadow:
        0 0 0 1px rgba(45,120,255,.25),
        0 12px 50px rgba(0,0,0,.5),
        0 0 80px rgba(45,120,255,.13);
}

.content-section{
    padding:48px 0 28px;
    border-bottom:none;
    position:relative;
}
/* Тонкий разделитель — градиентная линия вместо скучного border */
.content-section::after{
    content:"";
    display:block;
    height:1px;
    margin-top:28px;
    background:linear-gradient(90deg,
        transparent 0%,
        rgba(23,51,93,.9) 20%,
        rgba(45,120,255,.25) 50%,
        rgba(23,51,93,.9) 80%,
        transparent 100%);
}
.content-section:last-of-type::after{
    display:none;
}
/* H2 с синей левой полоской */
.content-section h2{
    margin:0 0 22px;
    font-size:clamp(26px, 3.5vw, 38px);
    line-height:1.12;
    letter-spacing:-0.02em;
    padding-left:18px;
    border-left:3px solid #2d78ff;
    position:relative;
}
/* Иконка-точка перед h2 */
.content-section h2::before{
    content:"";
    position:absolute;
    left:-6px;
    top:50%;
    transform:translateY(-50%);
    width:10px;
    height:10px;
    border-radius:50%;
    background:linear-gradient(135deg,#2d78ff,#1ea55a);
    box-shadow:0 0 8px rgba(45,120,255,.5);
}
.content-section h3{
    margin:32px 0 14px;
    font-size:clamp(20px, 2.5vw, 28px);
    line-height:1.25;
    color:#dbe6ff;
    padding-left:12px;
    border-left:2px solid rgba(30,165,90,.5);
}
.content-section p{
    margin:0 0 18px;
    color:#c2d2ea;
    line-height:1.75;
}
/* plain-list улучшенный */
.plain-list{
    margin:0 0 20px 0;
    padding:0;
    list-style:none;
}
.plain-list li{
    margin:0 0 10px;
    line-height:1.65;
    padding-left:22px;
    position:relative;
    color:#c2d2ea;
}
.plain-list li::before{
    content:"";
    position:absolute;
    left:0;
    top:10px;
    width:6px;
    height:6px;
    border-radius:50%;
    background:linear-gradient(135deg,#2d78ff,#1ea55a);
}
.info-table{
    width:100%;
    border-collapse:separate;
    border-spacing:0;
    margin:24px 0;
    font-size:16px;
    border-radius:10px;
    overflow:hidden;
    border:1px solid #17335d;
    box-shadow:0 4px 24px rgba(0,0,0,.28);
}
/* Скруглённые углы на первой/последней ячейке */
.info-table thead tr th:first-child{ border-radius:10px 0 0 0; }
.info-table thead tr th:last-child{  border-radius:0 10px 0 0; }
.info-table tbody tr:last-child td:first-child{ border-radius:0 0 0 10px; }
.info-table tbody tr:last-child td:last-child{  border-radius:0 0 10px 0; }

.info-table th,
.info-table td{
    border:none;
    border-bottom:1px solid #17335d;
    padding:13px 16px;
    text-align:left;
    vertical-align:middle;
}
/* Убираем нижнюю границу у последней строки */
.info-table tbody tr:last-child td{
    border-bottom:none;
}
/* Вертикальные разделители между колонками */
.info-table th + th,
.info-table td + td{
    border-left:1px solid rgba(23,51,93,.6);
}
.info-table th{
    background:linear-gradient(180deg,#0f2040 0%,#0a1830 100%);
    font-weight:700;
    font-size:14px;
    letter-spacing:.04em;
    text-transform:uppercase;
    color:#c2d2ea;
    border-bottom:2px solid #1d3f70;
}
/* Зебра-строки */
.info-table tbody tr:nth-child(even) td{
    background:rgba(11,23,51,.45);
}
.info-table tbody tr:nth-child(odd) td{
    background:rgba(6,18,36,.3);
}
/* Hover на строке */
.info-table tbody tr{
    transition:background .15s ease;
}
.info-table tbody tr:hover td{
    background:rgba(45,120,255,.08);
}
/* Бейджи Tak/Nie/✅/❌ → pill */
.info-table td .badge-yes,
.info-table td .badge-no{
    display:inline-block;
    padding:2px 10px;
    border-radius:20px;
    font-size:13px;
    font-weight:700;
}
.badge-yes{ background:rgba(30,165,90,.18); color:#4ade80; }
.badge-no{  background:rgba(255,80,80,.12);  color:#f87171; }

/* Акцент на числах PLN и ключевых значениach */
.info-table td strong,
.info-table td b{
    color:#f5f7ff;
}
/* Первая колонка — чуть ярче */
.info-table td:first-child{
    color:#dbe6ff;
    font-weight:500;
}
.faq-list{
    border-top:1px solid var(--line);
}
.faq-item{
    padding:18px 0;
    border-bottom:1px solid var(--line);
}
.faq-item h3{
    margin:0 0 10px;
    font-size:24px;
}
.site-footer{
    padding:34px 0 36px;
}
.site-footer__inner{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:24px;
    padding-top:24px;
}
.site-footer img{
    width:180px;
}
.site-footer__note{
    max-width:420px;
    color:#9eb4d7;
    font-size:14px;
    line-height:1.6;
}
.site-footer__copy{
    margin-top:18px;
    color:#9eb4d7;
    font-size:14px;
}

button {
    cursor: pointer;
    border-radius: 6px;
    padding: 16px;
    margin: 0 5px;
}

.center {
    text-align: center;
    margin: 1rem auto 2rem;
}


@media (max-width: 640px){
    main{
        padding-top: 29px;
    }
        font-size: clamp(30px, 5vw, 40px);
    }

    body{
        font-size:15px;
        line-height:1.75;
    }
    .container{
        width:min(100% - 24px, var(--max));
    }
    .hero{
        padding-top:10px;
    }
    .quick-links__list{
        display:grid;
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }
    .quick-links__list a{
        width:100%;
    }
    .info-table{
        font-size:14px;
        border-radius:8px;
    }
    .info-table th{
        font-size:12px;
        padding:10px 10px;
    }
    .info-table td{
        padding:10px 10px;
    }
    .faq-item h3{
        font-size:22px;
    }

    .site-actions {
        display: none;
    }
}


/*******************/
.site-action,
.main-button {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

/* Base shimmer layer */
.site-action::after,
.main-button::after {
    content: "";
    position: absolute;
    top: 0;
    left: -140%;
    z-index: 1;
    width: 52%;
    height: 100%;
    pointer-events: none;
    transform: skewX(-20deg);
    will-change: transform, left, opacity;
    opacity: 0;
}

/* Gold button */
.site-action--ghost {
    color: #f4d27a;
    border: 1px solid #9f7422;
    background: linear-gradient(180deg, #2a210c 0%, #1b1609 100%);
    box-shadow:
            inset 0 0 0 1px rgba(255, 214, 102, 0.08),
            0 0 0 rgba(0, 0, 0, 0);
}

.site-action--ghost:hover,
.site-action--ghost:focus-visible {
    color: #fff3c4;
    border-color: #d4a63a;
    background: linear-gradient(180deg, #3a2c0f 0%, #241b08 100%);
    box-shadow:
            inset 0 0 0 1px rgba(255, 220, 120, 0.14),
            0 0 18px rgba(212, 166, 58, 0.16);
}

.site-action--ghost:active {
    color: #f4d27a;
    border-color: #8e6820;
    background: linear-gradient(180deg, #221a09 0%, #171205 100%);
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.22);
}

.site-action--ghost::after {
    background: linear-gradient(
            90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 214, 102, 0.00) 18%,
            rgba(255, 224, 145, 0.16) 38%,
            rgba(255, 244, 201, 0.46) 50%,
            rgba(255, 224, 145, 0.16) 62%,
            rgba(255, 214, 102, 0.00) 82%,
            rgba(255, 255, 255, 0) 100%
    );
    animation: button-shine-gold 4.9s ease-in-out infinite;
    animation-delay: 0.7s;
    opacity: 0.95;
}

/* Green button */
.site-action--primary,
.main-button {
    box-shadow:
            inset 0 0 0 1px rgba(255, 255, 255, 0.04),
            0 0 0 rgba(0, 0, 0, 0);
}

.site-action--primary::after,
.main-button::after {
    background: linear-gradient(
            90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(210, 255, 230, 0.00) 24%,
            rgba(220, 255, 235, 0.18) 40%,
            rgba(255, 255, 255, 0.42) 50%,
            rgba(220, 255, 235, 0.18) 60%,
            rgba(210, 255, 230, 0.00) 76%,
            rgba(255, 255, 255, 0) 100%
    );
    animation: button-shine-green 3.2s ease-in-out infinite;
    animation-delay: 2.1s;
    opacity: 0.9;
}

/* Optional extra hover response */
.site-action--primary:hover,
.site-action--primary:focus-visible,
.main-button:hover,
.main-button:focus-visible {
    box-shadow:
            inset 0 0 0 1px rgba(255, 255, 255, 0.07),
            0 0 16px rgba(29, 185, 84, 0.18);
}

@keyframes button-shine-gold {
    0% {
        left: -145%;
        opacity: 0;
    }
    8% {
        opacity: 0.9;
    }
    30% {
        left: 145%;
        opacity: 0.9;
    }
    31% {
        left: 145%;
        opacity: 0;
    }
    100% {
        left: 145%;
        opacity: 0;
    }
}

@keyframes button-shine-green {
    0% {
        left: -145%;
        opacity: 0;
    }
    10% {
        opacity: 0.95;
    }
    36% {
        left: 145%;
        opacity: 0.95;
    }
    37% {
        left: 145%;
        opacity: 0;
    }
    100% {
        left: 145%;
        opacity: 0;
    }
}


.quick-links {
    margin: 32px 0 0;
    text-align: center;
}

.quick-links__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border: 0;
    border-radius: 8px;
    background: linear-gradient(180deg, #a764ff 0%, #8d4cf3 100%);
    color: #ffffff;
    font-family: "Roboto", Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.quick-links__toggle:hover,
.quick-links__toggle:focus-visible {
    opacity: 0.94;
    transform: translateY(-1px);
}

.quick-links__toggle:focus-visible {
    outline: 2px solid rgba(196, 181, 253, 0.9);
    outline-offset: 2px;
}

.quick-links__dropdown {
    max-width: 680px;
    margin: 14px auto 0;
    padding: 26px 28px 24px;
    border: 1px solid #8c52ff;
    border-radius: 10px;
    background: #041632;
    text-align: left;
}

.quick-links__dropdown[hidden] {
    display: none;
}

.quick-links__list {
    margin: 0;
    padding-left: 28px;
}

.quick-links__list li {
    margin: 0 0 14px;
    color: white;
}

.quick-links__list li:last-child {
    margin-bottom: 0;
}

.quick-links__list a {
    text-decoration: none;
    font-family: "Roboto", Arial, sans-serif;
    font-size: 90%;
    font-weight: 400;
    line-height: 1.45;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.quick-links__list a:hover,
.quick-links__list a:focus-visible {
    color: #ffffff;
    opacity: 1;
}

.quick-links__list a:focus-visible {
    outline: none;
}

@media (max-width: 767px) {
    .quick-links {
        margin-top: 24px;
    }

    .quick-links__toggle {
        min-height: 40px;
        padding: 0 16px;
        font-size: 14px;
    }

    .quick-links__dropdown {
        margin-top: 12px;
        padding: 18px 16px;
        border-radius: 8px;
    }

    .quick-links__list {
        padding-left: 20px;
    }

    .quick-links__list li {
        margin-bottom: 10px;
    }

    .quick-links__list a {
        font-size: 16px;
        line-height: 1.4;
    }
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 22px;
}

.faq-item {
    border: 1px solid #17345f;
    background: #061a37;
}

.faq-item summary {
    position: relative;
    display: block;
    padding: 10px 52px 18px 18px;
    cursor: pointer;
    list-style: none;
    color: #f2f5fb;
    font: 700 17px/1.35 "Roboto", Arial, sans-serif;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    color: #27a7ff;
    font: 400 28px/1 "Roboto", Arial, sans-serif;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-answer {
    padding: 0 18px 18px;
}

.faq-answer p {
    margin: 0;
    color: #cfd9ea;
    font: 400 15px/1.65 "Roboto", Arial, sans-serif;
}

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

.site-footer {
    margin-top: 56px;
    padding: 40px 0;
}

.site-footer__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 420px);
    gap: 32px 48px;
    align-items: start;
}

.site-footer__brand img {
    display: block;
    width: auto;
    max-width: 180px;
    height: auto;
    margin-bottom: 18px;
}

.site-footer__copy {
    margin-bottom: 14px;
    color: #f2f5fb;
    font: 700 16px/1.4 "Roboto", Arial, sans-serif;
}

.site-footer__note {
    margin: 0;
    max-width: 560px;
    color: #c7d3e6;
    font: 400 15px/1.65 "Roboto", Arial, sans-serif;
}

.site-footer__nav {
    justify-self: end;
    width: 100%;
    max-width: 420px;
}

.site-footer__links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 28px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer__links li {
    margin: 0;
    line-height: 1;
}

.site-footer__links a {
    color: #d9e4f5;
    text-decoration: none;
    font: 400 15px/1.5 "Roboto", Arial, sans-serif;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
    color: #ffffff;
    opacity: 1;
}

.site-footer__links a:focus-visible {
    outline: none;
}

@media (max-width: 991px) {
    .site-footer__inner {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }

    .site-footer__nav {
        justify-self: start;
        max-width: none;
    }
}


.mbar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1200;
    display: none;
    padding: 12px 12px calc(12px + env(safe-area-inset-bottom));
    background: linear-gradient(180deg, rgba(6, 29, 48, 0) 0%, rgba(6, 29, 48, 0.78) 40%, rgba(6, 29, 48, 0.92) 100%);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(140, 197, 255, 0.12);
}




@media (max-width: 575px) {

    .mbar {
     display: block;
     text-align: center;
    }

    .mbar button{

    }

    .site-footer {
        margin-top: 0px;
        padding: 2px 0;
        margin-bottom: 85px;
    }

    .site-footer__links {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .site-footer__brand img {
        max-width: 160px;
        margin-bottom: 16px;
        display: none;
    }

    .site-footer__copy {
        margin-bottom: 0px;
        font-size: 15px;
    }

    .site-footer__note,
    .site-footer__links a {
        font-size: 15px;
    }

    .faq-item summary {
        position: relative;
        display: block;
        padding: 5px 52px 5px 18px;
        cursor: pointer;
        list-style: none;
        color: #f2f5fb;
        font: 700 15px/1.35 "Roboto", Arial, sans-serif;
    }
    .site-footer__inner {
       padding-top: 0;
    }

}

.site-header__inner {
    display: flex;
    align-items: center;
    gap: 32px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.site-nav a {
    color: #dbe6ff;
    text-decoration: none;
    font: 700 18px/1.4 "Roboto", Arial, sans-serif;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: #ffffff;
}

.site-actions {
    display: flex;
    gap: 12px;
    margin-left: 16px;
}


.site-nav a {
    position: relative;
    display: inline-block;
    color: #dbe6ff;
    text-decoration: none;
    font: 700 19px/1.4 "Roboto", Arial, sans-serif;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.site-nav a::before {
    content: "";
    position: absolute;
    left: -18%;
    top: 0;
    width: 42%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transform: skewX(-18deg);
    background: linear-gradient(
            90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 220, 120, 0.00) 20%,
            rgba(255, 228, 150, 0.22) 45%,
            rgba(255, 244, 205, 0.68) 50%,
            rgba(255, 228, 150, 0.22) 55%,
            rgba(255, 220, 120, 0.00) 80%,
            rgba(255, 255, 255, 0) 100%
    );
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 1px;
    background: linear-gradient(
            90deg,
            rgba(212, 166, 58, 0) 0%,
            rgba(212, 166, 58, 0.9) 50%,
            rgba(212, 166, 58, 0) 100%
    );
    transform: scaleX(0.35);
    transform-origin: center;
    opacity: 0;
    transition: transform 0.28s ease, opacity 0.28s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: #fff3c4;
}

.site-nav a:hover::before,
.site-nav a:focus-visible::before {
    animation: nav-link-gold-shine 0.85s ease;
    opacity: 1;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
    opacity: 1;
    transform: scaleX(1);
}

.site-nav a:focus-visible {
    outline: none;
}

@keyframes nav-link-gold-shine {
    0% {
        left: -22%;
        opacity: 0;
    }
    18% {
        opacity: 1;
    }
    100% {
        left: 118%;
        opacity: 0;
    }
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #081a36;
    border-bottom: 1px solid #17345f;
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 82px;
}

.site-brand {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    min-width: 0;
}

.site-brand img {
    display: block;
    width: auto;
    height: auto;
    max-width: 156px;
}

.site-brand img.header-flag {
    width: 36px !important;
    height: 36px !important;
    max-width: 36px !important;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

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

.mobile-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 0;
    border: 1px solid #17345f;
    background: #0b2246;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 2px 0;
    background: #f2f5fb;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-menu {
    display: none;
    border-top: 1px solid #17345f;
    background: #081a36;
}

.mobile-menu.is-open {
    display: block;
}

.mobile-menu__nav {
    display: flex;
    flex-direction: column;
    padding: 12px 20px 20px;
}

.mobile-menu__nav a {
    padding: 12px 0;
    color: #dbe6ff;
    text-decoration: none;
    font: 500 16px/1.45 "Roboto", Arial, sans-serif;
    border-bottom: 1px solid rgba(23, 52, 95, 0.8);
}

.mobile-menu__nav a:last-child {
    border-bottom: 0;
}

.mobile-menu-toggle.is-open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.mobile-menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 991px) {
    .site-header__inner {
        min-height: 72px;
    }

    .site-nav,
    .site-actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: inline-flex;
    }

    .site-brand img {
        max-width: 140px;
        height: auto;
    }

    .site-brand img.header-flag,
    .header-flag {
        width: 28px !important;
        height: 28px !important;
    }

    main {
        padding-top: 29px;
    }

    .hero {
        padding-top: 10px;
    }
}

.notice {
    position: relative;
    margin: 32px 0 12px;
    padding: 20px 22px 20px 24px;
    border: 1px solid rgba(167, 139, 250, 0.28);
    border-radius: 16px;
    background:
            linear-gradient(180deg, rgba(124, 58, 237, 0.16) 0%, rgba(30, 41, 59, 0.22) 100%);
    box-shadow:
            0 10px 30px rgba(0, 0, 0, 0.22),
            inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.notice::before {
    content: "";
    position: absolute;
    top: 14px;
    bottom: 14px;
    left: 0;
    width: 4px;
    border-radius: 0 6px 6px 0;
    background: linear-gradient(180deg, #a78bfa 0%, #7c3aed 100%);
}

.notice__title {
    margin: 0 0 10px;
    padding-left: 10px;
    font-size: 1.125rem;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
}

.notice__text {
    margin: 0;
    padding-left: 10px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1rem;
    line-height: 1.75;
}

@media (max-width: 767px) {
    .notice {
        margin: 24px 0 8px;
        padding: 18px 16px 18px 18px;
        border-radius: 14px;
    }

    .notice__title {
        font-size: 1rem;
    }

    .notice__text {
        font-size: 0.95rem;
        line-height: 1.7;
    }
}

/* ── CTA блок ── */
.cta-block{
    text-align:center;
    border-radius:14px;
    padding:48px 28px;
    margin:40px 0;
    position:relative;
    overflow:hidden;
    background:#061224;
    border:1px solid rgba(45,120,255,.2);
    box-shadow:
        0 0 0 1px rgba(30,165,90,.08) inset,
        0 20px 60px rgba(0,0,0,.4),
        0 0 80px rgba(45,120,255,.06);
}
.cta-block::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        radial-gradient(ellipse 70% 60% at 15% 50%,rgba(45,120,255,.07) 0%,transparent 70%),
        radial-gradient(ellipse 60% 50% at 85% 50%,rgba(30,165,90,.06) 0%,transparent 70%);
    pointer-events:none;
}
.cta-block > *{ position:relative; z-index:1; }
.cta-block h2{
    font-size:clamp(22px,3.5vw,34px);
    margin:0 0 14px;
    letter-spacing:-.02em;
    border:none;
    padding:0;
    color:#f5f7ff;
}
.cta-block h2::before{ display:none; }
.cta-block p{
    color:#9eb4d7;
    max-width:540px;
    margin:0 auto 28px;
    font-size:16px;
}
.cta-block__buttons{
    display:flex;
    gap:14px;
    justify-content:center;
    flex-wrap:wrap;
}
.cta-block__buttons .site-action{
    min-width:168px;
    border-radius:8px;
}
.cta-block__note{
    margin-top:18px;
    font-size:13px;
    color:#5874a0;
}
.cta-block__note a{
    color:#7a9bc4;
    text-decoration:underline;
    text-underline-offset:3px;
}
/* Инлайн CTA (в тексте — без рамки, компактный) */
.cta-inline{
    display:flex;
    gap:12px;
    justify-content:center;
    flex-wrap:wrap;
    margin:28px 0;
}
.cta-inline .site-action{
    min-width:148px;
    border-radius:8px;
}

/* ── Типографика ── */
/* Выделение ключевых цифр в тексте */
.num{
    color:#f5f7ff;
    font-weight:700;
}
/* Доп. стиль для lead (усилим) */
.lead{
    font-size:19px;
    line-height:1.7;
    color:#c2d2ea;
    max-width:720px;
    margin-bottom:28px;
}
/* Ссылки внутри контента */
.content-section a[style*="color:var(--accent)"]{
    text-decoration:underline;
    text-underline-offset:3px;
    text-decoration-color:rgba(30,165,90,.4);
    transition:text-decoration-color .2s;
}
.content-section a[style*="color:var(--accent)"]:hover{
    text-decoration-color:rgba(30,165,90,.9);
}
/* Скроллбар браузера — тёмный в тон сайту */
::-webkit-scrollbar{ width:8px; }
::-webkit-scrollbar-track{ background:#061224; }
::-webkit-scrollbar-thumb{ background:#17335d; border-radius:4px; }
::-webkit-scrollbar-thumb:hover{ background:#1d3f70; }
/* Выделение текста */
::selection{
    background:rgba(45,120,255,.3);
    color:#f5f7ff;
}
/* Smooth section images */
.content-section img{
    border-radius:10px;
    box-shadow:0 4px 32px rgba(0,0,0,.4),0 0 0 1px rgba(23,51,93,.6);
}
/* FAQ открытый item — лёгкий акцент */
.faq-item[open]{
    border-color:rgba(45,120,255,.3);
    background:rgba(6,26,55,.7);
}
/* Breadcrumbs — чуть живее */
.breadcrumbs{
    border-bottom:none;
    margin:0 0 24px;
    padding:0;
}
.breadcrumbs a:hover{
    color:#f5f7ff;
    text-decoration:underline;
    text-underline-offset:3px;
}

/* ── Hero CTA — одна кнопка + ссылка "уже есть аккаунт" ── */
.hero-cta{
    display:flex;
    align-items:center;
    gap:20px;
    margin:28px 0 8px;
    flex-wrap:wrap;
}
.hero-cta__btn{
    text-decoration:none;
    border-radius:8px;
    min-width:190px;
    font-size:17px;
    letter-spacing:.01em;
}
.hero-cta__link{
    color:#9eb4d7;
    font-size:15px;
    text-decoration:underline;
    text-underline-offset:3px;
    text-decoration-color:rgba(158,180,215,.4);
    transition:color .2s,text-decoration-color .2s;
    white-space:nowrap;
}
.hero-cta__link:hover{
    color:#f5f7ff;
    text-decoration-color:rgba(245,247,255,.6);
}

/* ── CTA Strip — компактная полоска в тексте ── */
.cta-strip{
    margin:22px 0;
    text-align:center;
}
.cta-strip__btn{
    display:inline-flex;
    align-items:center;
    padding:13px 28px;
    border-radius:6px;
    background:linear-gradient(135deg,#1ea55a,#17924e);
    border:none;
    color:#fff;
    font-size:16px;
    font-weight:700;
    text-decoration:none;
    letter-spacing:.01em;
    box-shadow:0 4px 18px rgba(30,165,90,.35);
    transition:background .2s,box-shadow .2s,transform .15s;
}
.cta-strip__btn:hover{
    background:linear-gradient(135deg,#22b863,#1ea55a);
    box-shadow:0 6px 24px rgba(30,165,90,.5);
    transform:translateY(-1px);
}

/* cta-block — финальный блок: компактнее */
.cta-block{
    padding:36px 24px;
    margin:32px 0;
}
.cta-block h2{
    font-size:clamp(20px,3vw,28px);
    margin-bottom:10px;
}
.cta-block p{
    font-size:15px;
    margin-bottom:22px;
}
.cta-block__buttons{
    gap:12px;
}
.cta-block__buttons .site-action{
    min-width:148px;
    min-height:44px;
    font-size:15px;
}

/* Mobile */
@media(max-width:575px){
    .hero-cta{
        flex-direction:column;
        align-items:flex-start;
        gap:14px;
    }
    .hero-cta__btn{
        width:100%;
        justify-content:center;
    }
    .cta-strip__btn{
        width:100%;
        justify-content:center;
        font-size:14px;
    }
}

/* ══════════════════════════════════════════════
   GAMING SPIRIT — золото, азарт, казиношность
   ══════════════════════════════════════════════ */

:root{
    --gold:#f4c542;
    --gold-dark:#c8962a;
    --gold-light:#fde68a;
    --orange:#f97316;
}

/* ── Золотой акцент на .hl в h1 ── */
.hero h1 .hl{
    background:linear-gradient(90deg,#f4c542 0%,#f97316 60%,#f4c542 100%);
    background-size:200% auto;
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;
    animation:gold-shimmer 3s linear infinite;
}
@keyframes gold-shimmer{
    0%{background-position:0% center}
    100%{background-position:200% center}
}

/* ── Тизер-строка под h1 ── */
.hero-badges{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin:18px 0 24px;
}
.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:6px;
    padding:5px 13px;
    border-radius:20px;
    font-size:13px;
    font-weight:700;
    letter-spacing:.02em;
    border:1px solid rgba(244,197,66,.25);
    background:rgba(244,197,66,.07);
    color:#fde68a;
}

/* ── Золотая CTA кнопка (главная) ── */
.site-action--gold{
    position:relative;
    overflow:hidden;
    background:linear-gradient(135deg,#f4c542 0%,#f97316 100%);
    border:none;
    color:#0a0a0a;
    font-weight:900;
    font-size:16px;
    letter-spacing:.03em;
    border-radius:8px;
    text-decoration:none;
    box-shadow:
        0 0 20px rgba(244,197,66,.35),
        0 4px 16px rgba(249,115,22,.3);
    animation:gold-pulse 2.5s ease-in-out infinite;
}
.site-action--gold:hover{
    background:linear-gradient(135deg,#fde68a 0%,#f97316 100%);
    color:#000;
    box-shadow:
        0 0 32px rgba(244,197,66,.55),
        0 6px 24px rgba(249,115,22,.45);
    animation:none;
    transform:translateY(-1px);
}
.site-action--gold::after{
    content:"";
    position:absolute;
    top:0;left:-100%;
    width:60%;height:100%;
    background:linear-gradient(90deg,transparent,rgba(255,255,255,.35),transparent);
    transform:skewX(-20deg);
    animation:gold-shine 2.5s ease-in-out infinite;
}
@keyframes gold-pulse{
    0%,100%{box-shadow:0 0 20px rgba(244,197,66,.35),0 4px 16px rgba(249,115,22,.3)}
    50%{box-shadow:0 0 36px rgba(244,197,66,.65),0 6px 24px rgba(249,115,22,.5)}
}
@keyframes gold-shine{
    0%{left:-100%;opacity:0}
    20%{opacity:1}
    60%{left:140%;opacity:0}
    100%{left:140%;opacity:0}
}

/* ── Hero CTA — золотая кнопка ── */
.hero-cta__btn{
    background:linear-gradient(135deg,#f4c542 0%,#f97316 100%) !important;
    border-color:transparent !important;
    color:#0a0a0a !important;
    font-weight:900 !important;
    box-shadow:0 0 24px rgba(244,197,66,.4),0 4px 16px rgba(0,0,0,.3);
    animation:gold-pulse 2.5s ease-in-out infinite;
    border-radius:8px;
}
.hero-cta__btn:hover{
    animation:none;
    transform:translateY(-2px);
    box-shadow:0 0 40px rgba(244,197,66,.6),0 8px 24px rgba(0,0,0,.4) !important;
}

/* ── CTA Strip — яркая зелёная кнопка ── */
.cta-strip__btn{
    background:linear-gradient(135deg,#1ea55a,#17924e) !important;
    border:none !important;
    color:#fff !important;
    font-size:16px;
    font-weight:700;
    box-shadow:0 4px 18px rgba(30,165,90,.35) !important;
    transition:all .25s ease;
}
.cta-strip__btn:hover{
    background:linear-gradient(135deg,#22b863,#1ea55a) !important;
    border-color:transparent !important;
    color:#fff !important;
    box-shadow:0 6px 24px rgba(30,165,90,.5) !important;
    transform:translateY(-1px);
}

/* ── Числа с золотым акцентом ── */
.info-table td strong,
.info-table td b{
    color:#fde68a;
    text-shadow:0 0 12px rgba(244,197,66,.4);
}
.badge-yes{
    background:rgba(30,165,90,.18);
    color:#4ade80;
    border:1px solid rgba(30,165,90,.3);
}
.badge-no{
    background:rgba(239,68,68,.12);
    color:#f87171;
    border:1px solid rgba(239,68,68,.25);
}

/* ── CTA Block финальный — золото ── */
.cta-block{
    background:#061224;
    border:1px solid rgba(244,197,66,.2);
    box-shadow:
        0 0 0 1px rgba(244,197,66,.06) inset,
        0 20px 60px rgba(0,0,0,.5),
        0 0 80px rgba(244,197,66,.06);
}
.cta-block::before{
    background:
        radial-gradient(ellipse 70% 60% at 15% 50%,rgba(244,197,66,.08) 0%,transparent 70%),
        radial-gradient(ellipse 60% 50% at 85% 50%,rgba(249,115,22,.06) 0%,transparent 70%);
}
.cta-block h2{
    color:#fde68a;
    text-shadow:0 0 30px rgba(244,197,66,.3);
}
.cta-block__buttons .site-action--primary,
.cta-block__buttons a{
    background:linear-gradient(135deg,#f4c542 0%,#f97316 100%) !important;
    border-color:transparent !important;
    color:#0a0a0a !important;
    font-weight:900 !important;
    font-size:16px !important;
    border-radius:8px;
    box-shadow:0 0 24px rgba(244,197,66,.4);
    animation:gold-pulse 2.5s ease-in-out infinite;
    text-decoration:none;
}
.cta-block__buttons a:hover{
    animation:none;
    transform:translateY(-2px);
}

/* ── Красный ромб-паттерн — отсылка к польскому флагу ── */
.content-section{
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Crect x='20' y='2' width='12' height='12' rx='1' transform='rotate(45 20 8)' fill='%238B0000' opacity='0.035'/%3E%3C/svg%3E");
    background-repeat:repeat;
}

/* ── H2 border — золото вместо синего ── */
.content-section h2{
    border-left-color:#f4c542;
}
.content-section h2::before{
    background:linear-gradient(135deg,#f4c542,#f97316);
    box-shadow:0 0 8px rgba(244,197,66,.6);
}

/* ── Числа PLN в тексте — золотые ── */
.num{
    color:#f4c542;
    font-weight:700;
    text-shadow:0 0 10px rgba(244,197,66,.3);
}

/* ── Shimmer на .hl в h2 секций ── */
.content-section h2 .hl{
    background:linear-gradient(90deg,#f4c542 0%,#f97316 60%,#f4c542 100%);
    background-size:200% auto;
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;
    animation:gold-shimmer 3s linear infinite;
}

/* ── FAQ open — золотая рамка ── */
.faq-item[open]{
    border-color:rgba(244,197,66,.25);
    background:rgba(20,14,4,.6);
}
.faq-item summary::after{
    color:#f4c542;
}

/* ── Мобайл ── */
@media(max-width:575px){
    .hero-badges{gap:7px}
    .hero-badge{font-size:12px;padding:4px 10px}
}

/* ── mbar — одна золотая кнопка на мобиле ── */
.mbar{
    display:none;
    text-align:center;
    padding:12px 16px calc(12px + env(safe-area-inset-bottom));
}
.mbar .site-action--gold{
    width:92%;
    max-width:360px;
    min-height:50px;
    font-size:16px;
    border-radius:10px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
}
@media(max-width:575px){
    .mbar{ display:block; }
}

/* ══════════════════════════════════════════════
   CASINO UI REFRESH — deeper iGaming layer
   ══════════════════════════════════════════════ */
body{
    background:
        radial-gradient(circle at 12% 8%, rgba(244,197,66,.10) 0, transparent 28%),
        radial-gradient(circle at 90% 12%, rgba(167,100,255,.10) 0, transparent 26%),
        radial-gradient(circle at 50% 105%, rgba(30,165,90,.08) 0, transparent 32%),
        linear-gradient(180deg,#040b18 0%,#061224 42%,#071326 100%);
}
.site-header{
    background:rgba(5,13,28,.88);
    backdrop-filter:blur(16px);
    box-shadow:0 14px 40px rgba(0,0,0,.28);
}
.hero{
    margin-top:18px;
    border:1px solid rgba(244,197,66,.16);
    border-radius:26px;
    padding:46px clamp(18px,4vw,46px) 42px;
    background:
        linear-gradient(135deg,rgba(7,18,38,.94),rgba(10,22,48,.80)),
        radial-gradient(circle at 15% 15%,rgba(244,197,66,.16),transparent 30%),
        radial-gradient(circle at 88% 22%,rgba(249,115,22,.12),transparent 28%);
    box-shadow:0 22px 70px rgba(0,0,0,.42), inset 0 1px 0 rgba(255,255,255,.05);
}
.hero::after{
    content:"♠  ♥  ♦  ♣";
    position:absolute;
    right:22px;
    bottom:14px;
    color:rgba(244,197,66,.12);
    font-size:clamp(34px,7vw,86px);
    font-weight:900;
    letter-spacing:.12em;
    pointer-events:none;
}
.hero img{
    border-radius:22px;
    border:1px solid rgba(244,197,66,.24);
    box-shadow:0 20px 70px rgba(0,0,0,.48),0 0 0 8px rgba(244,197,66,.035),0 0 90px rgba(244,197,66,.12);
}
.casino-showcase{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:14px;
    margin:26px 0 30px;
}
.casino-showcase__card{
    position:relative;
    overflow:hidden;
    min-height:132px;
    padding:18px 16px;
    border:1px solid rgba(244,197,66,.18);
    border-radius:18px;
    background:linear-gradient(180deg,rgba(12,31,64,.82),rgba(5,16,34,.74));
    box-shadow:0 12px 34px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.05);
}
.casino-showcase__card::before{
    content:"";
    position:absolute;
    inset:auto -38px -46px auto;
    width:112px;
    height:112px;
    border-radius:50%;
    background:radial-gradient(circle,rgba(244,197,66,.22),transparent 68%);
}
.casino-showcase__card::after{
    content:"";
    position:absolute;
    top:0;
    left:0;
    right:0;
    height:2px;
    background:linear-gradient(90deg,transparent,rgba(244,197,66,.78),transparent);
}
.casino-showcase__icon{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:42px;
    height:42px;
    margin-bottom:12px;
    border-radius:50%;
    background:linear-gradient(135deg,rgba(244,197,66,.22),rgba(249,115,22,.16));
    color:#ffe8a3;
    font-weight:900;
    box-shadow:0 0 22px rgba(244,197,66,.18);
}
.casino-showcase__card strong{
    display:block;
    margin-bottom:5px;
    color:#fff3c4;
    font-size:17px;
    line-height:1.15;
}
.casino-showcase__card span:last-child{
    display:block;
    color:#bfd0ea;
    font-size:14px;
    line-height:1.45;
}
.casino-showcase__card--hot{
    border-color:rgba(249,115,22,.34);
    background:linear-gradient(180deg,rgba(63,30,8,.76),rgba(12,20,38,.78));
}
.casino-showcase__card--safe{
    border-color:rgba(30,165,90,.26);
}
.info-table{
    border-radius:18px;
    border-color:rgba(244,197,66,.18);
    box-shadow:0 18px 46px rgba(0,0,0,.30),0 0 0 1px rgba(244,197,66,.04) inset;
}
.info-table th{
    background:linear-gradient(180deg,#1e1607 0%,#0e1d3b 100%);
    color:#ffe8a3;
    border-bottom-color:rgba(244,197,66,.28);
}
.info-table tbody tr:hover td{
    background:rgba(244,197,66,.075);
}
.content-section{
    border-radius:22px;
    margin:20px 0;
    padding-left:clamp(0px,2vw,18px);
    padding-right:clamp(0px,2vw,18px);
}
.faq-item,
.quick-links__dropdown,
.notice{
    border-radius:18px;
    box-shadow:0 14px 40px rgba(0,0,0,.22);
}
.quick-links__toggle{
    background:linear-gradient(135deg,#f4c542 0%,#f97316 100%);
    color:#160d02;
    box-shadow:0 10px 26px rgba(249,115,22,.22);
}
.quick-links__dropdown{
    border-color:rgba(244,197,66,.28);
    background:linear-gradient(180deg,rgba(7,21,45,.96),rgba(5,15,32,.96));
}
.site-footer{
    border-top:1px solid rgba(244,197,66,.12);
    background:linear-gradient(180deg,rgba(6,18,36,0),rgba(4,11,24,.72));
}
@media(max-width:991px){
    .casino-showcase{grid-template-columns:repeat(2,minmax(0,1fr));}
}
@media(max-width:575px){
    .hero{border-radius:18px;padding:28px 16px 30px;}
    .hero::after{display:none;}
    .casino-showcase{grid-template-columns:1fr;gap:10px;}
    .casino-showcase__card{min-height:auto;padding:15px;}
}
@media(prefers-reduced-motion:reduce){
    .site-action--gold,.hero-cta__btn,.hero h1 .hl,.content-section h2 .hl{animation:none!important;}
}
