@font-face {
    font-family: 'Plus Jakarta Sans';
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
    src: url('../fonts/plus-jakarta-sans-latin.woff2') format('woff2');
}

@font-face {
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 500 700;
    font-display: swap;
    src: url('../fonts/space-grotesk-latin.woff2') format('woff2');
}

:root {
    --red: #E63946;
    --red-deep: #C81E2C;
    --red-soft: #FFE4E6;

    --blue: #2563EB;
    --blue-deep: #1D4ED8;
    --blue-soft: #DBEAFE;

    --cyan: #38BDF8;
    --indigo: #6366F1;
    --violet: #8B5CF6;

    --bg: #FAFAFC;
    --bg-soft: #F4F5F9;
    --surface: #FFFFFF;
    --border: #ECEDF3;
    --border-strong: #E1E3EC;

    --ink: #0B0D17;
    --ink-2: #2A2D3A;
    --ink-3: #595D6E;
    --ink-4: #8A8FA3;

    --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04), 0 1px 3px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 4px 8px rgba(15, 23, 42, 0.04), 0 12px 28px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 20px 60px -20px rgba(37, 99, 235, 0.22), 0 8px 24px rgba(15, 23, 42, 0.06);
    --shadow-xl: 0 40px 80px -30px rgba(37, 99, 235, 0.32), 0 12px 32px rgba(15, 23, 42, 0.08);
    --shadow-red: 0 16px 36px -12px rgba(230, 57, 70, 0.42);

    --grad-brand: linear-gradient(135deg, #E63946 0%, #8B5CF6 50%, #2563EB 100%);
    --grad-soft: linear-gradient(135deg, #FFE4E6 0%, #DBEAFE 100%);
    --grad-text: linear-gradient(135deg, #E63946 0%, #2563EB 100%);
    --grad-text-alt: linear-gradient(135deg, #2563EB 0%, #8B5CF6 100%);

    --radius-sm: 10px;
    --radius: 16px;
    --radius-lg: 22px;
    --radius-xl: 32px;
    --radius-2xl: 40px;

    --container: 1200px;
    --gutter: 28px;
    --header-h: 76px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*::selection { background: rgba(230,57,70,.18); color: var(--ink); }

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

body {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color .25s ease; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }

h1, h2, h3, h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: -0.02em;
    line-height: 1.12;
    color: var(--ink);
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}

p { overflow-wrap: break-word; word-wrap: break-word; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    position: relative;
    z-index: 2;
}

/* ============================================
   BACKGROUND DECORATIONS - clean, no grid
   ============================================ */
.bg-shapes {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: .55;
    will-change: transform;
}
.blob-1 {
    width: 700px; height: 700px;
    top: -260px; right: -200px;
    background: radial-gradient(circle, rgba(230,57,70,.42), rgba(230,57,70,0) 70%);
}
.blob-2 {
    width: 800px; height: 800px;
    top: 320px; left: -300px;
    background: radial-gradient(circle, rgba(37,99,235,.38), rgba(37,99,235,0) 70%);
}
.blob-3 {
    width: 560px; height: 560px;
    top: 1400px; right: -160px;
    background: radial-gradient(circle, rgba(139,92,246,.32), rgba(139,92,246,0) 70%);
}
.blob-4 {
    width: 620px; height: 620px;
    top: 2400px; left: -180px;
    background: radial-gradient(circle, rgba(56,189,248,.28), rgba(56,189,248,0) 70%);
}
.aurora {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 40% at 50% 0%, rgba(230,57,70,.06), transparent 60%),
        radial-gradient(ellipse 60% 30% at 20% 100%, rgba(37,99,235,.05), transparent 60%);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14.5px;
    line-height: 1.2;
    transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease, background .3s ease, border-color .3s ease, color .3s ease;
    white-space: nowrap;
    border: 1px solid transparent;
    text-align: center;
    max-width: 100%;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-primary {
    background: linear-gradient(135deg, #E63946, #C81E2C);
    color: #fff;
    box-shadow: var(--shadow-red);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 44px -14px rgba(230,57,70,.55);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
    background: rgba(255,255,255,.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-strong);
    color: var(--ink);
}
.btn-ghost:hover {
    background: #fff;
    border-color: var(--ink-3);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 15px 26px;
    font-size: 15px;
}
.btn-lg svg { width: 18px; height: 18px; }

.btn-block { width: 100%; }

/* ============================================
   GRADIENT TEXT - overflow-safe
   ============================================ */
.grad-text {
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-style: italic;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    display: inline-block;
    padding: 0 0.12em 0.1em 0.04em;
    line-height: 1.15;
    overflow-wrap: break-word;
}
.grad-text.alt {
    background: var(--grad-text-alt);
    -webkit-background-clip: text;
    background-clip: text;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    background: rgba(250, 250, 252, 0.78);
    border-bottom: 1px solid rgba(236, 237, 243, .6);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    flex-shrink: 0;
}
.logo-mark {
    display: block;
    line-height: 0;
    flex-shrink: 0;
}
.logo-mark img {
    height: 45px;
    width: auto;
    max-width: none;
    object-fit: contain;
    display: block;
}
.logo-text {
    font-size: 19px;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ff263f 0%, #d9102b 42%, #170f16 58%, #0b0d17 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    padding-right: 0.05em;
}

.nav {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(255,255,255,.6);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 6px;
    box-shadow: var(--shadow-sm);
}
.nav a {
    padding: 9px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-3);
    transition: color .25s ease, background .25s ease;
    white-space: nowrap;
}
.nav a:hover {
    color: var(--ink);
    background: rgba(11,13,23,.05);
}

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

.socials { display: flex; gap: 6px; }
.social-link {
    width: 38px; height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: rgba(255,255,255,.6);
    border: 1px solid var(--border);
    color: var(--ink-3);
    transition: all .25s ease;
}
.social-link svg { width: 17px; height: 17px; }
.social-link:hover {
    color: var(--red);
    border-color: var(--red);
    transform: translateY(-2px);
    box-shadow: 0 6px 14px -6px rgba(230,57,70,.4);
}

/* ============================================
   LANGUAGE SWITCHER
   ============================================ */
.lang-switch {
    position: relative;
    outline: none;
}
.lang-trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    background: rgba(255,255,255,.6);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-2);
    transition: all .25s ease;
    box-shadow: var(--shadow-sm);
    white-space: nowrap;
}
.lang-trigger:hover {
    border-color: var(--blue);
    color: var(--blue-deep);
}
.lang-globe { width: 16px; height: 16px; }
.lang-caret {
    width: 12px; height: 12px;
    transition: transform .25s ease;
    opacity: .6;
}
.lang-current { letter-spacing: .04em; }

.lang-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 200px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 8px;
    list-style: none;
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s;
    z-index: 200;
}
.lang-switch:hover .lang-menu,
.lang-switch:focus-within .lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.lang-switch:hover .lang-caret,
.lang-switch:focus-within .lang-caret {
    transform: rotate(180deg);
}
.lang-menu li {
    display: flex;
    padding: 0;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-2);
    transition: background .2s ease, color .2s ease;
}
.lang-menu li:hover { background: var(--bg-soft); color: var(--ink); }
.lang-menu li.active {
    background: linear-gradient(135deg, rgba(230,57,70,.08), rgba(37,99,235,.08));
    color: var(--ink);
}
.lang-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 14px;
    color: inherit;
    text-decoration: none;
}
.lang-menu .flag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    font-size: 17px;
    line-height: 1;
}
.lang-menu .flag img {
    width: 18px;
    height: 12px;
    object-fit: cover;
    border-radius: 2px;
    display: block;
}
.lang-menu .lang-code {
    margin-left: auto;
    font-size: 11px;
    font-weight: 700;
    color: var(--ink-4);
    letter-spacing: .04em;
}

/* ============================================
   MOBILE MENU TOGGLE
   ============================================ */
.menu-toggle-input { display: none; }
.menu-toggle {
    display: none;
    width: 42px; height: 42px;
    border-radius: 12px;
    background: rgba(255,255,255,.6);
    border: 1px solid var(--border);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    transition: all .25s ease;
}
.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform .3s ease, opacity .3s ease;
}
.menu-toggle-input:checked + .menu-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}
.menu-toggle-input:checked + .menu-toggle span:nth-child(2) {
    opacity: 0;
}
.menu-toggle-input:checked + .menu-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.mobile-drawer {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 24px 28px 32px;
    flex-direction: column;
    gap: 6px;
    z-index: 99;
    transform: translateY(calc(-100% - var(--header-h) - 2px));
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform .35s cubic-bezier(.2,.8,.2,1), opacity .25s ease, visibility .25s step-end;
    box-shadow: var(--shadow-lg);
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
}
.menu-toggle-input:checked ~ .mobile-drawer {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: transform .35s cubic-bezier(.2,.8,.2,1), opacity .25s ease;
}
.mobile-drawer a:not(.btn) {
    padding: 16px 8px;
    font-size: 17px;
    font-weight: 600;
    color: var(--ink);
    border-bottom: 1px solid var(--border);
}
.mobile-drawer .btn { margin-top: 18px; }
.mobile-drawer .socials {
    margin-top: 22px;
    justify-content: center;
    gap: 12px;
}
.mobile-drawer .social-link {
    width: 44px; height: 44px;
}
body.mobile-menu-open {
    overflow: hidden;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    padding: 46px 0 56px;
    position: relative;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 16px;
    background: rgba(255,255,255,.8);
    border: 1px solid var(--border-strong);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-2);
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
    max-width: 100%;
}
.eyebrow .dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 0 4px rgba(230,57,70,.18);
    animation: pulse 2.4s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(230,57,70,.18); }
    50% { box-shadow: 0 0 0 7px rgba(230,57,70,.06); }
}

.hero-title {
    font-size: clamp(36px, 5.2vw, 62px);
    font-weight: 800;
    line-height: 1.06;
    margin-bottom: 22px;
    letter-spacing: -0.025em;
}

.hero-text {
    font-size: 17px;
    color: var(--ink-3);
    line-height: 1.65;
    max-width: 540px;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin-bottom: 44px;
    flex-wrap: wrap;
}

.hero-stats {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    padding: 18px 26px;
    background: rgba(255,255,255,.78);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    max-width: 100%;
    flex-wrap: wrap;
}
.stat strong {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -.02em;
    line-height: 1.1;
}
.stat strong em { font-style: normal; font-size: 14px; color: var(--ink-4); font-weight: 600; }
.stat span {
    font-size: 12px;
    color: var(--ink-4);
    font-weight: 500;
}
.stat-divider {
    width: 1px;
    height: 32px;
    background: var(--border-strong);
}

/* === Hero visual === */
.hero-visual {
    position: relative;
    min-height: 540px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-shot {
    position: relative;
    z-index: 2;
    width: min(100%, 390px);
    margin: 0;
    padding: 10px;
    border-radius: 34px;
    background: rgba(255,255,255,.86);
    border: 1px solid rgba(255,255,255,.75);
    box-shadow: var(--shadow-xl);
    transform: rotate(-3deg);
}
.hero-shot img {
    width: 100%;
    display: block;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 24px;
}

.phone {
    position: absolute;
    width: 248px;
    height: 500px;
    border-radius: 44px;
    background: linear-gradient(160deg, #1a1d2a, #0b0d17);
    padding: 12px;
    box-shadow:
        0 50px 100px -30px rgba(37,99,235,.32),
        0 30px 60px -20px rgba(11,13,23,.4),
        inset 0 0 0 2px rgba(255,255,255,.08);
}
.phone::before {
    content: '';
    position: absolute;
    top: 22px;
    left: 50%;
    transform: translateX(-50%);
    width: 86px;
    height: 22px;
    background: #0b0d17;
    border-radius: 999px;
    z-index: 5;
}
.phone-back {
    top: 30px;
    right: 0;
    transform: rotate(8deg);
    opacity: .92;
}
.phone-front {
    top: 0;
    left: 30px;
    transform: rotate(-4deg);
    z-index: 2;
}

.screen {
    width: 100%;
    height: 100%;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}
.screen-purple {
    background: linear-gradient(160deg, #8B5CF6, #2563EB);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}
.screen-glow {
    position: absolute;
    top: 30%; left: 50%;
    transform: translate(-50%,-50%);
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,.4), transparent 70%);
    filter: blur(20px);
}
.mini-card {
    background: rgba(255,255,255,.18);
    backdrop-filter: blur(8px);
    border-radius: 14px;
    padding: 14px;
    width: 100%;
    border: 1px solid rgba(255,255,255,.25);
}
.mini-line {
    height: 8px;
    background: rgba(255,255,255,.6);
    border-radius: 4px;
    margin-bottom: 7px;
}
.mini-line.w70 { width: 70%; }
.mini-line.w50 { width: 50%; }

.screen-main {
    background: linear-gradient(180deg, #FFE4E6 0%, #DBEAFE 100%);
    padding: 50px 20px 20px;
}
.game-ui {
    height: 100%;
    display: flex;
    flex-direction: column;
}
.game-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.chip {
    padding: 6px 14px;
    background: #0b0d17;
    color: #fff;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
}
.hearts { display: flex; gap: 3px; }
.hearts svg { width: 14px; height: 14px; }

.puzzle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 20px;
}
.cell {
    aspect-ratio: 1;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(11,13,23,.1);
}
.cell.c1 { background: linear-gradient(135deg, #E63946, #C81E2C); }
.cell.c2 { background: linear-gradient(135deg, #2563EB, #1D4ED8); }
.cell.c3 { background: linear-gradient(135deg, #FFB400, #F59E0B); }

.game-bottom {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 12px;
}
.progress {
    flex: 1;
    height: 8px;
    background: rgba(11,13,23,.1);
    border-radius: 999px;
    overflow: hidden;
}
.progress span {
    display: block;
    width: 65%;
    height: 100%;
    background: linear-gradient(90deg, #E63946, #2563EB);
    border-radius: 999px;
}
.score {
    font-size: 13px;
    font-weight: 800;
    color: var(--red);
}

.floating-tag {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 999px;
    box-shadow: var(--shadow-md);
    font-size: 12.5px;
    font-weight: 700;
    color: var(--ink);
    z-index: 4;
    white-space: nowrap;
}
.floating-tag svg { width: 14px; height: 14px; flex-shrink: 0; }
.tag-1 {
    top: 60px;
    left: -20px;
    animation: float 4s ease-in-out infinite;
}
.tag-2 {
    bottom: 80px;
    right: -10px;
    animation: float 4s ease-in-out infinite reverse;
    animation-delay: -2s;
}
.ping {
    width: 8px; height: 8px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(34,197,94,.18);
    animation: pulse-green 2s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes pulse-green {
    0%, 100% { box-shadow: 0 0 0 4px rgba(34,197,94,.18); }
    50% { box-shadow: 0 0 0 8px rgba(34,197,94,.06); }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ============================================
   SECTION COMMONS
   ============================================ */
.section { padding: 64px 0; position: relative; }

.hero + .section {
    padding-top: 40px;
}

.section-head {
    margin-bottom: 36px;
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 40px;
    flex-wrap: wrap;
}
.section-head.center {
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.section-head > div { min-width: 0; flex: 1; }

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    background: var(--blue-soft);
    color: var(--blue-deep);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 16px;
    white-space: nowrap;
    max-width: 100%;
}
.kicker.red { background: var(--red-soft); color: var(--red-deep); }
.kicker svg { width: 13px; height: 13px; flex-shrink: 0; }

.section-title {
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 800;
    line-height: 1.1;
    max-width: 720px;
    letter-spacing: -0.025em;
}
.section-head.center .section-title { margin-inline: auto; }
.section-sub {
    color: var(--ink-3);
    font-size: 16px;
    line-height: 1.65;
    max-width: 480px;
}
.section-head.center .section-sub { margin-top: 16px; max-width: 580px; }

/* ============================================
   GAMES GRID
   ============================================ */
.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.game-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s ease, border-color .4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}
.game-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(37,99,235,.25);
}
.game-card-link {
    position: absolute;
    inset: 0;
    z-index: 2;
    border-radius: inherit;
}
.game-card-link:focus-visible {
    outline: 2px solid rgba(37,99,235,.55);
    outline-offset: -2px;
}

.game-thumb {
    aspect-ratio: 1 / 1;
    height: auto;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f7f9fc, #edf2f8);
    flex-shrink: 0;
    transform: translateZ(0);
    isolation: isolate;
}
.game-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: translate3d(0, 0, 0) scale(1);
    transform-origin: center center;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    will-change: transform, filter;
    transition: transform .42s cubic-bezier(.2,.8,.2,1), filter .42s cubic-bezier(.2,.8,.2,1);
}
.game-card:hover .game-thumb img {
    transform: translate3d(0, 0, 0) scale(1.022);
    filter: saturate(1.04) contrast(1.02);
}

/* === Game label system === */
.game-label {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.6);
    border-radius: 999px;
    font-size: 11.5px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: .02em;
    box-shadow: 0 8px 20px -8px rgba(11,13,23,.3);
    max-width: calc(100% - 28px);
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.game-label-stack {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: calc(100% - 28px);
}
.game-label-stack .game-label {
    position: static;
    top: auto;
    left: auto;
    max-width: 100%;
}
.game-label svg { width: 12px; height: 12px; flex-shrink: 0; }
.label-popular { color: #DC2626; }
.label-popular svg { color: #DC2626; }
.label-new {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    border-color: rgba(255,255,255,.3);
}
.label-new .label-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255,255,255,.3);
    flex-shrink: 0;
}
.label-featured {
    background: linear-gradient(135deg, #E63946, #8B5CF6);
    color: #fff;
    border-color: rgba(255,255,255,.3);
}
.label-updated { color: var(--blue-deep); }
.label-updated svg { color: var(--blue-deep); }
.label-soon {
    background: rgba(11,13,23,.85);
    color: #fff;
    border-color: rgba(255,255,255,.15);
}
.label-pick {
    background: linear-gradient(135deg, #FFB400, #F59E0B);
    color: #5C2D00;
    border-color: rgba(255,255,255,.4);
}

.game-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.game-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    gap: 12px;
    flex-wrap: wrap;
}
.rating {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: var(--ink-2);
    flex-shrink: 0;
}
.rating svg { width: 14px; height: 14px; }
.rating strong { font-weight: 700; }

.tags { display: flex; gap: 6px; flex-wrap: wrap; }
.tag {
    padding: 4px 10px;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    color: var(--ink-3);
    white-space: nowrap;
}

.game-card h3 {
    font-size: 21px;
    font-weight: 800;
    margin-bottom: 8px;
}
.game-card p {
    font-size: 14px;
    color: var(--ink-3);
    line-height: 1.55;
    margin-bottom: 20px;
    flex: 1;
}

/* === Platform buttons === */
.platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
    position: relative;
    z-index: 3;
}
.platform-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: #0b0d17;
    color: #fff;
    border-radius: 12px;
    font-size: 12.5px;
    font-weight: 600;
    border: 1px solid #0b0d17;
    transition: transform .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
    flex: 1 1 auto;
    min-width: 0;
    justify-content: center;
    white-space: nowrap;
    position: relative;
    z-index: 3;
}
.platform-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}
.platform-btn span {
    overflow: hidden;
    text-overflow: ellipsis;
}
.platform-btn:hover {
    transform: translateY(-2px);
    background: #1a1d2a;
    box-shadow: 0 10px 20px -10px rgba(11,13,23,.5);
}
.platform-btn.disabled {
    background: var(--bg-soft);
    color: var(--ink-3);
    border-color: var(--border-strong);
    cursor: not-allowed;
    pointer-events: none;
}

/* ============================================
   FEEL SECTION
   ============================================ */
.feel-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.feel-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 26px;
    text-align: left;
    transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s ease, border-color .4s ease;
    position: relative;
    overflow: hidden;
}
.feel-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grad-soft);
    opacity: 0;
    transition: opacity .4s ease;
    z-index: 0;
}
.feel-card > * { position: relative; z-index: 1; }
.feel-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.feel-card:hover::after { opacity: .5; }

.feel-icon {
    width: 56px; height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--grad-brand);
    color: #fff;
    border-radius: 16px;
    margin-bottom: 22px;
    box-shadow: 0 12px 24px -8px rgba(230,57,70,.4);
}
.feel-icon svg { width: 26px; height: 26px; }

.feel-card h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 8px;
}
.feel-card p {
    font-size: 14px;
    color: var(--ink-3);
    line-height: 1.55;
}

/* ============================================
   FEATURED GAME
   ============================================ */
.featured { position: relative; }
.featured::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: calc(100% - 56px);
    max-width: 1180px;
    height: 86%;
    background: linear-gradient(135deg, rgba(230,57,70,.06), rgba(37,99,235,.08));
    border-radius: var(--radius-2xl);
    border: 1px solid var(--border);
    z-index: -1;
}
.featured-inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
    padding: 45px 0;
}

.featured-visual {
    position: relative;
    height: 540px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.featured-shot {
    width: min(100%, 330px);
    margin: 0;
    padding: 12px;
    border-radius: 42px;
    background: linear-gradient(160deg, #1a1d2a, #0b0d17);
    border: 1px solid rgba(255,255,255,.18);
    box-shadow:
        0 60px 120px -30px rgba(230,57,70,.42),
        0 30px 60px -20px rgba(11,13,23,.42);
    position: relative;
    z-index: 2;
    transform: rotate(-3deg);
}
.featured-shot img {
    width: 100%;
    display: block;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 30px;
}
.featured-shot-link {
    display: block;
    color: inherit;
}
.featured-glow {
    position: absolute;
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(230,57,70,.4), transparent 60%);
    filter: blur(60px);
    z-index: 0;
}
.featured-shape {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed var(--border-strong);
}
.featured-shape.sh1 {
    width: 420px; height: 420px;
    animation: spin 30s linear infinite;
}
.featured-shape.sh2 {
    width: 320px; height: 320px;
    border-style: solid;
    border-color: var(--border);
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

.featured-phone {
    width: 280px;
    height: 560px;
    background: linear-gradient(160deg, #1a1d2a, #0b0d17);
    border-radius: 48px;
    padding: 14px;
    position: relative;
    z-index: 2;
    box-shadow:
        0 60px 120px -30px rgba(230,57,70,.42),
        0 30px 60px -20px rgba(11,13,23,.42),
        inset 0 0 0 2px rgba(255,255,255,.08);
    transform: rotate(-3deg);
}
.featured-phone::before {
    content: '';
    position: absolute;
    top: 26px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 24px;
    background: #0b0d17;
    border-radius: 999px;
    z-index: 5;
}

.screen-featured {
    background: linear-gradient(180deg, #0b0d17 0%, #1a1d2a 100%);
    border-radius: 36px;
    width: 100%; height: 100%;
    padding: 60px 22px 22px;
    display: flex;
    flex-direction: column;
}
.ft-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
}
.ft-title {
    font-family: 'Space Grotesk', sans-serif;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .12em;
}
.ft-coins {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #FFB400;
    font-weight: 700;
    font-size: 13px;
}
.ft-coins svg { width: 14px; height: 14px; }

.ft-board {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    margin-bottom: 18px;
}
.b {
    border-radius: 8px;
    box-shadow: inset 0 -2px 0 rgba(0,0,0,.2), 0 2px 6px rgba(0,0,0,.3);
}
.b1 { background: linear-gradient(135deg, #E63946, #C81E2C); }
.b2 { background: linear-gradient(135deg, #2563EB, #1D4ED8); }
.b3 { background: linear-gradient(135deg, #8B5CF6, #6366F1); }

.ft-cta {
    background: linear-gradient(135deg, #E63946, #C81E2C);
    color: #fff;
    border-radius: 14px;
    padding: 14px;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: .1em;
    box-shadow: 0 8px 16px rgba(230,57,70,.4);
}

.feature-list {
    list-style: none;
    margin: 24px 0 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--ink-2);
    font-weight: 500;
}
.check {
    width: 24px; height: 24px;
    background: var(--grad-brand);
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    flex-shrink: 0;
}

.featured-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* === Store badges (premium) === */
.store-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 22px 12px 18px;
    background: #0b0d17;
    color: #fff;
    border-radius: 14px;
    border: 1px solid #1a1d2a;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.store-badge svg {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
}
.store-badge div {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.store-badge small {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .08em;
    opacity: .7;
    margin-bottom: 2px;
}
.store-badge strong {
    font-size: 16px;
    font-weight: 700;
}
.store-badge:hover {
    transform: translateY(-2px);
    background: #1a1d2a;
    box-shadow: 0 16px 32px -12px rgba(11,13,23,.5);
}
.store-badge-more-games {
    background: #fff;
    color: var(--ink);
    border: 1px solid var(--border-strong);
}
.store-badge-more-games div {
    min-width: 0;
}
.store-badge-more-games strong {
    font-size: 15px;
    white-space: nowrap;
}
.store-badge-more-games:hover {
    background: var(--bg-soft);
    box-shadow: 0 16px 32px -16px rgba(11,13,23,.18);
}

/* ============================================
   WHY OUR GAMES - uniform creative grid
   ============================================ */
.why { position: relative; }
.why::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: calc(100% - 56px);
    max-width: 1180px;
    height: 100%;
    background: linear-gradient(180deg, rgba(255,255,255,.5), rgba(255,255,255,0));
    border-radius: var(--radius-2xl);
    z-index: -1;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.why-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 30px 36px;
    position: relative;
    overflow: hidden;
    transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s ease, border-color .4s ease;
    display: flex;
    flex-direction: column;
    min-height: 240px;
}
.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(37,99,235,.25);
}
.why-card:hover .why-bar { transform: scaleX(1); }
.why-card:hover .why-icon {
    background: var(--grad-brand);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 12px 24px -8px rgba(230,57,70,.4);
}
.why-card:hover .why-num { color: var(--red); }

.why-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.why-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--ink-4);
    letter-spacing: .08em;
    transition: color .3s ease;
}

.why-icon {
    width: 52px; height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    color: var(--red);
    border-radius: 14px;
    transition: all .35s ease;
}
.why-icon svg { width: 24px; height: 24px; }

.why-card h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.25;
}
.why-card p {
    font-size: 14.5px;
    color: var(--ink-3);
    line-height: 1.6;
}
.why-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--grad-brand);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .5s cubic-bezier(.2,.8,.2,1);
}

/* ============================================
   CONTACT
   ============================================ */
.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-list {
    list-style: none;
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.contact-list li {
    display: flex;
    align-items: center;
    gap: 16px;
}
.ci {
    width: 48px; height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    color: var(--red);
    flex-shrink: 0;
}
.ci svg { width: 20px; height: 20px; }
.contact-list strong { display: block; font-size: 15px; color: var(--ink); }
.contact-list span { font-size: 13px; color: var(--ink-4); }

.contact-form {
    background: var(--surface);
    padding: 36px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    position: relative;
}
.field { margin-bottom: 20px; }
.field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-2);
    margin-bottom: 8px;
}
.field input,
.field textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-soft);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    font-family: inherit;
    font-size: 14.5px;
    color: var(--ink);
    transition: all .25s ease;
    resize: none;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--ink-4); }
.field input:focus,
.field textarea:focus {
    outline: none;
    background: #fff;
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(37,99,235,.12);
}

/* ============================================
   SEO BLOCK
   ============================================ */
.seo { padding: 18px 0 30px; }
.seo .seo-content {
    max-width: 820px;
    margin: 0 auto;
    color: var(--ink-3);
    font-size: 14px;
    line-height: 1.72;
}
.seo .seo-content > * {
    margin: 0 0 14px;
}
.seo .seo-content > *:last-child {
    margin-bottom: 0;
}
.seo .seo-content p {
    font-size: 14px;
    line-height: 1.72;
    color: var(--ink-3);
}
.seo .seo-content h1,
.seo .seo-content h2,
.seo .seo-content h3,
.seo .seo-content h4,
.seo .seo-content h5,
.seo .seo-content h6 {
    color: var(--ink);
    line-height: 1.3;
    margin: 22px 0 10px;
}
.seo .seo-content h1 { font-size: clamp(26px, 4vw, 34px); }
.seo .seo-content h2 { font-size: clamp(22px, 3.2vw, 28px); }
.seo .seo-content h3 { font-size: clamp(19px, 2.5vw, 24px); }
.seo .seo-content h4 { font-size: 18px; }
.seo .seo-content h5 { font-size: 16px; }
.seo .seo-content h6 { font-size: 14px; letter-spacing: .01em; }
.seo .seo-content ul,
.seo .seo-content ol {
    margin: 0 0 14px 22px;
    padding: 0;
}
.seo .seo-content li {
    margin-bottom: 7px;
}
.seo .seo-content blockquote {
    margin: 18px 0;
    padding: 12px 16px;
    border-left: 3px solid var(--red);
    background: rgba(255,255,255,.5);
    border-radius: 10px;
    color: var(--ink-2);
}
.seo .seo-content img,
.seo .seo-content .wp-block-image img {
    height: auto;
    max-width: 100%;
    border-radius: 12px;
}
.seo .seo-content .wp-block-image,
.seo .seo-content .wp-block-gallery {
    margin: 18px 0;
}
.seo .seo-content a {
    color: var(--blue);
    border-bottom: 1px dashed var(--border-strong);
}
.seo .seo-content a:hover { color: var(--red); }

/* ============================================
   STATIC PAGES
   ============================================ */
.page-main {
    padding: 64px 0 84px;
}
.page-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 46px 42px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    background: rgba(255,255,255,.86);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: var(--shadow-md);
}
.page-card .section-title {
    margin-bottom: 16px;
}
.page-card p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--ink-2);
    margin-bottom: 14px;
}
.page-card p:last-child {
    margin-bottom: 0;
}
.page-content h2,
.page-content h3,
.page-content h4 {
    margin: 22px 0 12px;
    color: var(--ink);
}
.page-content ul,
.page-content ol {
    margin: 0 0 14px 22px;
    color: var(--ink-2);
}
.page-content li {
    margin-bottom: 8px;
}
.page-content a {
    color: var(--blue);
    border-bottom: 1px dashed var(--border-strong);
}
.page-content a:hover {
    color: var(--red);
}
.page-content .wp-block-image,
.page-content .wp-block-gallery {
    margin: 18px 0;
}

.not-found-main {
    padding: 76px 0 98px;
}
.not-found-card {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    padding: 56px 42px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: var(--shadow-lg);
}
.nf-code {
    display: inline-block;
    margin-bottom: 14px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(64px, 10vw, 110px);
    line-height: 0.95;
    font-weight: 700;
    letter-spacing: -0.03em;
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.not-found-card .section-title {
    margin: 0 auto 12px;
}
.not-found-card .section-sub {
    margin-inline: auto;
}
.not-found-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 26px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: linear-gradient(180deg, var(--bg) 0%, #F0F1F7 100%);
    border-top: 1px solid var(--border);
    padding-top: 56px;
    margin-top: 40px;
}
.footer-inner {
    display: grid;
    grid-template-columns: 1.4fr 2fr;
    gap: 60px;
    padding-bottom: 48px;
}
.footer-brand p {
    font-size: 14px;
    color: var(--ink-3);
    line-height: 1.6;
    margin-top: 18px;
    max-width: 320px;
}
.footer-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.footer-cols h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--ink-4);
    margin-bottom: 18px;
}
.footer-cols a {
    display: block;
    font-size: 14.5px;
    color: var(--ink-2);
    margin-bottom: 11px;
    font-weight: 500;
    transition: color .25s ease, transform .25s ease;
}
.footer-cols a:hover { color: var(--red); transform: translateX(3px); }
.footer-follow .follow-link {
    display: flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
}
.footer-follow .follow-link svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 24px 0;
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.footer-bottom span {
    font-size: 13px;
    color: var(--ink-4);
}

/* ============================================
   RESPONSIVE - tablet
   ============================================ */
@media (max-width: 1100px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .hero-content { max-width: 640px; }
    .hero-visual {
        min-height: 480px;
        max-width: 460px;
        margin: 0 auto;
    }
    .games-grid { grid-template-columns: repeat(2, 1fr); }
    .feel-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .featured-inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .featured-visual {
        max-width: 480px;
        margin: 0 auto;
    }
    .featured-shot { width: min(100%, 310px); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-inner { grid-template-columns: 1fr; gap: 40px; }
    .footer-inner { grid-template-columns: 1fr; gap: 40px; }
    .section { padding: 56px 0; }
    .section-head { flex-direction: column; align-items: flex-start; gap: 16px; }
    .section-head.center { align-items: center; }
}

/* ============================================
   RESPONSIVE - mobile
   ============================================ */
@media (max-width: 760px) {
    :root {
        --gutter: 20px;
        --header-h: 64px;
        --radius-lg: 20px;
        --radius-xl: 24px;
        --radius-2xl: 28px;
    }

    body { line-height: 1.5; }

    .nav,
    .desktop-only { display: none !important; }

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

    .header-actions { gap: 8px; }
    .lang-trigger {
        padding: 8px 12px;
        font-size: 12.5px;
    }
    .lang-menu {
        right: -10px;
        min-width: 220px;
    }

    /* Hero */
    .hero {
        padding: 20px 0 38px;
    }
    .hero-content { text-align: left; }
    .eyebrow {
        font-size: 12px;
        padding: 7px 13px;
        margin-bottom: 20px;
    }
    .hero-title {
        font-size: clamp(34px, 9vw, 44px);
        margin-bottom: 18px;
        line-height: 1.05;
    }
    .hero-text {
        font-size: 15.5px;
        margin-bottom: 28px;
    }
    .hero-actions {
        gap: 10px;
        margin-bottom: 36px;
    }
    .hero-actions .btn {
        flex: 1 1 auto;
        min-width: 0;
    }
    .btn-lg {
        padding: 14px 20px;
        font-size: 14.5px;
    }
    .hero-stats {
        width: 100%;
        padding: 16px 20px;
        gap: 14px;
        justify-content: space-between;
    }
    .stat strong { font-size: 19px; }
    .stat span { font-size: 11px; }
    .stat-divider { height: 26px; }

    .hero-visual {
        min-height: 440px;
        max-width: 380px;
    }
    .hero-shot {
        width: min(100%, 320px);
        border-radius: 28px;
        padding: 8px;
    }
    .hero-shot img { border-radius: 20px; }
    .phone {
        width: 220px;
        height: 440px;
        padding: 10px;
    }
    .phone::before { width: 78px; height: 18px; top: 18px; }
    .screen { border-radius: 28px; }
    .phone-back { right: -10px; }
    .phone-front { left: 10px; }
    .floating-tag {
        font-size: 11.5px;
        padding: 8px 13px;
    }
    .tag-1 { left: -10px; top: 30px; }
    .tag-2 { right: -8px; bottom: 50px; }

    /* Home-only mobile adjustments */
    body.home {
        overflow-x: hidden;
    }
    body.home .site {
        overflow-x: hidden;
    }

    body.home .hero {
        padding: 14px 0 20px;
    }
    body.home .hero-inner {
        grid-template-columns: 1fr;
        gap: 0;
    }
    body.home .hero-visual {
        display: none !important;
    }

    body.home .section {
        padding: 34px 0;
    }
    body.home #games {
        padding-bottom: 24px;
    }
    body.home #about {
        padding-top: 20px;
        padding-bottom: 14px;
    }
    body.home #about + #featured {
        padding-top: 12px;
    }
    body.home .hero + .section {
        padding-top: 14px;
    }
    body.home .hero + #games {
        padding-top: 8px;
    }
    body.home .section-head {
        margin-bottom: 20px;
    }

    body.home .hero,
    body.home .featured,
    body.home .why,
    body.home .contact,
    body.home .seo,
    body.home .featured-visual {
        overflow-x: clip;
    }

    body.home .featured-content {
        min-width: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding-left: 35px;
        padding-right: 35px;
    }
    body.home .featured-content .section-title,
    body.home .featured-content .section-sub,
    body.home .featured-content .section-sub p {
        max-width: 100%;
        overflow-wrap: anywhere;
        word-break: break-word;
    }
    body.home .featured-content .section-sub {
        font-size: 14px;
        line-height: 1.6;
    }
    body.home .featured-content .section-sub p {
        margin: 0;
        font-size: inherit;
        line-height: inherit;
    }
    body.home .featured-content .section-sub p + p {
        margin-top: 10px;
    }
    body.home .featured-shape.sh1,
    body.home .featured-shape.sh2 {
        display: none;
    }

    /* Sections */
    .section { padding: 38px 0; }
    .section-head { margin-bottom: 24px; gap: 12px; }
    .section-title {
        font-size: clamp(28px, 7.6vw, 36px);
        line-height: 1.12;
    }
    .section-sub { font-size: 15px; }
    .kicker {
        font-size: 11px;
        padding: 6px 12px;
        margin-bottom: 14px;
    }

    /* Games */
    .games-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .game-card { border-radius: 20px; }
    .game-thumb { aspect-ratio: 1 / 1; height: auto; }
    .game-body { padding: 22px; }
    .game-card h3 { font-size: 20px; }
    .game-card p { font-size: 14px; margin-bottom: 18px; }
    .game-meta { margin-bottom: 14px; }
    .platforms { gap: 8px; }
    .platform-btn {
        padding: 12px 16px;
        font-size: 13px;
        flex: 1 1 auto;
    }
    .game-label {
        font-size: 11px;
        padding: 6px 11px;
    }
    .game-label-stack {
        top: 12px;
        left: 12px;
        max-width: calc(100% - 24px);
    }

    /* Feel */
    .feel-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .feel-card {
        padding: 26px 22px;
    }
    .feel-icon {
        width: 50px; height: 50px;
        margin-bottom: 18px;
    }
    .feel-icon svg { width: 24px; height: 24px; }
    .feel-card h3 { font-size: 18px; }

    /* Featured */
    .featured::before {
        width: calc(100% - 28px);
        border-radius: 28px;
    }
    .featured-inner {
        gap: 24px;
        padding: 70px 0 90px;
    }
    .featured-visual {
        height: 460px;
        max-width: 100%;
    }
    .featured-shot {
        width: min(100%, 270px);
        border-radius: 34px;
        padding: 10px;
    }
    .featured-shot img { border-radius: 24px; }
    .featured-shape.sh1 { width: 320px; height: 320px; }
    .featured-shape.sh2 { width: 240px; height: 240px; }
    .featured-phone {
        width: 240px;
        height: 480px;
    }
    .feature-list { margin: 20px 0 28px; gap: 10px; }
    .feature-list li { font-size: 14.5px; }
    .featured-actions { gap: 10px; }
    .store-badge {
        padding: 11px 18px 11px 16px;
        flex: 1 1 calc(50% - 5px);
        min-width: 0;
        justify-content: center;
    }
    .store-badge svg { width: 22px; height: 22px; }
    .store-badge small { font-size: 9px; }
    .store-badge strong { font-size: 14px; }

    /* Why */
    .why-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .why-card {
        padding: 26px 24px 30px;
        min-height: auto;
    }
    .why-top { margin-bottom: 18px; }
    .why-icon { width: 48px; height: 48px; }
    .why-icon svg { width: 22px; height: 22px; }

    /* Contact */
    .contact-form { padding: 26px 22px; }
    .field input,
    .field textarea {
        padding: 13px 16px;
        font-size: 15px;
    }
    .contact-list { margin-top: 28px; }

    /* Static pages */
    .page-main { padding: 48px 0 62px; }
    .page-card {
        padding: 32px 24px;
        border-radius: 24px;
    }
    .page-card p { font-size: 15px; }
    .not-found-main { padding: 56px 0 74px; }
    .not-found-card {
        padding: 42px 24px;
        border-radius: 24px;
    }
    .not-found-actions { margin-top: 22px; }

    /* Footer */
    .footer { padding-top: 42px; }
    .footer-cols {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 14px;
    }

    /* SEO */
    .seo .seo-content {
        font-size: 13px;
    }
    .seo .seo-content p {
        font-size: 13px;
    }
    .seo .seo-content h1 { font-size: 26px; }
    .seo .seo-content h2 { font-size: 22px; }
    .seo .seo-content h3 { font-size: 19px; }
}

@media (max-width: 420px) {
    .hero-actions .btn { width: 100%; }
    .hero-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .stat-divider { display: none; }
    .stat { display: flex; align-items: center; justify-content: space-between; width: 100%; }
    .stat strong { font-size: 18px; }
    .featured-actions { flex-direction: column; }
    .store-badge { flex: 1 1 100%; }
    .not-found-actions .btn { width: 100%; }
    .footer-cols { grid-template-columns: 1fr; }
}

/* ============================================================
   ====================  SINGLE GAME PAGE  ====================
   ============================================================ */

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 28px 0 0;
    font-size: 13.5px;
    color: var(--ink-4);
    flex-wrap: wrap;
}
.breadcrumb a {
    color: var(--ink-3);
    transition: color .25s ease;
}
.breadcrumb a:hover { color: var(--red); }
.bc-sep { color: var(--ink-4); opacity: .5; }
.bc-current {
    color: var(--ink);
    font-weight: 600;
}

/* === Game Hero === */
.game-hero {
    padding: 34px 0 68px;
    position: relative;
}
.game-hero-inner {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 64px;
    align-items: center;
}

/* Cover */
.game-cover {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.cover-frame {
    position: relative;
    z-index: 2;
    margin: 0;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 1 / 1;
    border-radius: 36px;
    padding: 14px;
    background: linear-gradient(135deg, rgba(255,255,255,.9), rgba(255,255,255,.55));
    border: 1px solid rgba(255,255,255,.6);
    box-shadow:
        0 50px 100px -30px rgba(230,57,70,.35),
        0 24px 48px -16px rgba(11,13,23,.18);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transform: rotate(-2deg);
    transition: transform .5s cubic-bezier(.2,.8,.2,1);
    overflow: hidden;
}
.cover-frame:hover { transform: rotate(0deg) scale(1.02); }
.cover-image {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 26px;
    object-fit: contain;
    object-position: center;
    background: #fff;
}

/* Info */
.game-info { min-width: 0; }

.game-labels {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}
.game-label.inline {
    position: static;
    box-shadow: var(--shadow-sm);
}

.game-title {
    font-size: clamp(38px, 5.4vw, 60px);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -0.025em;
    margin-bottom: 18px;
}

.game-tagline {
    font-size: 18px;
    color: var(--ink-3);
    line-height: 1.55;
    max-width: 560px;
    margin-bottom: 32px;
}

.game-stats {
    display: inline-flex;
    align-items: center;
    gap: 22px;
    padding: 18px 24px;
    background: rgba(255,255,255,.78);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    margin-bottom: 28px;
    flex-wrap: wrap;
    max-width: 100%;
}
.gs-item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}
.gs-icon {
    width: 36px; height: 36px;
    background: var(--bg-soft);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    flex-shrink: 0;
}
.gs-icon svg { width: 18px; height: 18px; }
.gs-item strong {
    display: block;
    font-size: 17px;
    font-weight: 800;
    color: var(--ink);
    line-height: 1.1;
}
.gs-item span {
    font-size: 12px;
    color: var(--ink-4);
    font-weight: 500;
}
.gs-divider {
    width: 1px;
    height: 36px;
    background: var(--border-strong);
    flex-shrink: 0;
}

.game-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.game-tags .tag {
    padding: 7px 14px;
    font-size: 12.5px;
    background: #fff;
    border: 1px solid var(--border-strong);
}

.game-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* === Game Description === */
.game-description { padding: 52px 0 30px; }
.desc-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: start;
}
.desc-grid.desc-grid-full {
    grid-template-columns: 1fr;
}
.desc-main { min-width: 0; }
.desc-prose {
    margin-top: 28px;
    max-width: none;
}
.desc-prose p {
    font-size: 16.5px;
    line-height: 1.75;
    color: var(--ink-2);
    margin-bottom: 18px;
}
.desc-prose ul,
.desc-prose ol {
    margin: 0 0 18px;
    padding-left: 1.45em;
}
.desc-prose li {
    color: var(--ink-2);
    line-height: 1.75;
    margin-bottom: 8px;
}
.desc-prose li:last-child {
    margin-bottom: 0;
}

/* === Screenshots Slider === */
.screenshots { padding: 0 0 80px; }
.screenshots-slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
}
.screenshots-slider::before {
    content: '';
    position: absolute;
    inset: -12px -14px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(230,57,70,.08), rgba(37,99,235,.08));
    z-index: -1;
}

.ss-nav {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    border: 1px solid var(--border-strong);
    background: rgba(255,255,255,.92);
    box-shadow: var(--shadow-sm);
    color: var(--ink-2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, color .25s ease;
}
.ss-nav svg {
    width: 20px;
    height: 20px;
}
.ss-nav:hover {
    transform: translateY(-2px);
    border-color: rgba(37,99,235,.45);
    color: var(--blue-deep);
    box-shadow: 0 12px 24px -14px rgba(37,99,235,.55);
}
.ss-nav:focus-visible {
    outline: 2px solid rgba(37,99,235,.45);
    outline-offset: 2px;
}

.ss-viewport {
    --ss-slide-width: clamp(230px, 27vw, 300px);
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: var(--ss-slide-width);
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    width: 100%;
    padding: 8px 2px 14px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.ss-viewport::-webkit-scrollbar { display: none; }

.ss-slide {
    margin: 0;
    scroll-snap-align: start;
    border-radius: 28px;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}
.ss-lightbox-trigger {
    width: 100%;
    display: block;
    padding: 0;
    border: 0;
    background: transparent;
    border-radius: 20px;
    cursor: zoom-in;
}
.ss-lightbox-trigger:focus-visible {
    outline: 2px solid rgba(37,99,235,.55);
    outline-offset: 3px;
}
.ss-slide img {
    width: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
}
.ss-slide.is-landscape img { aspect-ratio: 16 / 9; }
.ss-slide.is-portrait img {
    aspect-ratio: 9 / 16;
    object-position: center top;
}
.ss-slide.is-square img { aspect-ratio: 1 / 1; }

.ss-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 26px;
    background: rgba(8, 12, 22, .82);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    pointer-events: auto;
}
.ss-lightbox[hidden] {
    display: none;
}
.ss-lightbox-image {
    max-width: min(1200px, 92vw);
    max-height: 88vh;
    width: auto;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 34px 80px -34px rgba(0, 0, 0, .75);
    background: #fff;
}
.ss-lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.55);
    background: rgba(255,255,255,.14);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.ss-lightbox-close svg {
    width: 20px;
    height: 20px;
}
.ss-lightbox-close:hover {
    transform: scale(1.06);
    border-color: #fff;
    background: rgba(255,255,255,.24);
}
.ss-lightbox-close:focus-visible {
    outline: 2px solid rgba(255,255,255,.75);
    outline-offset: 2px;
}
body.ss-lightbox-open {
    overflow: hidden;
    touch-action: none;
}
/* === Single Game responsive === */
@media (max-width: 1100px) {
    .game-hero { padding: 26px 0 52px; }
    .game-hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .game-cover { order: -1; }
    .cover-frame { max-width: 360px; margin: 0 auto; }
    .game-info { text-align: left; }
    .game-stats { width: 100%; justify-content: space-between; }
    .desc-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .ss-viewport {
        --ss-slide-width: clamp(230px, 36vw, 300px);
    }
}

@media (max-width: 760px) {
    .breadcrumb {
        padding: 22px 0 0;
        font-size: 12.5px;
    }
    .game-hero { padding: 20px 0 44px; }
    .game-hero-inner { gap: 36px; }
    .cover-frame {
        max-width: 300px;
        padding: 12px;
        border-radius: 30px;
        aspect-ratio: auto;
    }
    .cover-image {
        border-radius: 22px;
        height: auto;
        max-height: min(72vh, 560px);
    }

    .game-title {
        font-size: clamp(34px, 9vw, 44px);
        margin-bottom: 16px;
    }
    .game-tagline {
        font-size: 16px;
        margin-bottom: 26px;
    }
    .game-stats {
        padding: 16px 18px;
        gap: 14px;
    }
    .gs-item strong { font-size: 16px; }
    .gs-divider { display: none; }
    .gs-item { flex: 1 1 calc(50% - 14px); min-width: 110px; }

    .game-tags { margin-bottom: 26px; }
    .game-cta { gap: 10px; }
    .game-cta .store-badge {
        flex: 1 1 calc(50% - 5px);
        min-width: 0;
        justify-content: center;
        padding: 11px 16px;
    }
    .game-cta .store-badge svg { width: 22px; height: 22px; }
    .game-cta .store-badge small { font-size: 9px; }
    .game-cta .store-badge strong { font-size: 14px; }
    .game-cta .store-badge-more-games strong {
        font-size: 13.5px;
        white-space: normal;
    }

    .game-description { padding: 34px 0 22px; }
    .desc-prose { margin-top: 22px; }
    .desc-prose p { font-size: 15.5px; line-height: 1.7; }

    .screenshots { padding: 0 0 62px; }
    .screenshots-slider { gap: 10px; }
    .ss-nav {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }
    .ss-nav svg {
        width: 18px;
        height: 18px;
    }
    .ss-viewport {
        --ss-slide-width: min(72vw, 270px);
        gap: 12px;
        padding-bottom: 10px;
    }
    .ss-slide {
        border-radius: 24px;
        padding: 8px;
    }
    .ss-slide img { border-radius: 17px; }
    .ss-lightbox { padding: 18px; }
    .ss-lightbox-close {
        top: 14px;
        right: 14px;
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 420px) {
    .game-cta .store-badge { flex: 1 1 100%; }
    .gs-item { flex: 1 1 100%; }
    .screenshots-slider { gap: 0; }
    .ss-nav { display: none; }
    .ss-viewport {
        --ss-slide-width: min(84vw, 290px);
    }
}


/* ============================================
   RANK MATH BREADCRUMBS
   ============================================ */
.rank-math-breadcrumb {
    padding: 28px 0 0;
}
.rank-math-breadcrumb p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: var(--ink-4);
    flex-wrap: wrap;
}
.rank-math-breadcrumb a {
    color: var(--ink-3);
    transition: color .25s ease;
}
.rank-math-breadcrumb a:hover {
    color: var(--red);
}
.rank-math-breadcrumb .separator {
    color: var(--ink-4);
    opacity: .5;
}
.rank-math-breadcrumb .last {
    color: var(--ink);
    font-weight: 600;
}

/* ============================================
   CONTACT FORM 7 ALIGNMENT
   ============================================ */
.contact-form .wpcf7 form {
    display: block;
}
.contact-form .wpcf7 p {
    margin-bottom: 20px;
}
.contact-form .wpcf7 p:last-of-type {
    margin-bottom: 0;
}
.contact-form .wpcf7 label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-2);
}
.contact-form .wpcf7 input:not([type="submit"]),
.contact-form .wpcf7 textarea,
.contact-form .wpcf7 select {
    width: 100%;
    border: 1.5px solid var(--border);
    border-radius: 14px;
    background: var(--bg-soft);
    padding: 14px 18px;
    font-size: 14.5px;
    font-family: inherit;
    color: var(--ink);
    transition: all .25s ease;
    resize: none;
}
.contact-form .wpcf7 input:not([type="submit"])::placeholder,
.contact-form .wpcf7 textarea::placeholder {
    color: var(--ink-4);
}
.contact-form .wpcf7 input:not([type="submit"]):focus,
.contact-form .wpcf7 textarea:focus,
.contact-form .wpcf7 select:focus {
    outline: none;
    background: #fff;
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(37,99,235,.12);
}
.contact-form .wpcf7 .wpcf7-submit {
    width: 100%;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 15px 26px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
    background: linear-gradient(135deg, #E63946, #C81E2C);
    color: #fff;
    box-shadow: var(--shadow-red);
    cursor: pointer;
    transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease;
}
.contact-form .wpcf7 .wpcf7-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 44px -14px rgba(230,57,70,.55);
}
.contact-form .wpcf7 .wpcf7-submit:disabled {
    cursor: not-allowed;
    opacity: .75;
}
.contact-form .wpcf7 .wpcf7-spinner {
    margin: 10px 0 0;
}
.contact-form .wpcf7 form .wpcf7-response-output {
    margin: 16px 0 0;
    border-radius: 12px;
    border-color: var(--border-strong);
    color: var(--ink-2);
    font-size: 13px;
}
.contact-form .wpcf7 .wpcf7-not-valid-tip,
.contact-form .wpcf7 form.invalid .wpcf7-response-output,
.contact-form .wpcf7 form.unaccepted .wpcf7-response-output,
.contact-form .wpcf7 form.spam .wpcf7-response-output,
.contact-form .wpcf7 form.aborted .wpcf7-response-output,
.contact-form .wpcf7 form.failed .wpcf7-response-output {
    display: none;
}
.contact-form .wpcf7 input.wpcf7-not-valid:not([type="submit"]),
.contact-form .wpcf7 textarea.wpcf7-not-valid,
.contact-form .wpcf7 select.wpcf7-not-valid {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(230,57,70,.10);
}
