:root {
    --c-bg: #030535;
    --c-header: #141F61;
    --c-btn-login: #141D5F;
    --c-btn-reg: #449E66;
    --c-text: #e8eaf6;
    --c-text-muted: #9fa8da;
    --c-accent: #449E66;
    --c-border: rgba(255, 255, 255, .1);
    --c-block: #0d1650;
    --c-block2: #0a1040;
    --c-gold: #ffd700;
    --r-sm: .5rem;
    --r-md: .875rem;
    --r-lg: 1.25rem;
    --shadow: 0 4px 24px rgba(0, 0, 0, .4)
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px
}

body {
    background: var(--c-bg);
    color: var(--c-text);
    font-family: 'Montserrat', Roboto, Arial, sans-serif;
    line-height: 1.7;
    min-height: 100vh;
    overflow-x: hidden
}

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

a {
    color: var(--c-accent);
    transition: color .2s
}

a:hover {
    color: #5fc882
}

.n9x2-wrapper {
    min-height: 100vh;
    display: grid;
    grid-template-rows:auto 1fr auto
}

.n9x2-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem
}

.n9x2-section {
    padding: 3rem 0
}

.n9x2-section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem
}

.k4f7-header {
    background: var(--c-header);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .5)
}

.k4f7-header-inner {
    display: grid;
    grid-template-columns:auto 1fr auto auto;
    align-items: center;
    gap: 1rem;
    padding: .75rem 1rem;
    max-width: 1200px;
    margin: 0 auto
}

.k4f7-logo img {
    height: 48px;
    width: auto;
    transition: opacity .2s
}

.k4f7-logo img:hover {
    opacity: .85
}

.k4f7-nav {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    flex-wrap: wrap;
    align-items: center
}

.k4f7-nav a {
    color: var(--c-text);
    text-decoration: none;
    font-size: .875rem;
    font-weight: 500;
    letter-spacing: .03em;
    padding: .25rem .5rem;
    border-radius: var(--r-sm);
    transition: color .2s, background .2s
}

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

.k4f7-header-actions {
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-shrink: 0
}

.k4f7-online {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .75rem;
    color: var(--c-text-muted);
    white-space: nowrap
}

.k4f7-online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #449E66;
    flex-shrink: 0;
    animation: x7k2pulse 2s infinite
}

.k4f7-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: .4rem;
    background: none;
    border: none;
    z-index: 1010
}

.k4f7-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--c-text);
    border-radius: 2px;
    transition: transform .3s, opacity .3s
}

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

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

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

.k4f7-mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--c-header);
    z-index: 1005;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem
}

.k4f7-mobile-nav.active {
    display: flex
}

.k4f7-mobile-nav a {
    color: var(--c-text);
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 600
}

.k4f7-mobile-nav-close {
    position: absolute;
    top: 1rem;
    right: 1rem
}

.b5n3-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    padding: .5rem 1.25rem;
    border-radius: var(--r-md);
    font-weight: 700;
    font-size: .875rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform .15s, filter .2s, box-shadow .2s;
    letter-spacing: .04em;
    line-height: 1.4
}

.b5n3-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.1)
}

.b5n3-btn:active {
    transform: translateY(0)
}

.b5n3-btn-login {
    background: var(--c-btn-login);
    color: #fff;
    box-shadow: 0 2px 8px rgba(20, 29, 95, .5)
}

.b5n3-btn-login:hover {
    color: #fff
}

.b5n3-btn-reg {
    background: var(--c-btn-reg);
    color: #fff;
    box-shadow: 0 2px 8px rgba(68, 158, 102, .4)
}

.b5n3-btn-reg:hover {
    color: #fff
}

.b5n3-btn-lg {
    padding: .75rem 2rem;
    font-size: 1rem;
    border-radius: var(--r-lg)
}

.b5n3-btn-xl {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    border-radius: var(--r-lg)
}

/*  */
.h8r1-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #030535
}

.h8r1-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/hero-ol.png');
    background-size: cover;
    background-position: center;
    filter: brightness(.45);
    z-index: 0
}

.h8r1-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(3, 5, 53, .92) 0%, rgba(20, 31, 97, .65) 60%, transparent 100%);
    z-index: 1
}

.h8r1-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 640px
}

.h8r1-hero-tag {
    display: inline-block;
    background: var(--c-btn-reg);
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .25rem .75rem;
    border-radius: 2rem;
    width: fit-content
}

.h8r1-hero-title {
    font-size: clamp(1.75rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    text-shadow: 0 2px 16px rgba(0, 0, 0, .5)
}

.h8r1-hero-title span {
    color: #449E66
}

.h8r1-hero-desc {
    font-size: 1.05rem;
    color: rgba(232, 234, 246, .85);
    max-width: 520px
}

.h8r1-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: .5rem
}

.h8r1-hero-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: .5rem
}

.h8r1-badge {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 2rem;
    padding: .25rem .75rem;
    font-size: .75rem;
    color: var(--c-text-muted)
}

/*  */
.m2v9-block {
    background: var(--c-block);
    border-radius: var(--r-lg);
    padding: 2rem;
    margin: 1.5rem 0;
    border: 1px solid var(--c-border);
    transition: box-shadow .3s;
    animation: x7k2fadeIn .6s ease both
}

.m2v9-block:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, .4)
}

.m2v9-block-alt {
    background: var(--c-block2)
}

.m2v9-block-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: .6rem
}

.m2v9-block-title::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 1.2em;
    background: var(--c-accent);
    border-radius: 2px
}

.m2v9-block-subtitle {
    font-size: .9rem;
    color: var(--c-text-muted);
    margin-bottom: 1.5rem;
    margin-top: -.75rem
}

.t3q8-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--r-md)
}

.t3q8-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .9rem
}

.t3q8-table th {
    background: rgba(20, 31, 97, .9);
    color: var(--c-text-muted);
    font-weight: 600;
    font-size: .75rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .75rem 1rem;
    text-align: left;
    border-bottom: 2px solid var(--c-border);
    white-space: nowrap
}

.t3q8-table td {
    padding: .75rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    vertical-align: middle;
    text-align: left
}

.t3q8-table tr:last-child td {
    border-bottom: none
}

.t3q8-table tr:hover td {
    background: rgba(255, 255, 255, .03)
}

.t3q8-status {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .8rem;
    font-weight: 600
}

.t3q8-status-active {
    color: #449E66
}

.t3q8-status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0
}

.t3q8-status-dot-active {
    background: #449E66;
    box-shadow: 0 0 6px #449E66
}

.t3q8-mirror-link {
    color: var(--c-text);
    text-decoration: none;
    font-weight: 500;
    transition: color .2s
}

.t3q8-mirror-link:hover {
    color: #449E66
}

.t3q8-datetime {
    font-size: .8rem;
    color: var(--c-text-muted);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: .5rem
}

.t3q8-datetime span {
    color: var(--c-accent);
    font-weight: 600
}

/*  */
.w6j1-winners-list {
    display: grid;
    gap: .6rem
}

.w6j1-winner-item {
    display: grid;
    grid-template-columns:2rem 1fr auto auto;
    align-items: center;
    gap: .75rem;
    padding: .6rem 1rem;
    background: rgba(255, 255, 255, .03);
    border-radius: var(--r-sm);
    border: 1px solid rgba(255, 255, 255, .05);
    transition: background .2s
}

.w6j1-winner-item:hover {
    background: rgba(68, 158, 102, .07)
}

.w6j1-winner-item:nth-child(1) {
    background: rgba(255, 215, 0, .07);
    border-color: rgba(255, 215, 0, .2)
}

.w6j1-winner-item:nth-child(2) {
    background: rgba(192, 192, 192, .06);
    border-color: rgba(192, 192, 192, .15)
}

.w6j1-winner-item:nth-child(3) {
    background: rgba(205, 127, 50, .06);
    border-color: rgba(205, 127, 50, .15)
}

.w6j1-place {
    font-weight: 800;
    font-size: .85rem;
    color: var(--c-text-muted);
    text-align: center
}

.w6j1-place-1 {
    color: var(--c-gold)
}

.w6j1-place-2 {
    color: #c0c0c0
}

.w6j1-place-3 {
    color: #cd7f32
}

.w6j1-nick {
    font-weight: 600;
    font-size: .875rem;
    color: var(--c-text)
}

.w6j1-game {
    font-size: .75rem;
    color: var(--c-text-muted)
}

.w6j1-amount {
    font-weight: 700;
    font-size: .9rem;
    color: #449E66;
    white-space: nowrap
}

.w6j1-time {
    font-size: .7rem;
    color: var(--c-text-muted);
    white-space: nowrap
}

/*  */
.v4p2-video-wrap {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--r-md);
    background: #000
}

.v4p2-video-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none
}

/*  */
.s9d5-slot-machine {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem
}

.s9d5-reels {
    display: flex;
    gap: .75rem;
    background: rgba(0, 0, 0, .5);
    padding: 1.25rem;
    border-radius: var(--r-lg);
    border: 2px solid rgba(68, 158, 102, .3)
}

.s9d5-reel {
    width: 80px;
    height: 100px;
    overflow: hidden;
    background: #050940;
    border-radius: var(--r-sm);
    border: 1px solid rgba(255, 255, 255, .1);
    position: relative
}

.s9d5-reel-inner {
    display: flex;
    flex-direction: column;
    transition: transform .6s cubic-bezier(.25, .46, .45, .94)
}

.s9d5-symbol {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    user-select: none
}

.s9d5-spin-btn {
    background: linear-gradient(135deg, #449E66, #2d7a4f);
    color: #fff;
    border: none;
    border-radius: var(--r-lg);
    padding: .9rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: .04em;
    transition: transform .15s, filter .2s, box-shadow .2s;
    box-shadow: 0 4px 16px rgba(68, 158, 102, .5)
}

.s9d5-spin-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
    box-shadow: 0 6px 24px rgba(68, 158, 102, .6)
}

.s9d5-spin-btn:disabled {
    opacity: .6;
    cursor: not-allowed;
    transform: none
}

.s9d5-result {
    text-align: center;
    min-height: 2.5rem;
    transition: all .3s
}

.s9d5-win {
    color: #449E66;
    font-weight: 700;
    font-size: 1.05rem;
    animation: x7k2glow 2s ease-in-out infinite
}

.s9d5-lose {
    color: var(--c-text-muted);
    font-size: .9rem
}

.s9d5-bonus-block {
    display: none;
    text-align: center;
    background: linear-gradient(135deg, rgba(68, 158, 102, .15), rgba(68, 158, 102, .05));
    border: 1px solid rgba(68, 158, 102, .3);
    border-radius: var(--r-lg);
    padding: 1.25rem 2rem;
    animation: x7k2fadeIn .4s ease both
}

.s9d5-bonus-block.visible {
    display: block
}

.s9d5-bonus-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: .5rem
}

.s9d5-bonus-amount {
    font-size: 2rem;
    font-weight: 800;
    color: #449E66;
    animation: x7k2glow 2s ease-in-out infinite
}

.s9d5-bonus-sub {
    font-size: .85rem;
    color: var(--c-text-muted);
    margin-top: .5rem;
    margin-bottom: 1rem
}

.s9d5-stats {
    font-size: .8rem;
    color: var(--c-text-muted);
    text-align: center
}

/*  */
.a1u6-author {
    display: grid;
    grid-template-columns:auto 1fr;
    gap: 1.75rem;
    align-items: start
}

.a1u6-author-photo {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(68, 158, 102, .5);
    flex-shrink: 0
}

.a1u6-author-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .25rem
}

.a1u6-author-role {
    font-size: .8rem;
    color: var(--c-accent);
    font-weight: 600;
    margin-bottom: .75rem
}

.a1u6-author-bio {
    font-size: .875rem;
    color: var(--c-text-muted);
    line-height: 1.65
}

.a1u6-socials {
    display: flex;
    gap: .75rem;
    margin-top: .75rem;
    flex-wrap: wrap
}

.a1u6-social-link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .35rem .75rem;
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--c-border);
    border-radius: 2rem;
    font-size: .8rem;
    color: var(--c-text-muted);
    text-decoration: none;
    transition: background .2s, color .2s
}

.a1u6-social-link:hover {
    background: rgba(68, 158, 102, .2);
    color: #fff
}


.p5k3-content h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin: 1.75rem 0 .75rem
}

.p5k3-content h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--c-text);
    margin: 1.25rem 0 .5rem
}

.p5k3-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--c-text);
    margin: 1rem 0 .4rem
}

.p5k3-content p {
    margin-bottom: 1rem;
    color: var(--c-text-muted);
    font-size: .95rem
}

.p5k3-content ul, .p5k3-content ol {
    margin: .75rem 0 1rem 1.5rem;
    color: var(--c-text-muted);
    font-size: .95rem
}

.p5k3-content li {
    margin-bottom: .35rem
}

.p5k3-content a {
    color: var(--c-accent)
}

.p5k3-content strong {
    color: var(--c-text);
    font-weight: 600
}

.p5k3-content em {
    font-style: italic;
    color: var(--c-text)
}

.p5k3-content blockquote {
    border-left: 3px solid var(--c-accent);
    padding: .5rem 1rem;
    background: rgba(255, 255, 255, .03);
    border-radius: 0 var(--r-sm) var(--r-sm) 0;
    margin: 1rem 0;
    color: var(--c-text-muted);
    font-style: italic
}

.p5k3-content table {
    width: auto;
    border-collapse: collapse;
    margin: 1rem auto;
    font-size: .9rem
}

.p5k3-content table th {
    background: rgba(20, 31, 97, .8);
    color: var(--c-text-muted);
    padding: .6rem 1rem;
    border: 1px solid var(--c-border);
    text-align: left;
    font-size: .8rem;
    letter-spacing: .06em;
    text-transform: uppercase
}

.p5k3-content table td {
    padding: .6rem 1rem;
    border: 1px solid var(--c-border);
    color: var(--c-text-muted)
}

.p5k3-content table tr:hover td {
    background: rgba(255, 255, 255, .02)
}

/*  */
.f2x8-footer {
    background: var(--c-header);
    padding: 2.5rem 0 1.5rem;
    border-top: 1px solid var(--c-border)
}

.f2x8-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem
}

.f2x8-footer-grid {
    display: grid;
    grid-template-columns:auto 1fr auto;
    gap: 2rem;
    align-items: start;
    margin-bottom: 2rem
}

.f2x8-footer-logo img {
    height: 40px;
    width: auto;
    opacity: .9
}

.f2x8-footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem 1.25rem;
    list-style: none
}

.f2x8-footer-nav a {
    color: var(--c-text-muted);
    text-decoration: none;
    font-size: .8rem;
    transition: color .2s
}

.f2x8-footer-nav a:hover {
    color: #fff
}

.f2x8-footer-badges-title {
    font-size: .7rem;
    color: var(--c-text-muted);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: .6rem
}

.f2x8-footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    align-items: center
}

.f2x8-badge-pill {
    background: rgba(255, 255, 255, .07);
    border: 1px solid var(--c-border);
    border-radius: .3rem;
    padding: .3rem .6rem;
    font-size: .7rem;
    color: var(--c-text-muted);
    white-space: nowrap;
    font-weight: 500
}

.f2x8-divider {
    border: none;
    border-top: 1px solid var(--c-border);
    margin: 1.5rem 0
}

.f2x8-footer-bottom {
    display: grid;
    grid-template-columns:1fr auto;
    align-items: center;
    gap: 1rem
}

.f2x8-copyright {
    font-size: .75rem;
    color: var(--c-text-muted);
    line-height: 1.6
}

.f2x8-legal {
    font-size: .7rem;
    color: rgba(159, 168, 218, .5);
    max-width: 560px;
    line-height: 1.5
}

.f2x8-footer-sections {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem
}

.f2x8-section-title {
    font-size: .72rem;
    color: var(--c-text-muted);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: .75rem;
    font-weight: 600
}

.r3s7-widget {
    position: fixed;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 990;
    display: flex;
    align-items: center;
    gap: .75rem;
    background: linear-gradient(135deg, #0d1650, #141F61);
    border: 1px solid rgba(68, 158, 102, .35);
    border-radius: 2rem;
    padding: .6rem 1rem .6rem 1.25rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .5);
    backdrop-filter: blur(8px);
    animation: x7k2pulse 3s ease-in-out infinite;
    max-width: calc(100vw - 2rem)
}

.r3s7-widget-text {
    font-size: .8rem;
    color: var(--c-text-muted);
    white-space: nowrap
}

.r3s7-widget-bonus {
    font-size: .85rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap
}

.r3s7-widget-bonus strong {
    color: #449E66
}

.r3s7-widget a {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: var(--c-btn-reg);
    color: #fff;
    font-weight: 700;
    font-size: .8rem;
    padding: .45rem 1.1rem;
    border-radius: 2rem;
    text-decoration: none;
    transition: filter .2s, transform .15s;
    white-space: nowrap
}

.r3s7-widget a:hover {
    filter: brightness(1.1);
    transform: scale(1.04);
    color: #fff
}

.r3s7-widget-close {
    background: none;
    border: none;
    color: var(--c-text-muted);
    cursor: pointer;
    padding: .25rem;
    line-height: 1;
    font-size: 1rem;
    transition: color .2s;
    flex-shrink: 0
}

.r3s7-widget-close:hover {
    color: #fff
}

.z9c4-section-header {
    text-align: center;
    margin-bottom: 2.5rem
}

.z9c4-section-title {
    font-size: clamp(1.35rem, 3.5vw, 2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: .5rem
}

.z9c4-section-desc {
    font-size: .95rem;
    color: var(--c-text-muted);
    max-width: 540px;
    margin: 0 auto
}

/**/
.d7h5-grid-2 {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 1.5rem
}

.d7h5-grid-3 {
    display: grid;
    grid-template-columns:1fr 1fr 1fr;
    gap: 1.25rem
}

.d7h5-mt1 {
    margin-top: 1rem
}

.d7h5-mb2 {
    margin-bottom: 2rem
}

.d7h5-text-center {
    text-align: center
}

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

.wp-block-group {
    display: block
}

.entry-content {
    display: block
}

.wp-block-columns {
    display: block
}

.elementor-widget {
    display: block
}

.post-thumbnail {
    display: none
}

.sticky {
    display: block
}

.bypostauthor {
    display: block
}

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

.wp-caption {
    max-width: 100%
}

.alignnone {
    margin: 0
}

.aligncenter {
    display: block;
    margin: 0 auto
}

.alignleft {
    float: left;
    margin: 0 1em 1em 0
}

.alignright {
    float: right;
    margin: 0 0 1em 1em
}

/*  */
@media (max-width: 900px) {
    .k4f7-header-inner {
        grid-template-columns:auto 1fr auto
    }

    .k4f7-nav {
        display: none
    }

    .k4f7-burger {
        display: flex
    }

    .f2x8-footer-grid {
        grid-template-columns:1fr;
        gap: 1.25rem
    }

    .d7h5-grid-2, .d7h5-grid-3 {
        grid-template-columns:1fr
    }

    .f2x8-footer-bottom {
        grid-template-columns:1fr
    }

    .f2x8-footer-sections {
        grid-template-columns:1fr
    }
}

@media (max-width: 600px) {
    .a1u6-author {
        grid-template-columns:1fr
    }

    .a1u6-author-photo {
        margin: 0 auto
    }

    .h8r1-hero-content {
        padding: 3rem 1rem
    }

    .s9d5-reel {
        width: 72px
    }

    .s9d5-symbol {
        font-size: 2rem
    }

    .r3s7-widget {
        flex-wrap: wrap;
        justify-content: center;
        border-radius: 1rem
    }

    .w6j1-winner-item {
        grid-template-columns:1.5rem 1fr auto
    }

    .w6j1-time {
        display: none
    }

    .k4f7-online {
        font-size: .7rem
    }
}

@media (max-width: 400px) {
    .s9d5-reel {
        width: 64px
    }

    .s9d5-symbol {
        font-size: 1.75rem
    }
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    min-width: 320px;
}

.n9x2-wrapper,
.n9x2-container,
.n9x2-section,
.n9x2-section-inner,
main,
header,
footer {
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

@media (max-width: 768px) {

    .n9x2-container,
    .n9x2-section-inner,
    .f2x8-footer-inner,
    .k4f7-header-inner {
        width: 100%;
        max-width: 100%;
        padding-left: 14px;
        padding-right: 14px;
    }

    .h8r1-hero-content {
        width: 100%;
        max-width: 100%;
    }

    .m2v9-block {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .t3q8-table-wrap {
        width: 100%;
        overflow-x: auto;
    }

    .t3q8-table {
        min-width: 700px;
    }

    .w6j1-winner-item {
        width: 100%;
    }

    .v4p2-video-wrap {
        width: 100%;
        max-width: 100%;
    }

    .s9d5-slot-machine {
        width: 100%;
    }

    .r3s7-widget {
        width: calc(100% - 20px);
        max-width: calc(100% - 20px);
    }
}