:root {
    --bg: #050505;
    --top: #080808;
    --panel: #111111;
    --panel2: #1b1b1b;
    --card: #202020;
    --text: #ffffff;
    --muted: #9b9b9b;
    --line: rgba(255,255,255,.12);
    --accent: #2f6bff;
    --accent2: #4d7dff;
    --gold: #ffcf37;
    --danger: #ff3b3b;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
    background: var(--bg);
    color: var(--text);
    font-family: Inter, Arial, Helvetica, sans-serif;
    font-size: 14px;
}

a {
    color: inherit;
    text-decoration: none;
}

.site-header {
    min-height: 112px;
    background: var(--top);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 32px;
    padding: 0 max(24px, calc((100vw - 1156px) / 2));
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.brand {
    color: #fff;
    font-size: 19px;
    font-weight: 900;
    letter-spacing: -.4px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.brand::before {
    content: "";
    width: 38px;
    height: 28px;
    display: inline-block;
    background:
        linear-gradient(135deg, transparent 0 18%, #fff 18% 42%, transparent 42% 100%),
        linear-gradient(225deg, transparent 0 18%, #fff 18% 42%, transparent 42% 100%);
    filter: drop-shadow(13px 0 0 #fff) drop-shadow(26px 0 0 #fff);
    transform: scale(.55);
    transform-origin: left center;
}

.site-header nav {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.site-header nav a {
    color: #dcdcdc;
    font-size: 15px;
    font-weight: 700;
    opacity: .9;
}

.site-header nav a:hover {
    color: #fff;
    opacity: 1;
}

.site-header nav a:first-child {
    color: var(--gold);
}

.site-main {
    width: min(1156px, calc(100% - 48px));
    margin: 0 auto;
    padding: 42px 0 60px;
}

.hero,
.card {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

.hero {
    padding-top: 42px;
}

.hero h1,
.card h1 {
    margin: 0 0 18px;
    color: #fff;
    font-size: 28px;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -.5px;
}

.hero h1::before {
    content: "";
    width: 58px;
    height: 58px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    border-radius: 13px;
    background:
        radial-gradient(circle at 65% 30%, rgba(120,210,255,.9), transparent 0 18%, transparent 19%),
        linear-gradient(135deg, #20364c, #697c88 45%, #1e252d);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.18);
}

.hero .actions {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 18px 0;
    margin: 28px 0 0;
}

.actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 22px;
}

.button,
button {
    min-height: 34px;
    border: 0;
    border-radius: 999px;
    padding: 8px 18px;
    background: #fff;
    color: #111;
    font-weight: 900;
    font-size: 14px;
    cursor: pointer;
}

.button.secondary {
    background: var(--panel2);
    color: #fff;
    border: 1px solid rgba(255,255,255,.06);
}

.card {
    margin-top: 30px;
}

.card h1 {
    font-size: 22px;
    margin-bottom: 18px;
}

.card > p,
.hero > p {
    color: var(--muted);
}

form {
    display: grid;
    gap: 14px;
    max-width: 540px;
    background: #111;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 20px;
}

label {
    display: grid;
    gap: 7px;
    color: #d7d7d7;
    font-weight: 800;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 9px;
    padding: 12px 13px;
    background: #202020;
    color: #fff;
    outline: none;
}

input:focus,
select:focus,
textarea:focus {
    border-color: rgba(255,255,255,.32);
}

.notice {
    width: fit-content;
    max-width: 100%;
    border: 1px solid rgba(255,255,255,.12);
    background: #202020;
    border-radius: 999px;
    padding: 9px 15px;
    color: #fff;
    font-weight: 800;
}

.notice.bad {
    background: rgba(255,59,59,.18);
    color: #ff8c8c;
}

.grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fill, minmax(178px, 1fr));
}

.list {
    display: grid;
    gap: 14px;
}

.mini-card,
.list article {
    min-height: 148px;
    background: #202020;
    border: 1px solid rgba(255,255,255,.045);
    border-radius: 0;
    padding: 18px;
    position: relative;
}

.mini-card h2,
.list h2 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 15px;
    font-weight: 900;
}

.mini-card p,
.list p {
    color: var(--muted);
    margin: 0 0 8px;
}

.big {
    font-size: 38px;
    font-weight: 950;
    color: #fff;
    margin: 0;
}

.narrow {
    max-width: 640px;
    margin-inline: auto;
}

.site-footer {
    width: min(1156px, calc(100% - 48px));
    margin: 0 auto;
    padding: 32px 0 38px;
    color: var(--muted);
    border-top: 1px solid var(--line);
    text-align: left;
}

@media (max-width: 820px) {
    .site-header {
        min-height: auto;
        padding: 20px 24px;
        align-items: flex-start;
        flex-direction: column;
    }

    .site-header nav {
        gap: 18px;
        overflow-x: auto;
        max-width: 100%;
        padding-bottom: 4px;
    }

    .site-main {
        width: min(100% - 32px, 1156px);
        padding-top: 24px;
    }

    .hero h1,
    .card h1 {
        font-size: 26px;
    }

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

    form {
        padding: 16px;
    }
}

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

    .hero h1::before {
        display: block;
        margin: 0 0 12px;
    }
}












.site-footer{
    margin-top:80px;
    background:#0b0b0b;
    border-top:1px solid rgba(255,255,255,.08);
    padding:60px 30px 25px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:40px;
    max-width:1400px;
    margin:0 auto;
}

.footer-column h3{
    margin:0 0 15px;
    font-size:18px;
    font-weight:700;
    color:#fff;
}

.footer-column p{
    color:#999;
    line-height:1.7;
}

.footer-column ul{
    list-style:none;
    margin:0;
    padding:0;
}

.footer-column li{
    margin-bottom:10px;
}

.footer-column a{
    color:#b8b8b8;
    text-decoration:none;
    transition:.2s;
}

.footer-column a:hover{
    color:#ffffff;
}

.footer-bottom{
    max-width:1400px;
    margin:40px auto 0;
    border-top:1px solid rgba(255,255,255,.08);
    padding-top:25px;
}

.footer-disclaimer-toggle{
    background:none;
    border:none;
    color:#ffffff;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    padding:0;
}

.footer-toggle-icon{
    display:inline-block;
    width:20px;
}

.footer-disclaimer-content{
    display:none;
    margin-top:20px;
    padding:20px;
    background:#141414;
    border:1px solid rgba(255,255,255,.08);
    border-radius:12px;
}

.footer-disclaimer-content p{
    color:#9f9f9f;
    margin:0 0 15px;
    line-height:1.7;
}

.footer-copyright{
    margin-top:25px;
    color:#666;
    font-size:13px;
}

@media (max-width:900px){

    .footer-grid{
        grid-template-columns:1fr;
        gap:25px;
    }

}
.site-brand-footer{
    max-width:1180px;
    margin:28px auto 0;
    padding:18px 22px;
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    background:rgba(255,255,255,.035);
    color:#d7d8df;
}
.site-brand-footer p{margin:0;line-height:1.6}

@media (max-width: 768px) {
    .cookie-notice,
    .cookie-banner,
    #cookie-notice,
    #cookieBanner {
        position: fixed !important;
        left: 12px !important;
        right: 12px !important;
        bottom: 12px !important;
        z-index: 999999 !important;
    }

    .wru-live-chat,
    #wru-live-chat,
    .live-chat-widget {
        bottom: 145px !important;
        z-index: 99999 !important;
    }
}
