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

:root {
    --color-cyan: #abf2ff;
    --color-cyan-dark: #00839A;
    --color-white: #fff;
    --color-black: #000;
    --color-text: #000;
    --font-display: 'Anton', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    --container-width: 1200px;
    --content-width: 1080px;
    /* Side padding that keeps content centered at --content-width
       while letting section backgrounds bleed full-width. */
    --side-pad: max(60px, calc((100% - var(--content-width)) / 2));
}

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

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.3;
    color: var(--color-text);
    background: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

.container {
    width: 100%;
    margin: 0 auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 48px;
    border-radius: 30px;
    font-family: var(--font-body);
    font-weight: 900;
    font-size: 16px;
    line-height: 1.2;
    text-transform: capitalize;
    text-align: center;
    cursor: pointer;
    transition: opacity .2s ease, transform .2s ease;
}

.btn:hover {
    opacity: .9;
    transform: translateY(-3px);
}

.btn:active {
    transform: translateY(-1px);
}

.btn--cyan {
    background: var(--color-cyan);
    color: var(--color-white);
}

.btn--white {
    background: var(--color-white);
    color: var(--color-black);
}

.btn--cyan-dark {
    background: var(--color-cyan);
    color: var(--color-black);
}

.section-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 120px;
    line-height: 0.9;
    text-transform: uppercase;
    color: var(--color-black);
}

.section-title--center {
    text-align: center;
}

.section {
    padding: 60px var(--side-pad);
    background: var(--color-white);
}

.section--cyan {
    background: var(--color-cyan);
}

.header {
    position: relative;
    z-index: 5;
    padding: 20px var(--side-pad) 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.header__logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.header__logo-text {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 30px;
    color: var(--color-white);
    white-space: nowrap;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header__nav a {
    position: relative;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 16px;
    color: var(--color-white);
    white-space: nowrap;
    transition: opacity .2s ease;
}

.header__nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: currentColor;
    transition: width .25s ease;
}

.header__nav a:hover {
    opacity: .85;
}

.header__nav a:hover::after {
    width: 100%;
}

.header__logo {
    transition: transform .25s ease;
}

.header__logo:hover {
    transform: scale(1.04);
}

.header__burger {
    display: none;
    position: relative;
    z-index: 70;
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
    width: 26px;
    height: 9px;
}

.header__burger img {
    width: 100%;
    height: 100%;
}

.header--solid {
    background: var(--color-white);
    padding: 14px var(--side-pad);
}

.header--solid .header__logo-text,
.header--solid .header__nav a {
    color: #0f0f19;
}

.header--solid .header__burger img {
    filter: invert(1);
}

.footer {
    background: var(--color-cyan);
    padding: 60px var(--side-pad);
    color: var(--color-black);
}

.footer__contacts {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 49px;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
    white-space: nowrap;
    margin-bottom: 10px;
}

.footer__contacts p {
    text-align: center;
}

.footer__contacts a {
    color: inherit;
    transition: opacity .2s ease;
}

.footer__contacts a:hover {
    opacity: .65;
}

.footer__row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 10px;
}

.footer__copy {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 14px;
    color: var(--color-black);
    white-space: nowrap;
}

.footer__links {
    display: flex;
    align-items: center;
    gap: 49px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14px;
    line-height: 1.2;
    text-transform: capitalize;
    text-align: center;
    white-space: nowrap;
}

.footer__links a {
    transition: opacity .2s ease;
}

.footer__links a:hover {
    opacity: .65;
    text-decoration: underline;
}

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

.footer__socials a {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    transition: transform .2s ease;
}

.footer__socials a:hover {
    transform: scale(1.08);
}

.footer__socials img {
    width: 100%;
    height: 100%;
}

.footer__brand {
    display: flex;
    align-items: center;
    gap: 35.368px;
    height: 188.632px;
}

.footer__brand-img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    flex-shrink: 0;
}

.footer__brand-name {
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 90px;
    line-height: 0.9;
    letter-spacing: 7.2px;
    text-transform: capitalize;
    color: var(--color-black);
    text-align: center;
    white-space: nowrap;
}

.hero {
    position: relative;
    overflow: hidden;
    padding-bottom: 60px;
    color: var(--color-white);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero--home::before { background-image: url(/wp-content/themes/lynorkrevvynor/assets/images/hero-bg.webp); }
.hero--catalog::before { background-image: url(/wp-content/themes/lynorkrevvynor/assets/images/catalog-hero-bg.webp); }

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    z-index: 1;
}

.hero--catalog::after {
    background: rgba(0, 0, 0, .7);
}

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

.hero__inner {
    padding: 220px 60px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 180px;
    line-height: 0.9;
    text-transform: uppercase;
    color: var(--color-white);
    width: 100%;
    max-width: 1080px;
}

.hero--catalog .hero__title {
    font-size: 120px;
}

.hero__desc {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
    color: var(--color-white);
    width: 100%;
    max-width: 1080px;
}

.about {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about__images {
    display: flex;
    gap: 18px;
    width: 100%;
}

.about__images .about__image {
    height: 320px;
    flex-shrink: 0;
}

.about__images .about__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__img--1 { width: 256px; }
.about__img--2 { width: 350px; }
.about__img--3 { width: 439px; }

.about__bottom {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.about__text {
    flex: 1;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
    color: var(--color-black);
}

.about__text p + p {
    margin-top: 1.3em;
}

.about__arrow {
    width: 83.055px;
    height: 79px;
    flex-shrink: 0;
}

.about__arrow img {
    width: 100%;
    height: 100%;
}

.about__images-mobile {
    display: none;
}

.why {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.why__intro {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
    color: var(--color-black);
    width: 100%;
}

.why__cards,
.reviews__cards {
    display: flex;
    gap: 24px;
    align-items: stretch;
    width: 100%;
}

.card {
    background: var(--color-cyan);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    min-width: 0;
    transition: transform .25s ease, box-shadow .25s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0, 131, 154, .18);
}

.card__title {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 24px;
    line-height: 1.1;
    color: var(--color-black);
}

.card__text {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
    color: var(--color-black);
}

.discover {
    display: flex;
    gap: 40px;
    align-items: center;
}

.discover__content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
}

.discover__text {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
    color: var(--color-black);
    width: 100%;
}

.discover__text p + p {
    margin-top: 1.3em;
}

.discover__image {
    width: 439px;
    height: 320px;
    flex-shrink: 0;
    overflow: hidden;
}

.discover__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.about__image,
.game-page__image {
    overflow: hidden;
}

.about__image img,
.game-page__image img {
    transition: transform .5s ease;
}

.about__image:hover img,
.discover__image:hover img,
.game-page__image:hover img {
    transform: scale(1.05);
}

.reviews {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.catalog {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.games {
    display: flex;
    flex-wrap: wrap;
    gap: 80px;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
}

.games__pair {
    display: contents;
}

.game {
    display: block;
    flex-shrink: 0;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}

.game:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .12);
}

.game img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.game:hover img {
    transform: scale(1.06);
}

.game--xl { width: 367px; height: 367px; }
.game--lg { width: 228px; height: 228px; }
.game--sm { width: 135px; height: 135px; }

.catalog__text {
    display: flex;
    gap: 12px;
    width: 100%;
    align-items: flex-start;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
    color: var(--color-black);
}

.catalog__col {
    flex: 1;
    min-width: 0;
}

.catalog__col p + p {
    margin-top: 1.3em;
}

.game-page {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.game-page__top {
    display: flex;
    gap: 40px;
    align-items: center;
    width: 100%;
}

.game-page__content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
}

.game-page__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 120px;
    line-height: 0.9;
    text-transform: uppercase;
    color: var(--color-black);
    width: 100%;
}

.game-page__image {
    width: 518px;
    height: 507px;
    flex-shrink: 0;
}

.game-page__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-page__about {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    color: var(--color-black);
}

.game-page__subtitle {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 20px;
    line-height: 1.6;
    text-transform: uppercase;
}

.game-page__desc {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
}

.game-page__desc p {
    flex: 1;
    min-width: 0;
}

.policy {
    display: flex;
    flex-direction: column;
    gap: 40px;
    color: var(--color-black);
}

.policy__body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
    width: 100%;
}

.policy__body p {
    margin-bottom: 10px;
}

.policy__body p:last-child {
    margin-bottom: 0;
}

.policy__body ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 10px;
}

.policy__body ul li {
    margin-bottom: 0;
}

.policy__body a {
    color: inherit;
    text-decoration: underline;
}

/* ---------- Scroll reveal ---------- */
.reveal-init {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
    will-change: opacity, transform;
}

.reveal-in {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .reveal-init {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ---------- Cookie consent banner ---------- */
.cookie {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: rgba(0, 0, 0, .78);
    animation: cookie-fade .35s ease;
}

.cookie[hidden] {
    display: none;
}

body.cookie-open {
    overflow: hidden;
}

.cookie__box {
    width: 100%;
    max-width: 960px;
    background: var(--color-cyan);
    border-radius: 24px;
    padding: 60px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .35);
    animation: cookie-pop .4s cubic-bezier(.16, 1, .3, 1);
}

.cookie__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 64px;
    line-height: .9;
    text-transform: uppercase;
    color: var(--color-black);
}

.cookie__text {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: var(--color-black);
    max-width: 780px;
}

.cookie__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.cookie__btn {
    min-width: 190px;
    padding: 18px 40px;
    border: 0;
    border-radius: 40px;
    background: var(--color-white);
    color: var(--color-black);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

.cookie__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .22);
}

.cookie__btn:active {
    transform: translateY(-1px);
}

@keyframes cookie-fade {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes cookie-pop {
    from { opacity: 0; transform: translateY(24px) scale(.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 1023px) {
    .container { max-width: 100%; }

    .header {
        padding: 20px;
    }

    .header__logo-img { width: 32px; height: 32px; }
    .header__logo-text { font-size: 20px; }
    .header__nav { display: none; }
    .header__burger { display: block; }

    body.nav-open {
        overflow: hidden;
    }

    body.nav-open .header {
        z-index: 100;
    }

    body.nav-open .header__logo {
        position: relative;
        z-index: 70;
    }

    body.nav-open .header__logo-text {
        color: var(--color-black);
    }

    body.nav-open .header__nav {
        display: flex;
        position: fixed;
        inset: 0;
        z-index: 60;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 36px;
        padding: 80px 24px;
        background: var(--color-cyan);
        animation: nav-fade .3s ease;
    }

    body.nav-open .header__nav a {
        color: var(--color-black);
        font-size: 28px;
        font-weight: 700;
    }

    body.nav-open .header__nav a::after {
        display: none;
    }

    body.nav-open .header__burger img {
        filter: invert(1);
    }

    @keyframes nav-fade {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    .section {
        padding: 40px 20px;
    }

    .section-title { font-size: 40px; }

    .hero {
        padding-bottom: 40px;
    }

    .hero__inner {
        padding: 120px 20px 0;
        gap: 20px;
    }

    .hero__title { font-size: 60px; }

    .hero--catalog .hero__title { font-size: 40px; }

    .about__images {
        display: none;
    }

    .about__images-mobile {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .about__images-mobile .about__image {
        width: 100%;
        height: 200px;
    }

    .about__images-mobile .about__image--tall {
        height: 320px;
    }

    .about__images-mobile .about__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .about {
        gap: 20px;
    }

    .about__bottom {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .why {
        gap: 20px;
    }

    .why__cards,
    .reviews__cards {
        flex-direction: column;
        gap: 24px;
    }

    .discover {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }

    .discover__content {
        gap: 20px;
    }

    .discover__image {
        width: 100%;
        height: 320px;
    }

    .reviews {
        gap: 20px;
    }

    .catalog {
        gap: 20px;
    }

    .games {
        gap: 40px;
    }

    .game--xl {
        width: 100%;
        max-width: 367px;
        height: auto;
        aspect-ratio: 1;
    }

    .game--sm {
        width: 135px;
        height: 135px;
    }

    .games__pair {
        display: flex;
        gap: 40px;
        width: 100%;
    }

    .games__pair .game--lg {
        flex: 1;
        width: auto;
        height: auto;
        aspect-ratio: 1;
    }

    .catalog__text {
        flex-direction: column;
        gap: 20px;
    }

    .header--solid {
        padding: 14px 20px;
    }

    .game-page {
        gap: 20px;
        align-items: center;
    }

    .game-page__top {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        width: 100%;
    }

    .game-page__content {
        align-items: center;
        gap: 20px;
        width: 100%;
    }

    .game-page__title {
        font-size: 40px;
        text-align: center;
    }

    .game-page__image {
        width: 100%;
        height: auto;
        aspect-ratio: 390 / 382;
    }

    .game-page__desc {
        flex-direction: column;
        gap: 20px;
    }

    .policy {
        gap: 20px;
    }

    .footer {
        padding: 60px 20px;
    }

    .footer__contacts {
        flex-direction: column;
        gap: 10px;
        white-space: normal;
    }

    .footer__contacts p {
        white-space: normal;
        word-break: break-word;
    }

    .footer__row {
        flex-direction: column-reverse;
        align-items: center;
        gap: 10px;
    }

    .footer__links {
        gap: 16px;
        width: 100%;
        justify-content: space-between;
        white-space: normal;
    }

    .footer__brand {
        height: auto;
        gap: 10px;
        width: 100%;
    }

    .footer__brand-img {
        width: 60px;
        height: 60px;
    }

    .footer__brand-name {
        font-size: 40px;
        letter-spacing: 3.2px;
        flex: 1;
        min-width: 0;
        text-align: left;
        white-space: normal;
        word-break: break-word;
    }
}

@media (max-width: 1023px) {
    .cookie {
        padding: 20px;
    }

    .cookie__box {
        padding: 28px;
        border-radius: 16px;
        gap: 18px;
    }

    .cookie__title {
        font-size: 40px;
    }

    .cookie__text {
        font-size: 16px;
        line-height: 1.45;
    }

    .cookie__btn {
        min-width: 0;
        flex: 1;
        padding: 16px 20px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero__title { font-size: 48px; }
    .footer__brand-name { font-size: 32px; letter-spacing: 2px; }
    .footer__links { gap: 10px; font-size: 12px; }
}

.inline-link{color:#16d6c8;text-decoration:underline;text-underline-offset:3px;font-weight:500}
.inline-link:hover{opacity:.85}
.editorial-meta{display:block;color:#000;font-size:13px;line-height:1.6;margin:6px 0 14px;letter-spacing:.02em}
.editorial-note{border-left:2px solid #16d6c8;padding:6px 0 6px 16px;margin:18px 0;font-size:14px;line-height:1.6;color:rgba(255,255,255,.85)}
.source-line{font-size:14px;line-height:1.7;color:rgba(255,255,255,.85);margin:14px 0 0}
.dev-notice{display:block;margin:14px 0 0;font-size:12px;line-height:1.5;color:rgba(255,255,255,.65);text-align:center}
.byline{margin-bottom:8px;color:#000;font-size:13px;line-height:1.6}
.source-line{
    color:#000;
}