/* ==========================================================================
   Coralvista Sky — Site Stylesheet
   Theme: coral reef + sea vista + sky horizon. Class prefix: pof-
   Palette: coral (#7b2cbf, #b69aff), teal (#2c6dd8, #3a86ff), cream (#e8f0fb)
   ========================================================================== */

:root {
    --pof-coral-1: #7b2cbf;
    --pof-coral-2: #b69aff;
    --pof-coral-3: #5a1ea0;
    --pof-teal-1: #2c6dd8;
    --pof-teal-2: #3a86ff;
    --pof-teal-3: #2056B0;
    --pof-cream: #e8f0fb;
    --pof-cream-2: #dfe8f6;
    --pof-ink: #1a1a2e;
    --pof-ink-soft: #3d3d52;
    --pof-mute: #6b6b80;
    --pof-line: #dcd8e8;
    --pof-bg: #fafbff;
    --pof-card: #ffffff;
    --pof-shadow: 0 12px 40px rgba(44,109,216, 0.12);
    --pof-shadow-soft: 0 4px 14px rgba(44,109,216, 0.08);
    --pof-radius: 22px;
    --pof-radius-sm: 14px;
    --pof-grad-horizon: linear-gradient(90deg, var(--pof-coral-1) 0%, var(--pof-teal-2) 50%, var(--pof-cream-2) 100%);
    --pof-grad-coral: linear-gradient(135deg, var(--pof-coral-1), var(--pof-coral-2));
    --pof-grad-teal: linear-gradient(135deg, var(--pof-teal-1), var(--pof-teal-2));
    --pof-font-display: 'Outfit', system-ui, -apple-system, sans-serif;
    --pof-font-body: 'Sora', system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--pof-font-body);
    color: var(--pof-ink);
    background: var(--pof-bg);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--pof-font-display);
    font-weight: 800;
    line-height: 1.18;
    color: var(--pof-ink);
    margin: 0 0 16px;
    letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.1rem, 4.4vw, 3.2rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }

p { margin: 0 0 14px; color: var(--pof-ink-soft); }
a { color: var(--pof-teal-3); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--pof-coral-3); }

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

.pof-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 22px;
}

/* ===== Compliance strip ===== */
.pof-compliance-strip {
    background: var(--pof-grad-horizon);
    color: #1a1a2e;
    font-size: .82rem;
    font-weight: 600;
    text-align: center;
    padding: 8px 16px;
    letter-spacing: .01em;
}

/* ===== 18+ Age badge ===== */
.pof-age-badge {
    position: fixed;
    top: 14px;
    right: 14px;
    z-index: 1200;
    width: 46px; height: 46px;
    border-radius: 50%;
    background: var(--pof-coral-3);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--pof-font-display);
    font-weight: 800;
    font-size: .95rem;
    box-shadow: 0 6px 20px rgba(90,30,160, 0.35);
    border: 2px solid #fff;
}

/* ===== Header ===== */
.pof-site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 250, 242, 0.94);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--pof-line);
    transition: box-shadow .25s ease;
}
.pof-site-header.is-stuck { box-shadow: 0 4px 18px rgba(15,163,163,.08); }

.pof-site-header > .pof-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.pof-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}
.pof-logo svg { height: 42px; width: auto; }

.pof-nav__list {
    list-style: none;
    margin: 0; padding: 0;
    display: flex;
    gap: 6px;
    align-items: center;
}
.pof-nav__list a {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    color: var(--pof-ink);
    font-size: .94rem;
    font-weight: 500;
    transition: all .18s ease;
}
.pof-nav__list a:hover, .pof-nav__list a.is-active {
    background: var(--pof-cream-2);
    color: var(--pof-teal-3);
}

.pof-nav__dropdown { position: relative; }
.pof-nav__dropdown-menu {
    list-style: none;
    margin: 0; padding: 8px;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 220px;
    background: #fff;
    border-radius: var(--pof-radius-sm);
    border: 1px solid var(--pof-line);
    box-shadow: var(--pof-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: all .2s ease;
}
.pof-nav__dropdown:hover .pof-nav__dropdown-menu,
.pof-nav__dropdown.is-open .pof-nav__dropdown-menu {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.pof-nav__dropdown-menu li a { display: block; padding: 8px 12px; }
.pof-nav__arrow { font-size: .7em; opacity: .6; }

.pof-hamburger {
    display: none;
    width: 40px; height: 40px;
    background: transparent;
    border: 1px solid var(--pof-line);
    border-radius: 10px;
    cursor: pointer;
    padding: 0;
    position: relative;
}
.pof-hamburger span {
    display: block;
    width: 18px; height: 2px;
    background: var(--pof-ink);
    margin: 4px auto;
    transition: transform .2s, opacity .2s;
}

/* ===== Buttons ===== */
.pof-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    font-family: var(--pof-font-display);
    font-weight: 600;
    font-size: .96rem;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform .16s ease, box-shadow .16s ease, background .18s;
    line-height: 1;
}
.pof-btn--primary {
    background: var(--pof-grad-coral);
    color: #fff;
    box-shadow: 0 6px 18px rgba(255,84,112,.28);
}
.pof-btn--primary:hover { transform: translateY(-2px); color: #fff; }
.pof-btn--secondary {
    background: var(--pof-grad-teal);
    color: #fff;
    box-shadow: 0 6px 18px rgba(15,163,163,.25);
}
.pof-btn--secondary:hover { transform: translateY(-2px); color: #fff; }
.pof-btn--outline {
    background: #fff;
    color: var(--pof-teal-3);
    border: 1.5px solid var(--pof-teal-2);
}
.pof-btn--outline:hover { background: var(--pof-cream-2); color: var(--pof-teal-3); }
.pof-btn--large { padding: 16px 30px; font-size: 1.04rem; }
.pof-btn:disabled { opacity: .55; cursor: not-allowed; transform: none; }

/* ===== Hero ===== */
.pof-hero {
    position: relative;
    overflow: hidden;
    padding: 80px 0 96px;
    background:
        radial-gradient(ellipse at 80% 0%, rgba(255,122,138,.18) 0%, transparent 50%),
        radial-gradient(ellipse at 0% 100%, rgba(30,200,190,.18) 0%, transparent 50%),
        var(--pof-cream);
    isolation: isolate;
}
.pof-hero__bg {
    position: absolute; inset: 0; z-index: -1;
    pointer-events: none;
}
.pof-hero__bg picture, .pof-hero__bg img {
    width: 100%; height: 100%; object-fit: cover; display: block;
}
.pof-hero__bg::after {
    content: ""; position: absolute; inset: 0;
    background:
        linear-gradient(115deg, rgba(255,246,232,.94) 0%, rgba(255,246,232,.62) 38%, rgba(255,246,232,0) 70%),
        linear-gradient(0deg, rgba(255,246,232,.55), rgba(255,246,232,.10));
}
.pof-hero__inner { position: relative; max-width: 880px; }
.pof-hero__chip {
    display: inline-block;
    background: rgba(15,163,163,.1);
    color: var(--pof-teal-3);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 600;
    margin-bottom: 18px;
}
.pof-hero__title {
    font-size: clamp(2.4rem, 5.2vw, 3.6rem);
    margin-bottom: 18px;
}
.pof-hero__title .pof-grad {
    background: var(--pof-grad-coral);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.pof-hero__sub { font-size: 1.12rem; max-width: 640px; margin-bottom: 28px; }
.pof-hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== Sections ===== */
.pof-section { padding: 72px 0; }
.pof-section--alt { background: #fff; border-top: 1px solid var(--pof-line); border-bottom: 1px solid var(--pof-line); }
.pof-section__head { text-align: center; max-width: 720px; margin: 0 auto 44px; }
.pof-section__label {
    display: inline-block;
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--pof-teal-3);
    margin-bottom: 12px;
}

/* Grid systems */
.pof-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.pof-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.pof-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

/* ===== Cards ===== */
.pof-card {
    background: var(--pof-card);
    border: 1px solid var(--pof-line);
    border-radius: var(--pof-radius);
    padding: 28px;
    transition: transform .18s ease, box-shadow .18s ease;
}
.pof-card:hover { transform: translateY(-3px); box-shadow: var(--pof-shadow); }
.pof-card__icon {
    display: inline-flex;
    align-items: center; justify-content: center;
    width: 52px; height: 52px;
    border-radius: 14px;
    background: var(--pof-cream-2);
    font-size: 1.6rem;
    margin-bottom: 14px;
}
.pof-card__title { margin-bottom: 10px; }
.pof-card__text { color: var(--pof-ink-soft); font-size: .96rem; margin: 0; }

/* ===== Game cards (homepage grid) ===== */
.pof-games-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}
.pof-game-card {
    display: block;
    background: var(--pof-card);
    border: 1px solid var(--pof-line);
    border-radius: var(--pof-radius);
    overflow: hidden;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease;
}
.pof-game-card:hover { transform: translateY(-4px); box-shadow: var(--pof-shadow); color: inherit; }
.pof-game-card__cover {
    position: relative;
    height: 180px;
    display: flex; align-items: center; justify-content: center;
    font-size: 3.4rem;
    background: var(--pof-grad-horizon);
    letter-spacing: .25em;
    overflow: hidden;
}
.pof-game-card__cover picture, .pof-game-card__cover img {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; display: block;
}
.pof-game-card__emoji {
    position: relative; z-index: 1;
    background: rgba(255,255,255,.78);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 10px 18px;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(15,163,163,.18);
}
.pof-pexels-credit {
    font-size: .78rem; color: var(--pof-ink-soft); opacity: .8;
    margin-top: 16px;
}
.pof-pexels-credit a { color: var(--pof-teal-3); text-decoration: underline; }
.pof-game-card__body { padding: 24px; }
.pof-game-card__type {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--pof-teal-3);
    margin-bottom: 8px;
}
.pof-game-card__name { margin-bottom: 8px; }
.pof-game-card__desc { font-size: .93rem; color: var(--pof-ink-soft); margin-bottom: 14px; }
.pof-game-card__more {
    color: var(--pof-coral-3); font-weight: 600; font-size: .92rem;
}

/* ===== Steps ===== */
.pof-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    counter-reset: step;
}
.pof-step {
    background: var(--pof-card);
    border: 1px solid var(--pof-line);
    border-radius: var(--pof-radius);
    padding: 32px 26px 26px;
    position: relative;
}
.pof-step::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    top: -22px; left: 24px;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--pof-grad-coral);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--pof-font-display);
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 6px 16px rgba(255,84,112,.3);
}
.pof-step__title { margin: 8px 0 8px; }

/* ===== FAQ ===== */
.pof-faq { max-width: 820px; margin: 0 auto; }
.pof-faq__item {
    background: #fff;
    border: 1px solid var(--pof-line);
    border-radius: var(--pof-radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
}
.pof-faq__q {
    width: 100%;
    background: transparent;
    border: 0;
    text-align: left;
    padding: 18px 20px;
    font-family: var(--pof-font-display);
    font-weight: 600;
    font-size: 1rem;
    color: var(--pof-ink);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.pof-faq__icon { font-size: 1.4rem; color: var(--pof-teal-2); transition: transform .2s; }
.pof-faq__item.is-open .pof-faq__icon { transform: rotate(45deg); }
.pof-faq__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
}
.pof-faq__a-inner { padding: 0 20px 20px; color: var(--pof-ink-soft); }
.pof-faq__item.is-open .pof-faq__a { max-height: 600px; }

/* ===== Reassurance strip ===== */
.pof-reassure {
    background: linear-gradient(135deg, var(--pof-teal-1), var(--pof-teal-2));
    color: #fff;
    text-align: center;
    padding: 28px 20px;
    border-radius: var(--pof-radius);
    margin: 36px auto;
    max-width: 900px;
}
.pof-reassure h3 { color: #fff; margin-bottom: 6px; }
.pof-reassure p { color: rgba(255,255,255,.92); margin: 0; }

/* ===== Helpline banner ===== */
.pof-helpline {
    background: var(--pof-cream-2);
    border-top: 1px solid var(--pof-line);
    padding: 26px 0;
}
.pof-helpline__inner {
    display: flex;
    gap: 18px;
    align-items: center;
    max-width: 980px;
    margin: 0 auto;
}
.pof-helpline__icon {
    flex: 0 0 auto;
    width: 56px; height: 56px;
    background: var(--pof-grad-coral);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.7rem;
    box-shadow: 0 6px 16px rgba(255,84,112,.25);
}
.pof-helpline__title {
    font-family: var(--pof-font-display);
    font-weight: 700;
    color: var(--pof-ink);
    margin: 0 0 4px;
}
.pof-helpline p { margin: 0; font-size: .92rem; }

/* ===== Footer ===== */
.pof-footer {
    background: #0e2126;
    color: #cfdde2;
    padding: 56px 0 24px;
}
.pof-footer h4 {
    color: #fff;
    font-size: .95rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: 16px;
}
.pof-footer a { color: #b9c9cf; }
.pof-footer a:hover { color: var(--pof-coral-2); }
.pof-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1.4fr;
    gap: 36px;
    margin-bottom: 36px;
}
.pof-footer__brand p { color: #95a8af; font-size: .92rem; margin-top: 14px; }
.pof-footer ul { list-style: none; padding: 0; margin: 0; }
.pof-footer li { margin-bottom: 10px; font-size: .92rem; }

.pof-helpcards { display: grid; gap: 12px; }
.pof-helpcard {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 12px;
    padding: 12px 14px;
}
.pof-helpcard strong { color: #fff; display: block; margin-bottom: 4px; font-size: .94rem; }
.pof-helpcard a { display: inline-block; font-size: .88rem; }
.pof-helpcard span { display: block; color: #9caab1; font-size: .82rem; }

.pof-footer__compliance {
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 24px;
}
.pof-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.pof-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    font-size: .78rem;
    font-weight: 600;
    color: #cfdde2;
}
.pof-badge--age { background: rgba(255,84,112,.18); color: #ffb8c2; border-color: rgba(255,84,112,.3); }
.pof-badge--free { background: rgba(30,200,190,.18); color: #8be7df; border-color: rgba(30,200,190,.3); }
.pof-disclaimer {
    color: #95a8af;
    font-size: .82rem;
    line-height: 1.7;
    margin: 0 0 22px;
    max-width: 1080px;
}
.pof-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 18px;
    font-size: .82rem;
    color: #7c8e95;
}

/* ===== Cookie consent ===== */
.pof-cookie {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: #0e2126;
    color: #e3eef1;
    padding: 18px 20px;
    z-index: 1100;
    transform: translateY(110%);
    transition: transform .28s ease;
    border-top: 3px solid var(--pof-teal-2);
}
.pof-cookie.is-visible { transform: translateY(0); }
.pof-cookie__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 22px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}
.pof-cookie p { color: #cfdde2; margin: 0; font-size: .92rem; max-width: 720px; }
.pof-cookie a { color: var(--pof-teal-2); }
.pof-cookie__btns { display: flex; gap: 10px; }

/* ===== Article (legal/longform) ===== */
.pof-article {
    max-width: 820px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--pof-line);
    border-radius: var(--pof-radius);
    padding: 48px 44px;
}
.pof-article h1 { margin-bottom: 8px; }
.pof-article__meta { color: var(--pof-mute); font-size: .9rem; margin-bottom: 26px; }
.pof-article h2 { margin-top: 32px; font-size: 1.5rem; }
.pof-article h3 { margin-top: 22px; font-size: 1.15rem; }
.pof-article ul, .pof-article ol { color: var(--pof-ink-soft); padding-left: 22px; }
.pof-article li { margin-bottom: 6px; }

/* ===== Form ===== */
.pof-form {
    max-width: 620px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--pof-line);
    border-radius: var(--pof-radius);
    padding: 36px;
}
.pof-field { margin-bottom: 18px; }
.pof-field label {
    display: block;
    font-family: var(--pof-font-display);
    font-weight: 600;
    font-size: .9rem;
    margin-bottom: 6px;
    color: var(--pof-ink);
}
.pof-field input, .pof-field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--pof-line);
    border-radius: 12px;
    background: var(--pof-bg);
    font-family: var(--pof-font-body);
    font-size: 1rem;
    color: var(--pof-ink);
}
.pof-field input:focus, .pof-field textarea:focus {
    outline: none;
    border-color: var(--pof-teal-2);
    background: #fff;
}
.pof-field textarea { resize: vertical; min-height: 130px; }

/* ===== Game page common ===== */
.pof-game-page { padding: 56px 0 80px; }
.pof-game-head { text-align: center; margin-bottom: 36px; max-width: 760px; margin-left: auto; margin-right: auto; }
.pof-game-head h1 .pof-grad {
    background: var(--pof-grad-coral);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.pof-game-shell {
    background: #fff;
    border: 1px solid var(--pof-line);
    border-radius: var(--pof-radius);
    box-shadow: var(--pof-shadow);
    padding: 32px;
    max-width: 720px;
    margin: 0 auto 36px;
}

.pof-hud {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 22px;
}
.pof-hud__cell {
    background: var(--pof-cream-2);
    border-radius: 14px;
    padding: 14px;
    text-align: center;
}
.pof-hud__label {
    font-size: .76rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--pof-mute);
    margin-bottom: 4px;
}
.pof-hud__value {
    font-family: var(--pof-font-display);
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--pof-ink);
}

.pof-game-area {
    background: linear-gradient(160deg, #fff7ec 0%, #e6f7f5 100%);
    border-radius: var(--pof-radius-sm);
    padding: 30px;
    margin-bottom: 22px;
    text-align: center;
}

.pof-game-msg {
    margin-top: 20px;
    font-family: var(--pof-font-display);
    font-weight: 600;
    color: var(--pof-ink);
    min-height: 28px;
}

.pof-game-controls {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* === Slot machine === */
.pof-slot {
    display: flex;
    gap: 14px;
    justify-content: center;
}
.pof-reel {
    width: 92px; height: 110px;
    background: #fff;
    border: 2px solid var(--pof-coral-2);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 3.2rem;
    box-shadow: inset 0 4px 10px rgba(15,163,163,.05);
}
.pof-reel.is-spin { animation: cvsBlur .12s linear infinite; }
@keyframes cvsBlur { 0%,100% { transform: translateY(-2px); } 50% { transform: translateY(2px); } }

/* === Wheel === */
.pof-wheel-wrap {
    position: relative;
    width: 320px; height: 320px;
    margin: 0 auto;
}
.pof-wheel {
    width: 100%; height: 100%;
    border-radius: 50%;
    box-shadow: 0 12px 30px rgba(15,163,163,.18);
    transition: transform 4s cubic-bezier(.17,.67,.21,.98);
}
.pof-wheel-pointer {
    position: absolute;
    top: -8px; left: 50%;
    transform: translateX(-50%);
    width: 0; height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 22px solid var(--pof-coral-3);
    filter: drop-shadow(0 3px 4px rgba(0,0,0,.2));
    z-index: 2;
}
.pof-wheel-hub {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 50px; height: 50px;
    border-radius: 50%;
    background: var(--pof-grad-coral);
    box-shadow: 0 4px 12px rgba(0,0,0,.18);
    z-index: 1;
}

/* === Scratch grid === */
.pof-scratch {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    max-width: 320px;
    margin: 0 auto;
}
.pof-scratch__cell {
    aspect-ratio: 1;
    background: var(--pof-grad-horizon);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 2.2rem;
    cursor: pointer;
    color: transparent;
    user-select: none;
    transition: background .25s ease;
    box-shadow: inset 0 2px 4px rgba(0,0,0,.08);
}
.pof-scratch__cell:hover { filter: brightness(1.05); }
.pof-scratch__cell.is-revealed {
    background: #fff;
    color: var(--pof-ink);
    cursor: default;
    border: 2px solid var(--pof-teal-2);
}

/* === Bingo card === */
.pof-bingo {
    max-width: 360px;
    margin: 0 auto;
}
.pof-bingo__head {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
    margin-bottom: 8px;
}
.pof-bingo__head span {
    text-align: center;
    background: var(--pof-grad-coral);
    color: #fff;
    font-family: var(--pof-font-display);
    font-weight: 800;
    padding: 10px 0;
    border-radius: 10px;
    font-size: 1.2rem;
}
.pof-bingo__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
}
.pof-bingo__cell {
    aspect-ratio: 1;
    background: #fff;
    border: 2px solid var(--pof-line);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--pof-font-display);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--pof-ink);
}
.pof-bingo__cell.is-marked {
    background: var(--pof-grad-teal);
    color: #fff;
    border-color: var(--pof-teal-1);
}
.pof-bingo__cell.is-free {
    background: var(--pof-coral-2);
    color: #fff;
    border-color: var(--pof-coral-1);
}
.pof-bingo__called {
    margin-top: 18px;
    font-size: .92rem;
    color: var(--pof-ink-soft);
    min-height: 24px;
}

/* === Game info === */
.pof-game-info {
    max-width: 820px;
    margin: 0 auto;
    display: grid;
    gap: 18px;
}
.pof-game-info__block {
    background: #fff;
    border: 1px solid var(--pof-line);
    border-radius: var(--pof-radius-sm);
    padding: 24px 26px;
}
.pof-game-info__block h3 { margin-bottom: 10px; }
.pof-game-info__block ul, .pof-game-info__block ol { padding-left: 22px; color: var(--pof-ink-soft); }
.pof-game-info__block li { margin-bottom: 6px; }

/* ===== Mobile ===== */
@media (max-width: 900px) {
    .pof-grid-3, .pof-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .pof-games-grid { grid-template-columns: 1fr; }
    .pof-steps { grid-template-columns: 1fr; }
    .pof-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .pof-hamburger { display: block; }
    .pof-nav {
        position: fixed;
        top: 76px; left: 0; right: 0;
        background: #fff;
        border-top: 1px solid var(--pof-line);
        border-bottom: 1px solid var(--pof-line);
        padding: 12px 18px 18px;
        max-height: 0;
        overflow: hidden;
        transition: max-height .25s ease;
        box-shadow: 0 8px 22px rgba(15,163,163,.08);
    }
    .pof-nav.is-open { max-height: 540px; }
    .pof-nav__list { flex-direction: column; align-items: stretch; gap: 2px; }
    .pof-nav__list a { padding: 12px 14px; }
    .pof-nav__dropdown-menu {
        position: static;
        opacity: 1; visibility: visible;
        transform: none;
        box-shadow: none;
        border: 0;
        background: var(--pof-cream-2);
        margin: 6px 0 6px 12px;
        padding: 6px;
    }
    .pof-hero { padding: 56px 0 64px; }
    .pof-section { padding: 56px 0; }
    .pof-grid-2 { grid-template-columns: 1fr; }
    .pof-helpline__inner { flex-direction: column; text-align: center; }
    .pof-footer__grid { grid-template-columns: 1fr; gap: 28px; }
    .pof-footer__bottom { flex-direction: column; gap: 6px; text-align: center; }
    .pof-article { padding: 32px 22px; }
    .pof-game-shell { padding: 22px 18px; }
    .pof-cookie__inner { flex-direction: column; align-items: stretch; }
    .pof-cookie__btns { justify-content: stretch; }
    .pof-cookie__btns .pof-btn { flex: 1; }
}

@media (max-width: 480px) {
    .pof-grid-3, .pof-grid-4 { grid-template-columns: 1fr; }
    .pof-hud { grid-template-columns: 1fr; gap: 8px; }
    .pof-reel { width: 76px; height: 92px; font-size: 2.6rem; }
    .pof-wheel-wrap { width: 280px; height: 280px; }
    .pof-bingo__head span { font-size: 1rem; padding: 8px 0; }
    .pof-bingo__cell { font-size: .92rem; }
    .pof-age-badge { width: 40px; height: 40px; font-size: .82rem; }
}
