:root {
    color-scheme: dark;
    --site-bg: #0d0d11;
    --site-surface: #15151b;
    --site-surface-2: #1c1c24;
    --site-border: #2a2a34;
    --site-text: #f7f7fa;
    --site-muted: #9c9cab;
    --site-accent: #ec2d78;
    --site-accent-hover: #d91f68;
    --site-purple: #8e5bff;
    --site-danger: #ff4d5e;
    --site-success: #37d697;
    --site-header-height: 49px;
    --site-width: 1560px;
    --site-radius: 10px;
    --site-shadow: 0 20px 60px rgba(0, 0, 0, .28);
}

* {
    box-sizing: border-box;
}

html {
    min-width: 320px;
    overflow-x: hidden;
    scroll-behavior: smooth;
    background: var(--site-bg);
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    margin: 0;
    color: var(--site-text);
    background: var(--site-bg);
    font-family:
        Arial,
        Helvetica,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    line-height: 1.45;
    -webkit-font-smoothing: antialiased;
}

body::before {
    position: fixed;
    z-index: -1;
    inset: 0;
    pointer-events: none;
    content: "";
    background:
        radial-gradient(circle at 12% 0, rgba(236, 45, 120, .09), transparent 28rem),
        radial-gradient(circle at 88% 4%, rgba(142, 91, 255, .08), transparent 26rem);
}

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

button,
input,
textarea,
select {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    color: inherit;
}

img,
video {
    display: block;
    max-width: 100%;
}

main,
section,
aside,
header,
footer,
nav {
    min-width: 0;
}

[hidden] {
    display: none !important;
}

.sr-only {
    position: absolute !important;
    overflow: hidden !important;
    width: 1px !important;
    height: 1px !important;
    margin: -1px !important;
    padding: 0 !important;
    clip: rect(0 0 0 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    height: var(--site-header-height);
    color: #1c1c22;
    border-bottom: 1px solid #e5e5e8;
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 1px 5px rgba(0, 0, 0, .04);
    backdrop-filter: blur(14px);
}

.site-header-inner {
    display: grid;
    width: 100%;
    height: 100%;
    padding: 0 18px 0 23px;
    grid-template-columns: minmax(140px, auto) minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    width: max-content;
    color: var(--site-accent);
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: 27px;
    font-style: italic;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -1.8px;
    transform: skewX(-6deg);
}

.site-brand span,
.footer-brand span {
    color: #f04a8c;
}

.primary-navigation {
    display: flex;
    height: 100%;
    align-items: stretch;
    justify-content: center;
    gap: 18px;
}

.primary-navigation a {
    position: relative;
    display: inline-flex;
    height: 100%;
    align-items: center;
    gap: 7px;
    color: #17171d;
    border-bottom: 2px solid transparent;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    transition:
        color .16s ease,
        border-color .16s ease;
}

.primary-navigation a:hover,
.primary-navigation a.active {
    color: var(--site-accent);
    border-bottom-color: var(--site-accent);
}

.navigation-chevron {
    width: 6px;
    height: 6px;
    margin-top: -3px;
    transform: rotate(45deg);
    border-right: 1px solid #9c9ca3;
    border-bottom: 1px solid #9c9ca3;
}

.site-header-actions {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: flex-end;
    gap: 13px;
}

.adult-badge {
    display: inline-flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 50%;
    background: #34343a;
    font-size: 10px;
    font-weight: 900;
}

.header-login-link {
    color: #222228;
    font-size: 13px;
    font-weight: 500;
}

.header-login-link:hover {
    color: var(--site-accent);
}

.header-button {
    display: inline-flex;
    min-height: 35px;
    padding: 0 16px;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 2px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.header-button-primary {
    color: #fff;
    background: var(--site-accent);
}

.header-button-primary:hover {
    background: var(--site-accent-hover);
}

.header-credit-offer {
    display: inline-flex;
    min-width: 142px;
    height: 42px;
    padding: 0 10px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #ffffff;
    border-radius: 0;
    background: #df2364;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .08);
    transition: background .16s ease;
}

.header-credit-offer:hover {
    color: #ffffff;
    background: #c91f59;
}

.header-credit-icon {
    position: relative;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border-radius: 50%;
    background: #ffffff;
}

.header-credit-icon::before,
.header-credit-icon::after {
    position: absolute;
    left: 50%;
    width: 17px;
    height: 5px;
    content: "";
    transform: translateX(-50%);
    border: 2px solid #df2364;
    border-radius: 50%;
    background: #ffffff;
}

.header-credit-icon::before {
    top: 9px;
    box-shadow:
        0 5px 0 -2px #ffffff,
        0 5px 0 0 #df2364;
}

.header-credit-icon::after {
    top: 19px;
}

.header-credit-copy {
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    column-gap: 5px;
    line-height: 1;
}

.header-credit-copy strong {
    font-size: 17px;
    font-weight: 900;
    letter-spacing: -.03em;
}

.header-credit-copy span {
    font-size: 12px;
    font-weight: 800;
    line-height: .95;
}

.site-main {
    width: 100%;
    min-height: calc(100vh - var(--site-header-height) - 110px);
}

.site-footer {
    margin-top: 48px;
    color: #777780;
    border-top: 1px solid #e5e5e8;
    background: #fff;
}

.site-footer-inner {
    display: grid;
    width: 100%;
    min-height: 92px;
    padding: 20px 24px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;
}

.footer-brand {
    color: var(--site-accent);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    font-style: italic;
    font-weight: 800;
    letter-spacing: -1px;
}

.site-footer p {
    margin: 0;
    font-size: 12px;
}

.site-footer-safety {
    text-align: center;
}

.site-footer-meta {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
}

.footer-cookie-button {
    padding: 0;
    color: #9fa5bb;
    border: 0;
    border-bottom: 1px solid transparent;
    background: transparent;
    cursor: pointer;
    font-size: 12px;
}

.footer-cookie-button:hover,
.footer-cookie-button:focus-visible {
    color: var(--site-accent);
    border-bottom-color: currentColor;
    outline: 0;
}

.site-footer-copyright {
    white-space: nowrap;
}

.cookie-consent {
    position: fixed;
    z-index: 1000;
    right: 14px;
    bottom: max(14px, env(safe-area-inset-bottom));
    left: 14px;
    width: min(1120px, calc(100% - 28px));
    margin: 0 auto;
    overflow: hidden;
    color: #eef1fb;
    border: 1px solid rgba(124, 86, 214, .42);
    border-radius: 14px;
    background:
        radial-gradient(circle at 12% 0, rgba(236, 45, 120, .14), transparent 22rem),
        radial-gradient(circle at 92% 0, rgba(41, 152, 255, .10), transparent 24rem),
        linear-gradient(180deg, rgba(16, 18, 31, .98), rgba(10, 12, 22, .98));
    box-shadow:
        0 20px 60px rgba(0, 0, 0, .34),
        0 0 0 1px rgba(255, 255, 255, .02) inset;
    opacity: 0;
    transform: translateY(calc(100% + 28px));
    transition:
        opacity .18s ease,
        transform .18s ease;
    backdrop-filter: blur(18px);
}

.cookie-consent.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.cookie-consent-inner {
    display: grid;
    padding: 17px 18px;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
}

.cookie-consent-copy {
    display: flex;
    min-width: 0;
    align-items: flex-start;
    gap: 13px;
}

.cookie-consent-icon {
    display: inline-flex;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 1px solid rgba(255, 105, 167, .48);
    border-radius: 50%;
    background: linear-gradient(135deg, #ec2d78, #a51b74);
    box-shadow: 0 10px 24px rgba(236, 45, 120, .24);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    font-style: italic;
    font-weight: 800;
}

.cookie-consent h2 {
    margin: 0 0 4px;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.25;
}

.cookie-consent p {
    max-width: 720px;
    margin: 0;
    color: #b9bed1;
    font-size: 12px;
    line-height: 1.5;
}

.cookie-consent-details-toggle {
    margin-top: 6px;
    padding: 0;
    color: var(--site-accent);
    border: 0;
    border-bottom: 1px solid transparent;
    background: transparent;
    cursor: pointer;
    font-size: 11px;
    font-weight: 700;
}

.cookie-consent-details-toggle:hover,
.cookie-consent-details-toggle:focus-visible {
    border-bottom-color: currentColor;
    outline: 0;
}

.cookie-consent-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-consent-button {
    min-height: 40px;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: 9px;
    cursor: pointer;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    transition:
        background .15s ease,
        border-color .15s ease,
        color .15s ease,
        transform .15s ease;
}

.cookie-consent-button:focus-visible {
    outline: 3px solid rgba(236, 45, 120, .22);
    outline-offset: 2px;
}

.cookie-consent-button-primary {
    color: #fff;
    border-color: rgba(255, 87, 154, .78);
    background: linear-gradient(135deg, var(--site-accent), #a91d73);
    box-shadow: 0 10px 24px rgba(236, 45, 120, .18);
}

.cookie-consent-button-primary:hover {
    transform: translateY(-1px);
    background: linear-gradient(135deg, #ff4f99, #b61b7b);
}

.cookie-consent-button-secondary {
    color: #f0f2fa;
    border-color: rgba(159, 80, 237, .42);
    background: rgba(255, 255, 255, .04);
}

.cookie-consent-button-secondary:hover {
    transform: translateY(-1px);
    color: #fff;
    border-color: rgba(236, 45, 120, .5);
    background: rgba(236, 45, 120, .12);
}

.cookie-consent-details {
    display: grid;
    padding: 14px 18px 16px 69px;
    border-top: 1px solid rgba(124, 86, 214, .26);
    background: rgba(255, 255, 255, .03);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.cookie-consent-details div {
    display: grid;
    gap: 2px;
}

.cookie-consent-details strong {
    color: #ffffff;
    font-size: 11px;
}

.cookie-consent-details span {
    color: #b9bed1;
    font-size: 11px;
    line-height: 1.4;
}

@media (max-width: 980px) {
    :root {
        --site-header-height: 91px;
    }

    .site-header {
        height: var(--site-header-height);
    }

    .site-header-inner {
        padding: max(8px, env(safe-area-inset-top)) 12px 0;
        grid-template-columns: minmax(120px, auto) minmax(0, 1fr);
        grid-template-rows: 40px 42px;
        gap: 0 12px;
    }

    .site-brand {
        font-size: 25px;
    }

    .site-header-actions {
        height: 40px;
    }

    .primary-navigation {
        order: 3;
        overflow-x: auto;
        grid-column: 1 / -1;
        justify-content: flex-start;
        gap: 21px;
        scrollbar-width: none;
    }

    .primary-navigation::-webkit-scrollbar {
        display: none;
    }

    .primary-navigation a {
        flex: 0 0 auto;
        height: 42px;
    }

    .adult-badge {
        display: none;
    }
}

@media (max-width: 620px) {
    .site-header-inner {
        padding-inline: 10px;
    }

    .site-header-actions {
        gap: 8px;
    }

    .header-button {
        min-height: 32px;
        padding-inline: 10px;
        font-size: 10px;
    }

    .header-login-link {
        font-size: 12px;
    }

    .header-credit-offer {
        min-width: 136px;
        height: 38px;
        padding-inline: 8px;
        gap: 7px;
    }

    .header-credit-icon {
        width: 30px;
        height: 30px;
        flex-basis: 30px;
    }

    .header-credit-icon::before {
        top: 7px;
    }

    .header-credit-icon::after {
        top: 17px;
    }

    .header-credit-copy strong {
        font-size: 16px;
    }

    .header-credit-copy span {
        font-size: 11px;
    }

    .primary-navigation {
        gap: 18px;
    }

    .primary-navigation a {
        font-size: 12px;
    }

    .site-footer-inner {
        grid-template-columns: 1fr;
        padding-bottom: max(24px, env(safe-area-inset-bottom));
        gap: 12px;
        text-align: center;
    }

    .site-footer-meta {
        justify-content: center;
    }
}

@media (max-width: 360px) {
    .site-header-inner {
        grid-template-columns: minmax(92px, auto) minmax(0, 1fr);
        gap: 0 8px;
    }

    .site-brand {
        font-size: 22px;
    }

    .site-header-actions {
        gap: 6px;
    }

    .header-credit-offer {
        min-width: 126px;
        padding-inline: 6px;
        gap: 5px;
    }

    .header-credit-copy span {
        font-size: 10px;
    }
}

@media (max-width: 760px) {
    .cookie-consent {
        right: 8px;
        bottom: max(8px, env(safe-area-inset-bottom));
        left: 8px;
        width: calc(100% - 16px);
        border-radius: 6px;
    }

    .cookie-consent-inner {
        padding: 14px;
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .cookie-consent-copy {
        gap: 10px;
    }

    .cookie-consent-icon {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
        font-size: 18px;
    }

    .cookie-consent h2 {
        font-size: 15px;
    }

    .cookie-consent p {
        font-size: 11px;
    }

    .cookie-consent-actions {
        width: 100%;
    }

    .cookie-consent-button {
        flex: 1 1 0;
        min-width: 0;
        padding-inline: 9px;
        font-size: 10px;
    }

    .cookie-consent-details {
        padding: 13px 14px 15px;
        grid-template-columns: 1fr;
        gap: 11px;
    }
}
