:root {
    --c-bg: #131313;
    --c-hdr: #181818;
    --c-btn-dark: #0E0E10;
    --c-btn-gold: #FFD52F;
    --c-text: #e8e8e8;
    --c-text-muted: #9a9a9a;
    --c-border: #2a2a2a;
    --c-card: #1c1c1e;
    --c-card2: #1f1f22;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 24px rgba(0, 0, 0, .55);
    --font-main: 'Montserrat', Arial, sans-serif;
    --font-body: 'Roboto', Arial, sans-serif;
}

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

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

body {
    background: var(--c-bg);
    color: var(--c-text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    min-height: 100vh;
    overflow-x: hidden;
}

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

a {
    color: var(--c-btn-gold);
    text-decoration: none;
    transition: opacity .2s;
}

a:hover {
    opacity: .82;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-main);
    font-weight: 700;
    line-height: 1.25;
    color: #fff;
}

.x7f2a-wrap {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.b3k9m-row {
    display: grid;
}

.q1r4t-flex {
    display: flex;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    border-radius: var(--radius-sm);
    padding: 10px 22px;
    transition: transform .15s, box-shadow .15s, opacity .2s;
    text-decoration: none;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, .45);
}

.btn:active {
    transform: translateY(0);
}

.btn-dark {
    background: var(--c-btn-dark);
    color: #FFD52F;
    border: 1px solid #2a2a2a;
}

.btn-gold {
    background: var(--c-btn-gold);
    color: #0E0E10;
}

.btn-gold:hover {
    background: #ffe05a;
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .25);
}

/* ──  ── */
.p9v3s-hdr {
    position: sticky;
    top: 0;
    z-index: 200;
    background: var(--c-hdr);
    border-bottom: 1px solid var(--c-border);
    box-shadow: 0 2px 16px rgba(0, 0, 0, .6);
}

.p9v3s-hdr-inner {
    display: grid;
    grid-template-columns:auto 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 12px 20px;
    max-width: 1280px;
    margin: 0 auto;
}

.m4x7n-logo img {
    height: 44px;
    width: auto;
    object-fit: contain;
}

.k2f8a-nav {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

.k2f8a-nav a {
    color: var(--c-text-muted);
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 6px;
    transition: color .2s, background .2s;
}

.k2f8a-nav a:hover {
    color: #fff;
    background: rgba(255, 255, 255, .07);
}

.r6t1y-hdr-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.n5c2k-online {
    font-size: 12px;
    color: var(--c-text-muted);
    white-space: nowrap;
}

.n5c2k-online span {
    color: #4ade80;
    font-weight: 700;
}

.v8b3m-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.v8b3m-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
}

.v8b3m-burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.v8b3m-burger.active span:nth-child(2) {
    opacity: 0;
}

.v8b3m-burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.w2d9p-mobile-nav {
    display: none;
    background: var(--c-hdr);
    border-top: 1px solid var(--c-border);
    padding: 16px 20px;
    flex-direction: column;
    gap: 8px;
}

.w2d9p-mobile-nav.open {
    display: flex;
}

.w2d9p-mobile-nav a {
    color: var(--c-text-muted);
    font-size: 14px;
    font-weight: 600;
    padding: 8px 0;
    border-bottom: 1px solid var(--c-border);
}

.s1l4d-hero {
    position: relative;
    overflow: hidden;
    height: 520px;
    background: #0a0a0a;
}

.s1l4d-track {
    display: flex;
    height: 100%;
    transition: transform .6s cubic-bezier(.4, 0, .2, 1);
}

.s1l4d-slide {
    flex: 0 0 100%;
    height: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
}

.s1l4d-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(14, 14, 16, .85) 30%, rgba(14, 14, 16, .2));
}

.s1l4d-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 60px;
}

.s1l4d-content h1 {
    font-size: clamp(1.6rem, 4vw, 3rem);
    max-width: 600px;
    margin-bottom: 12px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .8);
}

.s1l4d-content p {
    font-size: clamp(.95rem, 2vw, 1.15rem);
    color: rgba(255, 255, 255, .75);
    max-width: 480px;
    margin-bottom: 28px;
}

.s1l4d-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.s1l4d-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .35);
    border: none;
    cursor: pointer;
    transition: background .2s, transform .2s;
}

.s1l4d-dot.active {
    background: var(--c-btn-gold);
    transform: scale(1.35);
}

.s1l4d-arr {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}

.s1l4d-arr:hover {
    background: rgba(255, 213, 47, .25);
}

.s1l4d-prev {
    left: 16px;
}

.s1l4d-next {
    right: 16px;
}

.f3m8r-section {
    padding: 64px 0;
}

.f3m8r-section + .f3m8r-section {
    padding-top: 0;
}

.e2n6k-title {
    font-size: clamp(1.3rem, 2.5vw, 2rem);
    margin-bottom: 32px;
    text-align: center;
    position: relative;
}

.e2n6k-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: var(--c-btn-gold);
    border-radius: 2px;
    margin: 10px auto 0;
}

.c7h1q-promo-card {
    background: linear-gradient(135deg, #1c1c1e 0%, #232328 100%);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 32px;
    max-width: 640px;
    margin: 0 auto;
    box-shadow: var(--shadow);
    display: grid;
    gap: 20px;
}

.c7h1q-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #4ade80;
    background: rgba(74, 222, 128, .12);
    border: 1px solid rgba(74, 222, 128, .25);
    padding: 4px 10px;
    border-radius: 20px;
}

.c7h1q-status::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
}

.c7h1q-code-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.c7h1q-code {
    font-family: var(--font-main);
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: .12em;
    color: var(--c-btn-gold);
    background: rgba(255, 213, 47, .08);
    border: 2px dashed rgba(255, 213, 47, .4);
    padding: 14px 24px;
    border-radius: var(--radius-sm);
    flex: 1;
    text-align: center;
}

.c7h1q-timer {
    font-size: 12px;
    color: var(--c-text-muted);
}

.c7h1q-timer strong {
    color: #f87171;
}

.c7h1q-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.c7h1q-btns .btn {
    flex: 1;
    min-width: 140px;
}

.a4s9x-pc {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 20px;
}

.a4s9x-col {
    background: var(--c-card);
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid var(--c-border);
}

.a4s9x-col h3 {
    font-size: 1rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.a4s9x-pros h3 {
    color: #4ade80;
}

.a4s9x-cons h3 {
    color: #f87171;
}

.a4s9x-list {
    list-style: none;
    display: grid;
    gap: 10px;
}

.a4s9x-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .9rem;
    line-height: 1.5;
}

.a4s9x-list li::before {
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: .05em;
}

.a4s9x-pros .a4s9x-list li::before {
    content: '✓';
    color: #4ade80;
}

.a4s9x-cons .a4s9x-list li::before {
    content: '✗';
    color: #f87171;
}

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

.j8b2v-card {
    background: linear-gradient(160deg, #1e1e22 0%, #27272d 100%);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform .25s, box-shadow .25s;
}

.j8b2v-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(255, 213, 47, .12);
}

.j8b2v-card::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 90px;
    height: 90px;
    background: radial-gradient(circle, rgba(255, 213, 47, .12) 0%, transparent 70%);
}

.j8b2v-game {
    font-size: .78rem;
    font-weight: 700;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 8px;
}

.j8b2v-amt {
    font-family: var(--font-main);
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--c-btn-gold);
    margin-bottom: 6px;
}

.j8b2v-label {
    font-size: .78rem;
    color: var(--c-text-muted);
}

/* ──  ── */
.t5p1w-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 20px;
}

.t5p1w-card {
    background: var(--c-card2);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 24px;
    display: grid;
    gap: 12px;
    transition: transform .25s, box-shadow .25s;
    position: relative;
    overflow: hidden;
}

.t5p1w-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .5);
}

.t5p1w-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 20px;
    background: rgba(255, 213, 47, .15);
    color: var(--c-btn-gold);
    border: 1px solid rgba(255, 213, 47, .3);
    width: fit-content;
}

.t5p1w-name {
    font-family: var(--font-main);
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
}

.t5p1w-desc {
    font-size: .87rem;
    color: var(--c-text-muted);
    line-height: 1.55;
}

.t5p1w-prize {
    font-family: var(--font-main);
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--c-btn-gold);
}

.t5p1w-timer-label {
    font-size: .75rem;
    color: var(--c-text-muted);
    margin-bottom: 2px;
}

.t5p1w-countdown {
    display: flex;
    gap: 8px;
}

.t5p1w-unit {
    text-align: center;
}

.t5p1w-unit-val {
    font-family: var(--font-main);
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    border-radius: 6px;
    padding: 4px 8px;
    min-width: 36px;
    display: block;
}

.t5p1w-unit-lbl {
    font-size: 10px;
    color: var(--c-text-muted);
}

.g6r3n-wrap {
    background: linear-gradient(160deg, #18181c 0%, #1e1e24 100%);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 40px 32px;
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
    box-shadow: var(--shadow);
}

.g6r3n-reels {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 28px 0;
}

.g6r3n-reel {
    width: 80px;
    height: 80px;
    background: var(--c-bg);
    border: 2px solid var(--c-border);
    border-radius: 12px;
    font-size: 2.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .1s;
}

.g6r3n-reel.spin {
    animation: reel-spin .4s steps(1, end) infinite;
}

.g6r3n-desc {
    font-size: .9rem;
    color: var(--c-text-muted);
    margin-bottom: 20px;
}

.g6r3n-result {
    margin-top: 20px;
    padding: 16px;
    border-radius: var(--radius-sm);
    display: none;
}

.g6r3n-result.win {
    display: block;
    background: rgba(74, 222, 128, .12);
    border: 1px solid rgba(74, 222, 128, .3);
    color: #4ade80;
}

.g6r3n-result.lose {
    display: block;
    background: rgba(248, 113, 113, .1);
    border: 1px solid rgba(248, 113, 113, .25);
    color: #f87171;
}

.g6r3n-result h4 {
    margin-bottom: 8px;
}

.g6r3n-result p {
    font-size: .88rem;
    margin-bottom: 12px;
}

.r9m5k-review {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow);
}

.r9m5k-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--c-border);
}

.r9m5k-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--c-btn-gold);
}

.r9m5k-author-name {
    font-family: var(--font-main);
    font-weight: 700;
    color: #fff;
    font-size: .95rem;
}

.r9m5k-author-bio {
    font-size: .78rem;
    color: var(--c-text-muted);
    margin-top: 3px;
}

.r9m5k-content h2, .r9m5k-content h3, .r9m5k-content h4 {
    font-family: var(--font-main);
    margin: 1.4em 0 .6em;
    color: #fff;
}

.r9m5k-content p {
    margin-bottom: 1em;
    color: var(--c-text);
    line-height: 1.75;
}

.r9m5k-content ul, .r9m5k-content ol {
    margin: 0 0 1em 1.4em;
    display: grid;
    gap: 4px;
}

.r9m5k-content li {
    color: var(--c-text);
    line-height: 1.65;
}

.r9m5k-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.2em 0;
    overflow-x: auto;
    display: block;
}

.r9m5k-content table th, .r9m5k-content table td {
    text-align: left;
    padding: 10px 14px;
    border: 1px solid var(--c-border);
    font-size: .88rem;
}

.r9m5k-content table th {
    background: var(--c-bg);
    font-family: var(--font-main);
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.r9m5k-content table tr:nth-child(even) td {
    background: rgba(255, 255, 255, .03);
}

.r9m5k-content a {
    color: var(--c-btn-gold);
}

.r9m5k-content blockquote {
    border-left: 3px solid var(--c-btn-gold);
    padding: 12px 18px;
    margin: 1.2em 0;
    color: var(--c-text-muted);
    font-style: italic;
}

/* ──  ── */
.f1a6q-list {
    display: grid;
    gap: 10px;
    max-width: 860px;
    margin: 0 auto;
}

.f1a6q-item {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.f1a6q-q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-family: var(--font-main);
    font-size: .95rem;
    font-weight: 600;
    transition: background .2s;
}

.f1a6q-q:hover {
    background: rgba(255, 255, 255, .04);
}

.f1a6q-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1.5px solid var(--c-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: transform .3s, border-color .3s;
}

.f1a6q-item.open .f1a6q-icon {
    transform: rotate(45deg);
    border-color: var(--c-btn-gold);
    color: var(--c-btn-gold);
}

.f1a6q-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .3s;
}

.f1a6q-a-inner {
    padding: 0 20px 18px;
    color: var(--c-text-muted);
    font-size: .9rem;
    line-height: 1.7;
}

.f1a6q-item.open .f1a6q-a {
    max-height: 400px;
}

/* ──  ── */
.h7y2b-footer {
    background: var(--c-hdr);
    border-top: 1px solid var(--c-border);
    padding: 48px 0 24px;
}

.h7y2b-top {
    display: grid;
    grid-template-columns:auto 1fr auto;
    gap: 32px;
    align-items: start;
    margin-bottom: 36px;
}

.h7y2b-logo img {
    height: 40px;
}

.h7y2b-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.h7y2b-nav a {
    color: var(--c-text-muted);
    font-size: 13px;
    padding: 4px 10px;
    border-radius: 5px;
    transition: color .2s;
}

.h7y2b-nav a:hover {
    color: #fff;
}

.h7y2b-providers {
    display: grid;
    gap: 12px;
}

.h7y2b-prov-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--c-text-muted);
}

.h7y2b-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.h7y2b-logos span {
    background: rgba(255, 255, 255, .07);
    border: 1px solid var(--c-border);
    border-radius: 6px;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 700;
    color: var(--c-text-muted);
}

.h7y2b-divider {
    border: none;
    border-top: 1px solid var(--c-border);
    margin: 24px 0;
}

.h7y2b-legal {
    font-size: .75rem;
    color: var(--c-text-muted);
    line-height: 1.6;
    text-align: center;
}

.h7y2b-legal a {
    color: var(--c-text-muted);
}

.z3k8m-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 300;
    background: linear-gradient(90deg, #1a1a1e 0%, #222226 100%);
    border-top: 1px solid rgba(255, 213, 47, .3);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, .6);
}

.z3k8m-text {
    font-size: .85rem;
    color: var(--c-text-muted);
}

.z3k8m-text strong {
    color: var(--c-btn-gold);
    font-family: var(--font-main);
    font-size: 1rem;
}

.z3k8m-close {
    background: none;
    border: none;
    color: var(--c-text-muted);
    cursor: pointer;
    font-size: 18px;
    padding: 4px;
    line-height: 1;
}

/* ──  ── */
@keyframes pulse-dot {
    0%, 100% {
        opacity: 1
    }
    50% {
        opacity: .4
    }
}

@keyframes reel-spin {
    0% {
        transform: translateY(0)
    }
    25% {
        transform: translateY(-4px)
    }
    75% {
        transform: translateY(4px)
    }
    100% {
        transform: translateY(0)
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.anim-up {
    animation: fadeInUp .55s ease both;
}

.anim-up-d1 {
    animation-delay: .1s;
}

.anim-up-d2 {
    animation-delay: .22s;
}

.anim-up-d3 {
    animation-delay: .34s;
}

.wp-post-nav {
    display: none
}

.elementor-widget-wrap {
    box-sizing: border-box
}

.yoast-breadcrumbs {
    display: none
}

.entry-thumbnail {
    display: none
}

.post-edit-link {
    display: none
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute;
    width: 1px
}

.wp-block-cover__inner-container {
    max-width: 900px
}

.has-background {
    padding: 1.25em 2.375em
}

.is-layout-flow {
    display: flow-root
}

.wp-element-button {
    cursor: pointer
}

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

    .h7y2b-top {
        grid-template-columns:1fr 1fr;
    }
}

@media (max-width: 768px) {
    .p9v3s-hdr-inner {
        grid-template-columns:auto 1fr auto;
    }

    .k2f8a-nav {
        display: none;
    }

    .v8b3m-burger {
        display: flex;
    }

    .s1l4d-hero {
        height: 380px;
    }

    .s1l4d-content {
        padding: 0 24px;
    }

    .a4s9x-pc {
        grid-template-columns:1fr;
    }

    .t5p1w-grid {
        grid-template-columns:1fr;
        overflow-x: auto;
        display: flex;
        flex-wrap: nowrap;
        gap: 14px;
        padding-bottom: 8px;
        scroll-snap-type: x mandatory;
    }

    .t5p1w-card {
        flex: 0 0 280px;
        scroll-snap-align: start;
    }

    .h7y2b-top {
        grid-template-columns:1fr;
    }

    .h7y2b-providers {
        grid-template-columns:1fr;
    }

    .j8b2v-grid {
        grid-template-columns:1fr 1fr;
    }

    .z3k8m-widget {
        flex-wrap: wrap;
    }

    .c7h1q-code {
        font-size: 1.2rem;
    }
}

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

    .s1l4d-hero {
        height: 300px;
    }

    .g6r3n-reel {
        width: 64px;
        height: 64px;
        font-size: 2rem;
    }

    .r9m5k-review {
        padding: 20px 16px;
    }

    body {
        padding-bottom: 72px;
    }
}
