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

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    color: #1a2a3a;
    background: #f0f6fc;
    line-height: 1.6
}

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

/* image placeholders */
a {
    text-decoration: none;
    color: inherit
}

/* ========== HEADER ========== */
.nk-hdr {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #0d2d5e;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .25)
}

.nk-hdr-logo {
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    white-space: nowrap;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px
}

.nk-hdr-logo img {
    height: 40px;
    width: auto
}

.nk-hdr-logo span {
    color: #f0b90b
}

.nk-hdr-nav {
    display: flex;
    gap: 22px;
    align-items: center
}

.nk-hdr-nav a {
    color: rgba(255, 255, 255, .85);
    font-size: .82rem;
    font-weight: 500;
    transition: color .2s
}

.nk-hdr-nav a:hover {
    color: #f0b90b
}

.nk-hdr-cta {
    background: #f0b90b;
    color: #0d2d5e;
    font-weight: 700;
    font-size: .8rem;
    padding: 8px 18px;
    border-radius: 6px;
    transition: background .2s
}

.nk-hdr-cta:hover {
    background: #d4a30a
}

/* ========== HERO ========== */
.nk-hero {
    background: linear-gradient(135deg, #0d2d5e 0%, #164b8a 100%);
    padding: 60px 20px 50px;
    position: relative;
    overflow: hidden
}

.nk-hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: radial-gradient(ellipse at 80% 50%, rgba(240, 185, 11, .08) 0%, transparent 70%);
    pointer-events: none
}

.nk-hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px
}

.nk-hero-txt {
    flex: 1;
    color: #fff;
    position: relative;
    z-index: 2
}
.nk-hero-txt p{
    margin-bottom: 15px;
}

.nk-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: .75rem;
    font-weight: 600;
    color: #f0b90b;
    margin-bottom: 18px
}

.nk-hero-h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 18px;
    letter-spacing: -0.03em
}

.nk-hero-h1 em {
    font-style: normal;
    color: #f0b90b
}

.nk-hero-desc {
    color: rgba(255, 255, 255, .9);
    font-size: .95rem;
    line-height: 1.7;
    margin-bottom: 28px
}

.nk-hero-actions {
    margin-top: 15px;
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap
}

.nk-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f0b90b;
    color: #0d2d5e;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 30px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: transform .15s, box-shadow .15s, background .2s;
    box-shadow: 0 4px 16px rgba(240, 185, 11, .35)
}

.nk-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(240, 185, 11, .45);
    background: #d4a30a
}

.nk-cta-primary svg {
    width: 18px;
    height: 18px
}

.nk-hero-img {
    flex: 0 0 320px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center
}

.nk-hero-img img {
    max-width: 320px;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, .3))
}

/* ========== TOP 3 ========== */
.nk-top {
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 20px 10px
}

.nk-top-head {
    text-align: center;
    margin-bottom: 36px
}

.nk-top-head h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    font-weight: 800;
    color: #0d2d5e;
    letter-spacing: -0.02em
}

.nk-top-head p {
    color: #5a7a9a;
    font-size: .92rem;
    margin-top: 6px
}

.nk-top-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.nk-pick {
    background: #fff;
    border-radius: 14px;
    padding: 28px 24px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .06);
    position: relative;
    border: 2px solid transparent;
    transition: transform .2s, box-shadow .2s;
    text-align: center;
}

.nk-pick:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .1)
}

.nk-pick[data-rank="1"] {
    border-color: #f0b90b;
    background: linear-gradient(180deg, #fffdf0 0%, #fff 40%)
}

.nk-pick-logo {
    display: block;
    height: 54px;
    width: 120px;
    max-width: 120px;
    object-fit: cover;
    object-position: center;
    margin: 10px auto 6px;
}

.nk-rank {
    position: absolute;
    top: -12px;
    left: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: .9rem;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .15)
}

.nk-rank[data-n="1"] {
    background: linear-gradient(135deg, #f0b90b, #d4a30a)
}

.nk-rank[data-n="2"] {
    background: #607d8b
}

.nk-rank[data-n="3"] {
    background: #8d6e63
}

.nk-tag-pop {
    background: #0d2d5e;
    color: #f0b90b;
    font-size: .65rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 4px;
    position: absolute;
    top: -12px;
    right: 16px;
    text-transform: uppercase;
    letter-spacing: .05em
}

.nk-pick-name {
    font-weight: 700;
    font-size: 1.05rem;
    color: #0d2d5e;
    margin-bottom: 4px;
    margin-top: 10px
}

.nk-pick-speed {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #e3f2fd;
    color: #1565c0;
    font-size: .75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 12px
}

.nk-pick-speed svg {
    width: 14px;
    height: 14px
}

.nk-pick-meta {
    font-size: .82rem;
    color: #5a7a9a;
    margin-bottom: 14px;
    line-height: 1.5
}

.nk-pick-pays {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 16px;
    justify-content: center;
}

.nk-pay {
    background: #f0f4f8;
    color: #3a5a7a;
    font-size: .7rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px
}

.nk-pick-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: #0d2d5e;
    color: #fff;
    font-weight: 700;
    font-size: .9rem;
    padding: 12px;
    border-radius: 8px;
    transition: background .2s
}

.nk-pick-btn:hover {
    background: #164b8a
}

/* ========== COMPARISON TABLE ========== */
.nk-tbl-section {
    max-width: 1100px;
    margin: 32px auto 0;
    padding: 0 20px 40px
}

.nk-tbl-head {
    margin-bottom: 20px
}

.nk-tbl-head h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 800;
    color: #0d2d5e
}

.nk-tbl {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .06)
}

.nk-tbl thead {
    background: #0d2d5e;
    color: #fff
}

.nk-tbl th {
    padding: 14px 16px;
    font-size: .78rem;
    font-weight: 600;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: .04em
}

.nk-tbl td {
    padding: 14px 16px;
    font-size: .88rem;
    border-bottom: 1px solid #eef2f7;
    vertical-align: middle
}

.nk-tbl tbody tr {
    transition: background .15s
}

.nk-tbl tbody tr:hover {
    background: #f0f6fc
}

.nk-tbl tbody tr[data-rank="1"] {
    background: #fffdf0
}

.nk-tbl tbody tr[data-rank="1"]:hover {
    background: #fff8d6
}

.nk-casino-cell {
    font-weight: 600;
    color: #0d2d5e;
    text-align: center;
}

.nk-speed {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: .76rem;
    font-weight: 600
}

.nk-speed[data-s="instant"] {
    background: #e8f5e9;
    color: #2e7d32
}

.nk-speed[data-s="fast"] {
    background: #e3f2fd;
    color: #1565c0
}

.nk-speed[data-s="medium"] {
    background: #fff3e0;
    color: #e65100
}

.nk-lic {
    font-size: .78rem;
    color: #5a7a9a;
    font-weight: 500
}

.nk-row-cta {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #f0b90b;
    color: #0d2d5e;
    font-weight: 700;
    font-size: .8rem;
    padding: 8px 16px;
    border-radius: 6px;
    transition: background .2s;
    white-space: nowrap
}

.nk-row-cta:hover {
    background: #d4a30a
}

.nk-row-cta svg {
    width: 14px;
    height: 14px
}

.nk-hidden {
    display: none
}

.nk-show-more {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 20px auto 0;
    background: #fff;
    color: #0d2d5e;
    border: 2px solid #0d2d5e;
    font-weight: 700;
    font-size: .88rem;
    padding: 12px 28px;
    border-radius: 8px;
    cursor: pointer;
    font-family: inherit;
    transition: background .2s, color .2s
}

.nk-show-more:hover {
    background: #0d2d5e;
    color: #fff
}

.nk-show-more svg {
    width: 16px;
    height: 16px;
    transition: transform .2s
}

.nk-show-more[data-open="true"] svg {
    transform: rotate(180deg)
}

/* ========== MOBILE CARDS ========== */
.nk-mob-cards {
    display: none
}

.nk-mob-card {
    background: #fff;
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .06)
}

.nk-mob-card[data-rank="1"] {
    border: 2px solid #f0b90b;
    background: #fffdf0
}

.nk-mob-card-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px
}

.nk-mob-card-head strong {
    font-size: 1rem;
    color: #0d2d5e
}

.nk-mob-card-head .nk-mob-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: .8rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0
}

.nk-mob-card-head .nk-mob-num[data-n="1"] {
    background: linear-gradient(135deg, #f0b90b, #d4a30a)
}

.nk-mob-card-head .nk-mob-num[data-n="2"] {
    background: #607d8b
}

.nk-mob-card-head .nk-mob-num[data-n="3"] {
    background: #8d6e63
}

.nk-mob-card-head .nk-mob-num {
    background: #90a4ae;
}

.nk-mob-card-head .nk-mob-casino-logo {
    display: block;
    height: 80px;
    width: auto;
    max-width: 80px;
    object-fit: contain;
    object-position: center;
    flex-shrink: 0;
}

.nk-mob-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: .84rem;
    border-bottom: 1px solid #eef2f7
}

.nk-mob-row:last-of-type {
    border-bottom: none
}

.nk-mob-lbl {
    color: #5a7a9a;
    font-weight: 500;
    margin-right: 20px;
}

.nk-mob-val {
    color: #0d2d5e;
    font-weight: 600
}

.nk-mob-cta {
    display: block;
    width: 100%;
    text-align: center;
    background: #f0b90b;
    color: #0d2d5e;
    font-weight: 700;
    font-size: .88rem;
    padding: 11px;
    border-radius: 8px;
    margin-top: 12px
}

/* ========== MID CTA STRIP ========== */
.nk-mid {
    background: #0d2d5e;
    padding: 36px 20px;
    margin-top: 10px
}

.nk-mid-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap
}

.nk-mid-txt {
    color: #fff
}

.nk-mid-txt h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 4px
}

.nk-mid-txt p {
    color: rgba(255, 255, 255, .7);
    font-size: .88rem
}

.nk-mid-img {
    width: 120px;
    flex-shrink: 0
}

.nk-mid-img img {
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, .3))
}

/* ========== EDITORIAL ========== */
.nk-edit-wrap {
    max-width: 1100px;
    margin: 48px auto;
    padding: 0 20px;
}

.nk-edit-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start
}

.nk-edit-main {
    overflow: hidden;
}

.nk-edit-main img {
    display: block;
    margin: 40px auto;
    max-height: 450px;
}

.nk-edit-main h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    font-weight: 800;
    color: #0d2d5e;
    margin-bottom: 16px
}

.nk-edit-main h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0d2d5e;
    margin: 24px 0 10px
}

.nk-edit-main p {
    color: #3a5a7a;
    font-size: .92rem;
    line-height: 1.7;
    margin-bottom: 14px
}

.nk-edit-main strong {
    color: #3a5a7a;
}

.nk-edit-main ul {
    list-style: none;
    margin: 12px 0 18px;
    padding: 0
}

.nk-edit-main ul li {
    padding: 6px 0 6px 26px;
    position: relative;
    color: #3a5a7a;
    font-size: .9rem
}

.nk-edit-main ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 16px;
    height: 16px;
    background: #22c55e;
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: center
}

.nk-edit-main table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0 20px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 6px rgba(0, 0, 0, .05)
}

.nk-edit-main table thead {
    background: #0d2d5e;
    color: #fff
    background: #0d2d5e;
    color: #fff;
}

.nk-edit-main table th {
    padding: 10px 14px;
    font-size: .78rem;
    font-weight: 600;
    text-align: left;
    background: #0d2d5e;
    color: #fff
}
.nk-edit-main table tr td:nth-child(1){
    font-weight: 700;
}

.nk-edit-main table td {
    padding: 10px 14px;
    font-size: .85rem;
    border-bottom: 1px solid #eef2f7
}

.nk-edit-main table tbody tr:hover {
    background: #f0f6fc
}

.nk-edit-side {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.nk-side-img {
    border-radius: 12px;
    overflow: hidden
}

.nk-side-box {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .06)
}

.nk-side-box h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #0d2d5e;
    margin-bottom: 10px
}

.nk-side-box p {
    font-size: .85rem;
    color: #5a7a9a;
    line-height: 1.6
}

.nk-side-box a {
    display: inline-block;
    margin-top: 12px;
    background: #f0b90b;
    color: #0d2d5e;
    font-weight: 700;
    font-size: .85rem;
    padding: 10px 20px;
    border-radius: 6px
}

/* ========== FAQ ========== */
.nk-faq {
    max-width: 800px;
    margin: 0 auto;
    padding: 48px 20px 56px
}

.nk-faq h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    font-weight: 800;
    color: #0d2d5e;
    text-align: center;
    margin-bottom: 28px
}

.nk-acc {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 10px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, .04);
    overflow: hidden
}

.nk-acc-btn {
    width: 100%;
    background: none;
    border: none;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-family: inherit;
    font-size: .92rem;
    font-weight: 600;
    color: #0d2d5e;
    text-align: left;
    transition: background .15s
}

.nk-acc-btn:hover {
    background: #f0f6fc
}

.nk-acc-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform .25s;
    color: #5a7a9a
}

.nk-acc-btn[aria-expanded="true"] svg {
    transform: rotate(180deg);
    color: #0d2d5e
}

.nk-acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease
}

.nk-acc-content {
    padding: 0 20px 16px;
    font-size: .88rem;
    color: #3a5a7a;
    line-height: 1.7
}

/* ========== PRE-FAQ IMAGE ========== */
.nk-prefaq-img {
    text-align: center;
    padding: 40px 20px 0
}

.nk-prefaq-img img {
    max-width: 240px;
    margin: 0 auto;
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, .08))
}

/* ========== FINAL CTA ========== */
.nk-final {
    background: linear-gradient(135deg, #0d2d5e, #164b8a);
    padding: 48px 20px;
    text-align: center
}

.nk-final h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px
}

.nk-final p {
    color: rgba(255, 255, 255, .75);
    font-size: .95rem;
    margin-bottom: 28px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto
}

/* ========== FOOTER ========== */
.nk-footer {
    background: #1a2a3a;
    padding: 36px 20px;
    text-align: center
}

.nk-footer p {
    color: rgba(255, 255, 255, .5);
    font-size: .78rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto
}

.nk-rg-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, .08);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: .85rem;
    font-weight: 700;
    color: #e57373;
    margin-bottom: 14px
}

.nk-rg-links {
    margin-top: 14px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap
}

.nk-rg-links a {
    color: rgba(255, 255, 255, .4);
    font-size: .75rem;
    font-weight: 500;
    transition: color .2s
}

.nk-rg-links a:hover {
    color: rgba(255, 255, 255, .7)
}

/* ========== FLOATING CTA ========== */
.nk-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 90;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .18);
    padding: 20px;
    width: 300px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: opacity .3s, transform .3s
}

.nk-float[data-visible="true"] {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0)
}

.nk-float-close {
    position: absolute;
    top: 8px;
    right: 10px;
    background: none;
    border: none;
    cursor: pointer;
    color: #8a9ab0;
    font-size: 1.2rem;
    line-height: 1;
    padding: 4px
}

.nk-float-close:hover {
    color: #0d2d5e
}

.nk-float-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px
}

.nk-float-top img {
    width: 48px;
    height: 48px;
    border-radius: 10px
}

.nk-float-top p {
    font-size: .82rem;
    font-weight: 600;
    color: #0d2d5e;
    line-height: 1.3
}

.nk-float-top p span {
    display: block;
    font-size: .72rem;
    font-weight: 400;
    color: #5a7a9a
}

.nk-float-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: #f0b90b;
    color: #0d2d5e;
    font-weight: 700;
    font-size: .88rem;
    padding: 11px;
    border-radius: 8px;
    transition: background .2s
}

.nk-float-btn:hover {
    background: #d4a30a
}

/* ========== MOBILE BAR ========== */
.nk-mob-bar {
    display: none
}

/* ========== RESPONSIVE ========== */
@media(max-width:1024px) {
    .nk-top-row {
        grid-template-columns: 1fr 1fr
    }

    .nk-top-row .nk-pick:last-child {
        grid-column: 1/-1;
        max-width: 50%;
        justify-self: center
    }

    .nk-edit-grid {
        grid-template-columns: 1fr;
        gap: 30px
    }

    .nk-edit-side {
        flex-direction: row
    }

    .nk-side-img,
    .nk-side-box {
        flex: 1
    }
}

@media(max-width:768px) {
    .nk-hdr-nav {
        display: none
    }
    .nk-top-row .nk-pick:last-child {
        justify-self: stretch
    }

    .nk-hero-inner {
        flex-direction: column;
        text-align: center
    }

    .nk-hero-actions {
        justify-content: center
    }

    .nk-hero-img {
        flex: none;
        order: -1
    }

    .nk-hero-img img {
        max-width: 220px
    }

    .nk-top-row {
        grid-template-columns: 1fr
    }

    .nk-top-row .nk-pick:last-child {
        max-width: 100%
    }

    .nk-tbl {
        display: none
    }

    .nk-mob-cards {
        display: flex;
        flex-direction: column;
        gap: 12px
    }

    .nk-float {
        display: none !important
    }

    .nk-mob-bar {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 90;
        background: #fff;
        padding: 10px 16px;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, .12);
        transform: translateY(100%);
        transition: transform .3s
    }

    .nk-mob-bar[data-visible="true"] {
        transform: translateY(0)
    }

    .nk-mob-bar a {
        display: block;
        width: 100%;
        text-align: center;
        background: #f0b90b;
        color: #0d2d5e;
        font-weight: 700;
        font-size: 1rem;
        padding: 14px;
        border-radius: 8px
    }

    .nk-mid-inner {
        flex-direction: column;
        text-align: center
    }

    .nk-edit-side {
        flex-direction: column
    }
}

@media(max-width:480px) {
    .nk-hero {
        padding: 40px 16px 36px
    }

    .nk-hero-img img {
        max-width: 170px
    }
}

.nk-table-wrap {
    overflow: auto;
    max-width: 100%;
}

.nk-table-wrap table {
    min-width: 50vh;
}

.nk-casino-logo {
    vertical-align: middle;
    max-width: 90px;
    max-height: 70px;
    margin: 0 auto 10px;
}
.nk-edit-main ol {
    padding-inline-start: 40px;
}
.nk-edit-main li {
    color: #3a5a7a;
    font-size: .92rem;
    line-height: 1.7;
    margin-bottom: 14px;
}
