@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Roboto:wght@300;400;500;700&display=swap');

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

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

body {
    font-family: 'Roboto', Arial, sans-serif;
    background-color: #030535;
    color: #e8eaf6;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased
}

a {
    color: #7c9ff5;
    text-decoration: none;
    transition: color .25s ease
}

a:hover {
    color: #fff
}

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

ul {
    list-style: none
}

:root {
    --c-bg: #030535;
    --c-header: #141F61;
    --c-btn-login: #141D5F;
    --c-btn-reg: #449E66;
    --c-accent: #5c80e8;
    --c-text: #e8eaf6;
    --c-text-muted: #8892b0;
    --c-gold: #f0c040;
    --c-border: #1e2d7a;
    --c-card: #0d1650;
    --c-card2: #0a1240;
    --radius: 10px;
    --radius-lg: 16px;
    --shadow: 0 4px 24px rgba(0, 0, 0, .45);
    --transition: .28s ease;
}

.x7kq2 {
    display: none
}

.wp9s1 {
    visibility: hidden;
    position: absolute;
    pointer-events: none
}

.m3r5t {
    height: 0;
    overflow: hidden;
    position: absolute
}

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

.f2k8n-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px
}

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

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

.n4hd1-logo img {
    height: 44px;
    width: auto;
    transition: opacity var(--transition)
}

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

.n4hd1-nav {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    justify-content: center
}

.n4hd1-nav a {
    color: #c5cff5;
    font-family: 'Montserrat', sans-serif;
    font-size: .82rem;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
    transition: background var(--transition), color var(--transition);
    letter-spacing: .3px
}

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

.n4hd1-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0
}

.n4hd1-online {
    font-size: .72rem;
    color: #7ce89a;
    background: rgba(68, 158, 102, .15);
    border: 1px solid rgba(68, 158, 102, .3);
    border-radius: 20px;
    padding: 4px 10px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px
}

.n4hd1-online::before {
    content: '';
    width: 7px;
    height: 7px;
    background: #3ecf6c;
    border-radius: 50%;
    display: inline-block;
    animation: blink 1.6s infinite
}

@keyframes blink {
    0%, 100% {
        opacity: 1
    }
    50% {
        opacity: .3
    }
}

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

.n4hd1-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition)
}

.n4hd1-burger.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
}

.n4hd1-burger.is-open span:nth-child(2) {
    opacity: 0
}

.n4hd1-burger.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

.n4hd1-mobile-menu {
    display: none;
    background: var(--c-header);
    padding: 16px 20px;
    border-top: 1px solid rgba(255, 255, 255, .08)
}

.n4hd1-mobile-menu.is-open {
    display: block
}

.n4hd1-mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 12px
}

.n4hd1-mobile-nav a {
    color: #c5cff5;
    font-size: .9rem;
    padding: 9px 12px;
    border-radius: 6px;
    display: block;
    transition: background var(--transition)
}

.n4hd1-mobile-nav a:hover {
    background: rgba(255, 255, 255, .1);
    color: #fff
}

/* ==========  ========== */
.btn-login {
    background: var(--c-btn-login);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: .82rem;
    padding: 8px 18px;
    border-radius: 7px;
    border: 1px solid rgba(255, 255, 255, .2);
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    cursor: pointer;
    white-space: nowrap
}

.btn-login:hover {
    background: #1a2580;
    box-shadow: 0 4px 14px rgba(20, 29, 95, .6);
    transform: translateY(-1px);
    color: #fff
}

.btn-reg {
    background: var(--c-btn-reg);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: .82rem;
    padding: 8px 18px;
    border-radius: 7px;
    border: none;
    transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
    cursor: pointer;
    white-space: nowrap
}

.btn-reg:hover {
    filter: brightness(1.12);
    box-shadow: 0 4px 16px rgba(68, 158, 102, .55);
    transform: translateY(-1px);
    color: #fff
}

.btn-cta {
    display: inline-block;
    background: var(--c-btn-reg);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 36px;
    border-radius: 10px;
    border: none;
    transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
    cursor: pointer;
    letter-spacing: .4px
}

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

/* ==========  ========== */
.q5rj8-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden
}

.q5rj8-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/cas-banner-o.png');
    background-size: cover;
    background-position: center top;
    z-index: 0
}

.q5rj8-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(3, 5, 53, .92) 45%, rgba(3, 5, 53, .55) 100%)
}

.q5rj8-hero-content {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 20px
}

.q5rj8-hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 14px;
    max-width: 600px
}

.q5rj8-hero h1 span {
    color: var(--c-gold)
}

.q5rj8-hero-sub {
    font-size: 1.05rem;
    color: #b0bcf0;
    margin-bottom: 28px;
    max-width: 480px;
    line-height: 1.65
}

.q5rj8-badge {
    display: inline-block;
    background: rgba(240, 192, 64, .15);
    border: 1px solid rgba(240, 192, 64, .4);
    color: var(--c-gold);
    font-size: .78rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
    letter-spacing: .5px;
    text-transform: uppercase
}

/* ==========  ========== */
.s1-section {
    padding: 56px 20px
}

.s1-section--alt {
    background: rgba(13, 22, 80, .5)
}

.s1-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px
}

.s1-title span {
    color: var(--c-gold)
}

.s1-sub {
    color: var(--c-text-muted);
    font-size: .93rem;
    margin-bottom: 32px
}

.s1-center {
    text-align: center
}

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

.pc3x-card {
    background: var(--c-card);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--c-border)
}

.pc3x-card--pros {
    border-top: 3px solid #3ecf6c
}

.pc3x-card--cons {
    border-top: 3px solid #e85c5c
}

.pc3x-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff
}

.pc3x-head svg {
    flex-shrink: 0
}

.pc3x-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    font-size: .9rem;
    color: #ccd4f5;
    line-height: 1.5
}

.pc3x-list li:last-child {
    border-bottom: none
}

.pc3x-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 6px
}

.pc3x-dot--plus {
    background: #3ecf6c
}

.pc3x-dot--minus {
    background: #e85c5c
}

.mt7k-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    font-size: .85rem;
    color: #7ce89a;
    background: rgba(68, 158, 102, .1);
    border: 1px solid rgba(68, 158, 102, .25);
    padding: 10px 16px;
    border-radius: 8px
}

.mt7k-info svg {
    flex-shrink: 0
}

.mt7k-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-lg);
    border: 1px solid var(--c-border)
}

.mt7k-table {
    width: 100%;
    min-width: 580px;
    border-collapse: collapse
}

.mt7k-table thead tr {
    background: #0d1650
}

.mt7k-table thead th {
    padding: 14px 18px;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-size: .8rem;
    font-weight: 600;
    color: #8892b0;
    text-transform: uppercase;
    letter-spacing: .5px;
    border-bottom: 2px solid var(--c-border)
}

.mt7k-table tbody tr {
    transition: background var(--transition);
    border-bottom: 1px solid rgba(30, 45, 122, .5)
}

.mt7k-table tbody tr:hover {
    background: rgba(92, 128, 232, .08)
}

.mt7k-table tbody td {
    padding: 14px 18px;
    font-size: .9rem;
    color: #ccd4f5;
    vertical-align: middle
}

.mt7k-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .8rem;
    color: #3ecf6c;
    font-weight: 500
}

.mt7k-status::before {
    content: '';
    width: 7px;
    height: 7px;
    background: #3ecf6c;
    border-radius: 50%;
    animation: blink 1.6s infinite
}

.mt7k-link {
    color: #ffffff;
    font-weight: 500;
    transition: color var(--transition)
}

.mt7k-link:hover {
    color: #fff
}

.mt7k-badge {
    font-size: .72rem;
    background: rgba(240, 192, 64, .15);
    color: var(--c-gold);
    border: 1px solid rgba(240, 192, 64, .3);
    padding: 2px 8px;
    border-radius: 10px
}

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

.t8nm-card {
    background: var(--c-card);
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid var(--c-border);
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition)
}

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

.t8nm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px
}

.t8nm-card:nth-child(1)::before {
    background: linear-gradient(90deg, #f0c040, #e87a30)
}

.t8nm-card:nth-child(2)::before {
    background: linear-gradient(90deg, #449e66, #2ecc71)
}

.t8nm-card:nth-child(3)::before {
    background: linear-gradient(90deg, #5c80e8, #9b59b6)
}

.t8nm-label {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: var(--c-text-muted);
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600
}

.t8nm-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.3
}

.t8nm-desc {
    font-size: .87rem;
    color: #aab4e0;
    line-height: 1.6;
    margin-bottom: 18px
}

.t8nm-prize {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--c-gold);
    margin-bottom: 6px
}

.t8nm-prize-label {
    font-size: .75rem;
    color: var(--c-text-muted);
    margin-bottom: 16px
}

.t8nm-timer-label {
    font-size: .75rem;
    color: var(--c-text-muted);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px
}

.t8nm-timer {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #7ce89a;
    letter-spacing: 1px
}

.t8nm-slider-wrap {
    overflow: hidden
}

.t8nm-slider {
    display: flex;
    transition: transform .4s ease;
    will-change: transform
}

.t8nm-slider .t8nm-card {
    min-width: 85vw;
    flex-shrink: 0
}

.t8nm-dots {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 16px
}

.t8nm-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--c-border);
    border: none;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition)
}

.t8nm-dot.active {
    background: var(--c-btn-reg);
    transform: scale(1.25)
}

.wg4j1-wrap {
    display: grid;
    grid-template-columns:1fr auto 1fr;
    align-items: center;
    gap: 32px
}

.wg4j1-canvas-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center
}

.wg4j1-pointer {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 26px solid var(--c-gold);
    z-index: 10;
    filter: drop-shadow(0 2px 6px rgba(240, 192, 64, .7))
}

#wg4j1-canvas {
    border-radius: 50%;
    box-shadow: 0 0 0 6px var(--c-border), 0 0 40px rgba(92, 128, 232, .35);
    display: block
}

.wg4j1-info {
    text-align: center
}

.wg4j1-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px
}

.wg4j1-info p {
    color: #aab4e0;
    font-size: .9rem;
    line-height: 1.65;
    margin-bottom: 20px
}

.wg4j1-result {
    margin-top: 20px;
    padding: 18px;
    background: var(--c-card);
    border-radius: var(--radius);
    border: 1px solid var(--c-border);
    text-align: center;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.wg4j1-result.win {
    border-color: rgba(68, 158, 102, .5);
    background: rgba(68, 158, 102, .1)
}

.wg4j1-result.lose {
    border-color: rgba(232, 92, 92, .3);
    background: rgba(232, 92, 92, .08)
}

.wg4j1-result-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    margin-bottom: 8px
}

.wg4j1-result-sub {
    font-size: .83rem;
    color: var(--c-text-muted)
}

/**/
.fq9v2-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 860px;
    margin: 0 auto
}

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

.fq9v2-item.open {
    border-color: var(--c-accent)
}

.fq9v2-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    cursor: pointer;
    user-select: none;
    gap: 12px
}

.fq9v2-q-text {
    font-family: 'Montserrat', sans-serif;
    font-size: .97rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.4
}

.fq9v2-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .07);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition), background var(--transition)
}

.fq9v2-item.open .fq9v2-icon {
    transform: rotate(45deg);
    background: var(--c-accent)
}

.fq9v2-icon svg {
    display: block
}

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

.fq9v2-a-inner {
    padding: 0 22px 18px;
    color: #aab4e0;
    font-size: .92rem;
    line-height: 1.7
}

.fq9v2-item.open .fq9v2-a {
    max-height: 300px
}

.cn8p4-block {
    background: var(--c-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--c-border);
    padding: 32px 36px
}

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

.cn8p4-author-ava {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--c-header);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #7c9ff5;
    border: 2px solid var(--c-border)
}

.cn8p4-author-info {
    font-size: .8rem;
    color: var(--c-text-muted)
}

.cn8p4-author-name {
    font-weight: 600;
    color: #c5cff5;
    font-size: .88rem
}

.cn8p4-block h1, .cn8p4-block h2, .cn8p4-block h3, .cn8p4-block h4 {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    margin: 22px 0 10px;
    line-height: 1.3
}

.cn8p4-block h1 {
    font-size: 1.6rem
}

.cn8p4-block h2 {
    font-size: 1.3rem
}

.cn8p4-block h3 {
    font-size: 1.1rem;
    color: #c5cff5
}

.cn8p4-block p {
    color: #aab4e0;
    line-height: 1.75;
    margin-bottom: 12px
}

.cn8p4-block ul, .cn8p4-block ol {
    margin: 10px 0 14px 20px;
    color: #aab4e0;
    line-height: 1.75
}

.cn8p4-block ul li {
    list-style: disc
}

.cn8p4-block ol li {
    list-style: decimal
}

.cn8p4-block li {
    margin-bottom: 4px
}

.cn8p4-block a {
    color: #7c9ff5
}

.cn8p4-block a:hover {
    color: #fff
}

.cn8p4-block table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: .9rem
}

.cn8p4-block table th {
    background: #0d1650;
    color: #fff;
    padding: 10px 14px;
    text-align: left;
    border: 1px solid var(--c-border);
    font-family: 'Montserrat', sans-serif
}

.cn8p4-block table td {
    padding: 10px 14px;
    border: 1px solid var(--c-border);
    color: #aab4e0
}

.cn8p4-block table tr:nth-child(even) td {
    background: rgba(255, 255, 255, .03)
}

.cn8p4-block blockquote {
    border-left: 3px solid var(--c-accent);
    padding: 10px 16px;
    background: rgba(92, 128, 232, .08);
    margin: 14px 0;
    border-radius: 0 8px 8px 0;
    color: #c5cff5;
    font-style: italic
}

.cn8p4-block strong {
    color: #e8eaf6;
    font-weight: 600
}

.cn8p4-block hr {
    border: none;
    border-top: 1px solid var(--c-border);
    margin: 20px 0
}

/* ==========  ========== */
.f7qm3-footer {
    background: var(--c-header);
    padding: 40px 20px 20px;
    border-top: 2px solid rgba(255, 255, 255, .07)
}

.f7qm3-inner {
    max-width: 1280px;
    margin: 0 auto
}

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

.f7qm3-logo img {
    height: 40px;
    margin-bottom: 10px
}

.f7qm3-desc {
    font-size: .82rem;
    color: #6e7db0;
    max-width: 260px;
    line-height: 1.6
}

.f7qm3-nav-cols {
    display: grid;
    grid-template-columns:repeat(2, auto);
    gap: 8px 32px;
    justify-content: center
}

.f7qm3-nav-cols a {
    font-size: .84rem;
    color: #8892b0;
    transition: color var(--transition)
}

.f7qm3-nav-cols a:hover {
    color: #fff
}

.f7qm3-contact {
    font-size: .82rem;
    color: #6e7db0;
    line-height: 1.8
}

.f7qm3-contact a {
    color: #7c9ff5
}

.f7qm3-contact a:hover {
    color: #fff
}

.f7qm3-contact strong {
    color: #9ba8d0;
    display: block;
    margin-bottom: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .5px
}

.f7qm3-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, .08);
    margin: 20px 0
}

.f7qm3-logos-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 14px
}

.f7qm3-logo-badge {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: .72rem;
    color: #8892b0;
    font-weight: 500;
    white-space: nowrap;
    transition: background var(--transition)
}

.f7qm3-logo-badge:hover {
    background: rgba(255, 255, 255, .12);
    color: #c5cff5
}

.f7qm3-legal {
    font-size: .75rem;
    color: #4e5a85;
    line-height: 1.7;
    margin-bottom: 14px
}

.f7qm3-copy {
    font-size: .78rem;
    color: #5a6a9a;
    text-align: center;
    padding-top: 10px
}

.f7qm3-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px
}

.f7qm3-lic {
    font-size: .75rem;
    color: #4e5a85;
    display: flex;
    gap: 16px;
    flex-wrap: wrap
}

.f7qm3-lic span {
    background: rgba(255, 255, 255, .05);
    padding: 3px 10px;
    border-radius: 4px
}

.wdg5p-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: linear-gradient(90deg, #0d1650 0%, #141F61 100%);
    border-top: 2px solid rgba(92, 128, 232, .4);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, .5)
}

.wdg5p-text {
    font-size: .85rem;
    color: #aab4e0;
    flex: 1
}

.wdg5p-text strong {
    color: var(--c-gold);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    display: block;
    margin-bottom: 2px
}

.wdg5p-btn {
    background: var(--c-btn-reg);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: .88rem;
    padding: 11px 28px;
    border-radius: 8px;
    white-space: nowrap;
    transition: filter var(--transition), transform var(--transition), box-shadow var(--transition);
    display: inline-block;
    text-decoration: none
}

.wdg5p-btn:hover {
    filter: brightness(1.12);
    box-shadow: 0 4px 18px rgba(68, 158, 102, .55);
    transform: translateY(-1px);
    color: #fff
}

.wdg5p-close {
    background: none;
    border: none;
    color: #6e7db0;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 4px;
    line-height: 1;
    transition: color var(--transition);
    flex-shrink: 0
}

.wdg5p-close:hover {
    color: #fff
}

.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .55s ease, transform .55s ease
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0)
}

/* ==========  ========== */
@media (max-width: 900px) {
    .n4hd1-inner {
        grid-template-columns:auto auto;
        grid-template-rows:auto auto
    }

    .n4hd1-nav {
        display: none
    }

    .n4hd1-burger {
        display: flex
    }

    .n4hd1-actions .btn-login, .n4hd1-actions .btn-reg {
        display: flex
    }

    .pc3x-grid {
        grid-template-columns:1fr
    }

    .t8nm-grid {
        display: none
    }

    .t8nm-slider-wrap {
        display: block
    }

    .t8nm-dots {
        display: flex
    }

    .wg4j1-wrap {
        grid-template-columns:1fr;
        justify-items: center
    }

    .wg4j1-info {
        order: -1
    }

    .f7qm3-top {
        grid-template-columns:1fr;
        gap: 20px
    }

    .f7qm3-nav-cols {
        justify-content: flex-start
    }

    .q5rj8-hero h1 {
        font-size: 1.8rem
    }

    .cn8p4-block {
        padding: 20px
    }
}

@media (max-width: 600px) {
    .n4hd1-online {
        display: none
    }

    .q5rj8-hero h1 {
        font-size: 1.5rem
    }

    .s1-title {
        font-size: 1.3rem
    }

    .wdg5p-text .sub-text {
        display: none
    }

    #wg4j1-canvas {
        width: 240px !important;
        height: 240px !important
    }

    .f7qm3-bottom {
        flex-direction: column;
        text-align: center
    }
}

.wpc-block {
    display: none;
    width: 0;
    height: 0;
    overflow: hidden
}

input[name="wp_nonce"], input[name="_wpnonce"] {
    position: absolute;
    left: -9999px
}

.elementor-section, .elementor-column, .elementor-widget {
    display: contents
}

.e-con {
    display: contents
}

@media (max-width: 900px) {

    .s1-section {
        padding: 48px 16px;
    }

    .s1-title {
        font-size: 1.55rem;
        line-height: 1.3;
        text-align: center;
        margin-bottom: 12px;
    }

    .s1-sub {
        font-size: .92rem;
        line-height: 1.6;
        text-align: center;
        margin-bottom: 24px;
    }

    .t8nm-grid {
        display: grid !important;
        grid-template-columns:1fr;
        gap: 16px;
    }

    .t8nm-card {
        padding: 20px 18px;
        border-radius: 18px;
        min-width: 0;
        overflow: hidden;
    }

    .t8nm-label {
        font-size: .7rem;
        margin-bottom: 10px;
    }

    .t8nm-title {
        font-size: 1.1rem;
        line-height: 1.4;
        margin-bottom: 12px;
    }

    .t8nm-desc {
        font-size: .88rem;
        line-height: 1.7;
        margin-bottom: 18px;
        color: #c5cff5;
    }

    .t8nm-prize {
        font-size: 1.45rem;
        line-height: 1.2;
        word-break: break-word;
    }

    .t8nm-prize-label {
        font-size: .74rem;
        margin-bottom: 14px;
    }

    .t8nm-timer-label {
        font-size: .74rem;
    }

    .t8nm-timer {
        font-size: 1rem;
        letter-spacing: .5px;
    }

    .t8nm-card:hover {
        transform: none;
    }
}

@media (max-width: 600px) {

    .s1-section {
        padding: 42px 14px;
    }

    .s1-title {
        font-size: 1.32rem;
    }

    .s1-sub {
        font-size: .86rem;
        margin-bottom: 20px;
    }

    .t8nm-grid {
        gap: 14px;
    }

    .t8nm-card {
        padding: 18px 16px;
        border-radius: 16px;
    }

    .t8nm-title {
        font-size: 1rem;
    }

    .t8nm-desc {
        font-size: .82rem;
        line-height: 1.65;
    }

    .t8nm-prize {
        font-size: 1.2rem;
    }

    .t8nm-timer {
        font-size: .92rem;
    }
}