:root {
    --bg: #16182B;
    --bg2: #1F2137;
    --accent: #00DCF5;
    --accent-dark: #00b8d0;
    --text: #e8eaf0;
    --text-muted: #9fa3b8;
    --text-dark: #b0b5cc;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 8px 32px rgba(0, 220, 245, 0.08);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
    --transition: 0.25s ease;
    --font: 'Montserrat', 'Inter', Arial, sans-serif
}

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

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

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden
}

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

a {
    color: var(--accent);
    text-decoration: none;
    transition: color var(--transition)
}

a:hover {
    color: var(--accent-dark)
}

ul {
    list-style: none
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--text)
}

.p9r3t-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px
}

.k4m8n-header {
    background: var(--bg2);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5)
}

.k4m8n-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    gap: 16px
}

.f2d6j-logo {
    flex-shrink: 0
}

.f2d6j-logo img {
    height: 44px;
    width: auto
}

.w7q1s-nav {
    display: flex;
    align-items: center;
    gap: 4px
}

.w7q1s-nav a {
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 8px;
    transition: color var(--transition), background var(--transition)
}

.w7q1s-nav a:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.06)
}

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

.q8x5b-online {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    padding: 5px 12px;
    white-space: nowrap
}

.q8x5b-online__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    animation: pulse-dot 1.8s infinite
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1)
    }
    50% {
        opacity: 0.6;
        transform: scale(0.8)
    }
}

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

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

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

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

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

.b8n2c-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.875rem;
    line-height: 1;
    padding: 11px 22px;
    cursor: pointer;
    border: none;
    transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
    white-space: nowrap;
    text-decoration: none
}

.b8n2c-btn--login {
    background: var(--bg2);
    color: var(--text);
    border: 1.5px solid rgba(255, 255, 255, 0.12)
}

.b8n2c-btn--login:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.22);
    transform: translateY(-1px)
}

.b8n2c-btn--register {
    background: var(--accent);
    color: #0d1020;
    border: 1.5px solid var(--accent)
}

.b8n2c-btn--register:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: #0d1020;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 220, 245, 0.35)
}

.b8n2c-btn--accent {
    background: var(--accent);
    color: #0d1020
}

.b8n2c-btn--accent:hover {
    background: var(--accent-dark);
    color: #0d1020;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 220, 245, 0.35)
}

.b8n2c-btn--dark {
    background: var(--bg2);
    color: var(--text);
    border: 1.5px solid rgba(255, 255, 255, 0.1)
}

.b8n2c-btn--dark:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
    transform: translateY(-1px)
}

.b8n2c-btn--lg {
    padding: 15px 32px;
    font-size: 1rem;
    border-radius: 10px
}

.b8n2c-btn--sm {
    padding: 8px 16px;
    font-size: 0.8rem
}

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

.r3k7p-hero__bg {
    position: absolute;
    inset: 0;
    background-image: url('/images/up-banner.jpg');
    background-size: cover;
    background-position: center;
    filter: brightness(0.35)
}

.r3k7p-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(22, 24, 43, 0.92) 0%, rgba(0, 220, 245, 0.08) 100%)
}

.r3k7p-hero__content {
    position: relative;
    z-index: 2;
    max-width: 620px
}

.r3k7p-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 220, 245, 0.12);
    border: 1px solid rgba(0, 220, 245, 0.3);
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 20px;
    letter-spacing: 0.04em
}

.r3k7p-hero__title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    color: #fff
}

.r3k7p-hero__title span {
    color: var(--accent)
}

.r3k7p-hero__desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 500px
}

.r3k7p-hero__actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap
}

.r3k7p-hero__stats {
    display: flex;
    gap: 32px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08)
}

.r3k7p-hero__stat strong {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent)
}

.r3k7p-hero__stat span {
    font-size: 0.8rem;
    color: var(--text-muted)
}

.e9h2q-section {
    padding: 72px 0
}

.e9h2q-section--alt {
    background: rgba(31, 33, 55, 0.4)
}

.e9h2q-section-head {
    text-align: center;
    margin-bottom: 44px
}

.e9h2q-section-head h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    margin-bottom: 12px
}

.e9h2q-section-head p {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 520px;
    margin: 0 auto
}

.e9h2q-section-head__label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
    background: rgba(0, 220, 245, 0.08);
    padding: 4px 14px;
    border-radius: 20px
}

.t6m1z-grid {
    display: flex;
    gap: 24px;
    flex-wrap: nowrap
}

.t6m1z-card {
    background: var(--bg2);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: var(--shadow-card);
    transition: transform var(--transition), box-shadow var(--transition)
}

.t6m1z-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(0, 220, 245, 0.15)
}

.t6m1z-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 220, 245, 0.1);
    color: var(--accent);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    margin-bottom: 16px;
    width: fit-content
}

.t6m1z-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px
}

.t6m1z-card__desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    flex: 1
}

.t6m1z-card__prize {
    margin-bottom: 20px
}

.t6m1z-card__prize-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px
}

.t6m1z-card__prize-amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: #f0c040
}

.t6m1z-card__timer {
    display: flex;
    gap: 8px;
    margin-bottom: 20px
}

.t6m1z-card__time-unit {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 8px 12px;
    text-align: center;
    min-width: 56px
}

.t6m1z-card__time-unit strong {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--accent);
    font-variant-numeric: tabular-nums
}

.t6m1z-card__time-unit span {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em
}

.u2r8p-appinfo {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap
}

.u2r8p-appinfo__table-wrap {
    flex: 1;
    min-width: 280px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch
}

.u2r8p-appinfo__table {
    width: 100%;
    border-collapse: collapse;
    min-width: 420px
}

.u2r8p-appinfo__table th {
    background: rgba(0, 220, 245, 0.08);
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 700;
    text-align: left;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    letter-spacing: 0.04em
}

.u2r8p-appinfo__table td {
    padding: 11px 16px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 0.875rem;
    color: var(--text);
    vertical-align: top
}

.u2r8p-appinfo__table tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.03)
}

.u2r8p-appinfo__table td:first-child {
    color: var(--text-muted);
    font-weight: 600;
    white-space: nowrap
}

.u2r8p-appinfo__downloads {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
    min-width: 200px
}

.u2r8p-appinfo__dl-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg2);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 13px 20px;
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    font-size: 0.875rem;
    transition: border-color var(--transition), background var(--transition), transform var(--transition)
}

.u2r8p-appinfo__dl-btn:hover {
    border-color: var(--accent);
    background: rgba(0, 220, 245, 0.05);
    color: var(--text);
    transform: translateX(3px)
}

.u2r8p-appinfo__dl-btn svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px
}

.u2r8p-appinfo__dl-btn small {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 400
}

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

.c4s8v-gamecard {
    background: var(--bg2);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition), box-shadow var(--transition)
}

.c4s8v-gamecard:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5)
}

.c4s8v-gamecard:hover .c4s8v-gamecard__overlay {
    opacity: 1
}

.c4s8v-gamecard__thumb {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1d35, #2a2d50)
}

.c4s8v-gamecard__thumb-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem
}

.c4s8v-gamecard__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 220, 245, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition)
}

.c4s8v-gamecard__body {
    padding: 16px
}

.c4s8v-gamecard__name {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px
}

.c4s8v-gamecard__provider {
    font-size: 0.75rem;
    color: var(--text-muted)
}

.c4s8v-gamecard__actions {
    padding: 0 16px 16px
}

.j6o9i-wheel-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px
}

.j6o9i-wheel-wrap__canvas-wrap {
    position: relative;
    width: 300px;
    height: 300px;
    flex-shrink: 0
}

#j6o9i-canvas {
    display: block;
    filter: drop-shadow(0 0 24px rgba(0, 220, 245, 0.2))
}

.j6o9i-wheel-wrap__pointer {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 26px solid var(--accent);
    filter: drop-shadow(0 2px 6px rgba(0, 220, 245, 0.6));
    z-index: 2
}

.j6o9i-wheel-wrap__info {
    text-align: center;
    max-width: 380px
}

.j6o9i-wheel-wrap__info h3 {
    font-size: 1.4rem;
    margin-bottom: 8px
}

.j6o9i-wheel-wrap__info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 24px
}

.j6o9i-result {
    display: none;
    padding: 20px 28px;
    border-radius: var(--radius);
    text-align: center;
    margin-top: 16px
}

.j6o9i-result--win {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.3)
}

.j6o9i-result--lose {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.25)
}

.j6o9i-result__title {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 6px
}

.j6o9i-result--win .j6o9i-result__title {
    color: #22c55e
}

.j6o9i-result--lose .j6o9i-result__title {
    color: #ef4444
}

.j6o9i-result__desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 16px
}

.j6o9i-result--win .j6o9i-result__desc {
    color: rgba(34, 197, 94, 0.8)
}

.k8r3q-content-wrap {
    max-width: 880px;
    margin: 0 auto
}

.k8r3q-h1 {
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    margin-bottom: 28px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08)
}

.j5t9m-review h2 {
    font-size: 1.4rem;
    margin: 28px 0 14px;
    color: var(--text)
}

.j5t9m-review h3 {
    font-size: 1.15rem;
    margin: 22px 0 10px;
    color: var(--text)
}

.j5t9m-review p {
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.75
}

.j5t9m-review ul, .j5t9m-review ol {
    color: var(--text-muted);
    margin: 0 0 16px 20px;
    line-height: 1.75
}

.j5t9m-review ul li {
    list-style: disc;
    margin-bottom: 6px
}

.j5t9m-review ol li {
    list-style: decimal;
    margin-bottom: 6px
}

.j5t9m-review table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    border-radius: var(--radius);
    overflow: hidden;
    display: block;
    overflow-x: auto
}

.j5t9m-review table th {
    background: rgba(0, 220, 245, 0.08);
    color: var(--accent);
    padding: 10px 14px;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.1)
}

.j5t9m-review table td {
    padding: 9px 14px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    color: var(--text-muted)
}

.j5t9m-review a {
    color: var(--accent)
}

.j5t9m-review strong {
    color: var(--text);
    font-weight: 700
}

.j5t9m-review blockquote {
    border-left: 3px solid var(--accent);
    padding: 12px 20px;
    background: rgba(0, 220, 245, 0.05);
    border-radius: 0 8px 8px 0;
    margin: 20px 0;
    color: var(--text-muted);
    font-style: italic
}

.n4t6v-author {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg2);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-bottom: 32px;
    border: 1px solid rgba(255, 255, 255, 0.07)
}

.n4t6v-author__avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 800;
    color: #0d1020;
    flex-shrink: 0
}

.n4t6v-author__name {
    font-weight: 700;
    margin-bottom: 2px
}

.n4t6v-author__role {
    font-size: 0.8rem;
    color: var(--text-muted)
}

.n4t6v-author a {
    color: var(--accent);
    font-size: 0.8rem
}

.q2p7r-faq {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.q2p7r-faq__item {
    background: var(--bg2);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color var(--transition)
}

.q2p7r-faq__item.active {
    border-color: rgba(0, 220, 245, 0.3)
}

.q2p7r-faq__q {
    width: 100%;
    background: none;
    border: none;
    color: var(--text);
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 600;
    text-align: left;
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: background var(--transition)
}

.q2p7r-faq__q:hover {
    background: rgba(255, 255, 255, 0.03)
}

.q2p7r-faq__icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(0, 220, 245, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform var(--transition), background var(--transition)
}

.q2p7r-faq__item.active .q2p7r-faq__icon {
    transform: rotate(45deg);
    background: var(--accent)
}

.q2p7r-faq__icon svg {
    width: 14px;
    height: 14px;
    fill: var(--accent)
}

.q2p7r-faq__item.active .q2p7r-faq__icon svg {
    fill: #0d1020
}

.q2p7r-faq__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding var(--transition)
}

.q2p7r-faq__item.active .q2p7r-faq__a {
    max-height: 400px
}

.q2p7r-faq__a-inner {
    padding: 0 24px 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.75
}

.l3n6e-footer {
    background: var(--bg2);
    padding: 56px 0 32px;
    margin-top: auto
}

.l3n6e-footer__top {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07)
}

.l3n6e-footer__logo img {
    height: 40px;
    margin-bottom: 16px
}

.l3n6e-footer__desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    max-width: 240px;
    line-height: 1.7
}

.l3n6e-footer__col h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 16px
}

.l3n6e-footer__col ul {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.l3n6e-footer__col a {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: color var(--transition)
}

.l3n6e-footer__col a:hover {
    color: var(--text)
}

.l3n6e-footer__payments {
    padding: 28px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07)
}

.l3n6e-footer__payments h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 14px;
    font-weight: 700
}

.l3n6e-footer__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center
}

.l3n6e-footer__badge {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted)
}

.l3n6e-footer__providers {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07)
}

.l3n6e-footer__providers h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 14px;
    font-weight: 700
}

.l3n6e-footer__bottom {
    padding-top: 24px
}

.l3n6e-footer__legal {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
    opacity: 0.7
}

.l3n6e-footer__copy {
    font-size: 0.78rem;
    color: var(--text-muted);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px
}

.h8k1w-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 500;
    background: linear-gradient(90deg, #1F2137 0%, #0f1025 100%);
    border-top: 2px solid var(--accent);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.5)
}

.h8k1w-widget__text {
    font-size: 0.875rem;
    color: var(--text-muted)
}

.h8k1w-widget__bonus {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent)
}

.h8k1w-widget__close {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1;
    padding: 4px;
    margin-left: 8px;
    opacity: 0.6;
    transition: opacity var(--transition)
}

.h8k1w-widget__close:hover {
    opacity: 1
}

.x3p7k-slider {
    position: relative;
    overflow: hidden
}

.x3p7k-slider-track {
    display: flex;
    transition: transform 0.4s ease;
    gap: 20px
}

.x3p7k-slider-nav {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 20px
}

.x3p7k-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
    padding: 0
}

.x3p7k-slider-dot.active {
    background: var(--accent);
    transform: scale(1.3)
}

body.widget-closed .h8k1w-widget {
    display: none
}

body {
    padding-bottom: 70px
}

body.widget-closed {
    padding-bottom: 0
}

@media (max-width: 1024px) {
    .d7a2q-games-grid {
        grid-template-columns:repeat(2, 1fr)
    }

    .t6m1z-grid {
        gap: 16px
    }
}

@media (max-width: 768px) {
    .w7q1s-nav {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg2);
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 8px;
        border-bottom: 2px solid var(--accent);
        z-index: 99;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5)
    }

    .w7q1s-nav.active {
        display: flex
    }

    .v5x9l-burger {
        display: flex
    }

    .k4m8n-header__inner {
        height: 60px
    }

    .f2d6j-logo img {
        height: 36px
    }

    .t6m1z-grid {
        flex-direction: column
    }

    .u2r8p-appinfo {
        flex-direction: column
    }

    .d7a2q-games-grid {
        grid-template-columns:1fr
    }

    .r3k7p-hero {
        min-height: 380px;
        padding: 60px 0 40px
    }

    .r3k7p-hero__stats {
        gap: 20px;
        flex-wrap: wrap
    }

    .l3n6e-footer__top {
        gap: 28px
    }

    .x3p7k-slider-nav {
        display: flex
    }

    .q8x5b-online {
        display: none
    }

    .h8k1w-widget {
        flex-direction: column;
        gap: 10px;
        text-align: center
    }

    .e9h2q-section {
        padding: 48px 0
    }

    .j6o9i-wheel-wrap {
        flex-direction: column
    }

    .j6o9i-wheel-wrap__canvas-wrap {
        width: 260px;
        height: 260px
    }
}

@media (max-width: 480px) {
    .b8n2c-btn--lg {
        padding: 13px 22px;
        font-size: 0.9rem
    }

    .r3k7p-hero__title {
        font-size: 1.75rem
    }

    .j6o9i-wheel-wrap__canvas-wrap {
        width: 220px;
        height: 220px
    }

    #j6o9i-canvas {
        width: 220px !important;
        height: 220px !important
    }

    .k8r3q-h1 {
        font-size: 1.2rem
    }
}

.d3q9r-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 220, 245, 0.2), transparent);
    margin: 0
}

.p1x4z-hidden {
    display: none !important
}

.a7f2m-spacer {
    height: 40px
}

.y6b3n-glow {
    color: var(--accent);
    text-shadow: 0 0 20px rgba(0, 220, 245, 0.4)
}

.w9k5j-tag {
    display: inline-block;
    background: rgba(0, 220, 245, 0.08);
    border: 1px solid rgba(0, 220, 245, 0.2);
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 20px;
    letter-spacing: 0.05em
}

.z2n8c-license {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--text-muted)
}

.z2n8c-license::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e
}

.yjhgd {
    max-width: 1060px;
    margin: 42px auto;
    padding: 38px;
    background: linear-gradient(180deg, rgba(31, 33, 55, .96), rgba(22, 24, 43, .98));
    border: 1px solid rgba(0, 220, 245, .22);
    border-radius: 22px;
    box-shadow: 0 14px 46px rgba(0, 0, 0, .45), 0 0 0 1px rgba(255, 255, 255, .03);
    color: var(--text);
    overflow: hidden;
}

.yjhgd * {
    max-width: 100%;
}

.yjhgd h1,
.yjhgd h2,
.yjhgd h3 {
    color: var(--text);
    line-height: 1.25;
    overflow-wrap: break-word;
}

.yjhgd h1 {
    font-size: clamp(1.65rem, 4vw, 2.55rem);
    margin: 0 0 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(0, 220, 245, .18);
}

.yjhgd h2 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    margin: 34px 0 16px;
    color: var(--accent);
}

.yjhgd p {
    margin: 0 0 18px;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    overflow-wrap: break-word;
}

.yjhgd a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.yjhgd ul,
.yjhgd ol {
    margin: 0 0 20px 22px;
    padding: 0;
    color: var(--text-muted);
}

.yjhgd li {
    margin-bottom: 8px;
    line-height: 1.7;
    overflow-wrap: break-word;
}

.yjhgd img,
.yjhgd video,
.yjhgd iframe {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 16px;
}

.yjhgd table {
    width: 100%;
    display: block;
    overflow-x: auto;
    border-collapse: collapse;
    margin: 24px 0;
    border-radius: 14px;
    border: 1px solid rgba(0, 220, 245, .18);
}

.yjhgd th,
.yjhgd td {
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, .08);
    color: var(--text-muted);
    vertical-align: top;
}

.yjhgd th {
    color: var(--accent);
    background: rgba(0, 220, 245, .08);
}

.yjhgd blockquote {
    margin: 24px 0;
    padding: 16px 20px;
    background: rgba(0, 220, 245, .06);
    border-left: 4px solid var(--accent);
    border-radius: 0 14px 14px 0;
    color: var(--text-muted);
}

.yjhgd code,
.yjhgd pre {
    max-width: 100%;
    overflow-x: auto;
    white-space: pre-wrap;
    word-break: break-word;
}

.yjhgd strong,
.yjhgd b {
    color: var(--text);
}

@media (max-width: 768px) {
    .yjhgd {
        margin: 24px 12px;
        padding: 22px 16px;
        border-radius: 18px;
    }

    .yjhgd h1 {
        font-size: 1.45rem;
        margin-bottom: 20px;
    }

    .yjhgd h2 {
        font-size: 1.18rem;
        margin: 28px 0 14px;
    }

    .yjhgd p,
    .yjhgd li {
        font-size: .92rem;
        line-height: 1.72;
    }

    .yjhgd th,
    .yjhgd td {
        padding: 10px;
        font-size: .82rem;
    }
}

@media (max-width: 480px) {
    .yjhgd {
        margin: 18px 10px;
        padding: 18px 14px;
        border-radius: 16px;
    }

    .yjhgd h1 {
        font-size: 1.28rem;
    }

    .yjhgd h2 {
        font-size: 1.08rem;
    }

    .yjhgd p,
    .yjhgd li {
        font-size: .87rem;
    }

    .yjhgd a {
        word-break: break-all;
    }
}

@media (max-width: 768px) {

    .x3p7k-slider {
        overflow: hidden;
        margin: 0 -16px;
    }

    .d7a2q-games-grid.x3p7k-slider-track {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 14px;
        padding: 0 16px 12px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        transform: none !important;
    }

    .d7a2q-games-grid.x3p7k-slider-track::-webkit-scrollbar {
        display: none;
    }

    .d7a2q-games-grid .c4s8v-gamecard {
        flex: 0 0 280px;
        width: 280px;
        min-width: 280px;
        scroll-snap-align: start;
    }

    .c4s8v-gamecard__thumb {
        height: 180px;
    }

    .c4s8v-gamecard__thumb-inner {
        font-size: 56px;
    }

    .c4s8v-gamecard__body {
        padding: 14px;
    }

    .c4s8v-gamecard__name {
        font-size: 16px;
    }

    .c4s8v-gamecard__actions {
        padding: 0 14px 14px;
    }

    .c4s8v-gamecard__actions .b8n2c-btn {
        width: 100%;
        justify-content: center;
    }

    .x3p7k-slider-nav {
        display: flex;
        justify-content: center;
        margin-top: 16px;
    }

    .e9h2q-section-head {
        margin-bottom: 24px;
    }

    .e9h2q-section-head h2 {
        font-size: 28px;
        line-height: 1.2;
    }

    .e9h2q-section-head p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {

    .d7a2q-games-grid .c4s8v-gamecard {
        flex: 0 0 240px;
        width: 240px;
        min-width: 240px;
    }

    .c4s8v-gamecard__thumb {
        height: 160px;
    }

    .c4s8v-gamecard__thumb-inner {
        font-size: 48px;
    }

    .e9h2q-section-head h2 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    #app.e9h2q-section {
        padding: 44px 0;
        overflow: hidden;
    }

    #app .p9r3t-container {
        padding-left: 14px;
        padding-right: 14px;
    }

    #app .e9h2q-section-head {
        margin-bottom: 24px;
        text-align: center;
    }

    #app .e9h2q-section-head__label {
        font-size: .68rem;
        margin-bottom: 8px;
    }

    #app .e9h2q-section-head h2 {
        font-size: 1.55rem;
        line-height: 1.2;
        margin-bottom: 10px;
    }

    #app .e9h2q-section-head p {
        font-size: .88rem;
        line-height: 1.55;
    }

    #app .u2r8p-appinfo {
        display: flex;
        flex-direction: column;
        gap: 18px;
        width: 100%;
    }

    #app .u2r8p-appinfo__table-wrap {
        width: 100%;
        min-width: 0;
        overflow-x: visible;
        border-radius: 14px;
    }

    #app .u2r8p-appinfo__table {
        width: 100%;
        min-width: 0;
        display: block;
    }

    #app .u2r8p-appinfo__table thead {
        display: none;
    }

    #app .u2r8p-appinfo__table tbody,
    #app .u2r8p-appinfo__table tr,
    #app .u2r8p-appinfo__table td {
        display: block;
        width: 100%;
    }

    #app .u2r8p-appinfo__table tr {
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

    #app .u2r8p-appinfo__table tr:last-child {
        border-bottom: 0;
    }

    #app .u2r8p-appinfo__table td {
        border: 0;
        padding: 2px 0;
        white-space: normal;
        overflow-wrap: anywhere;
        word-break: normal;
    }

    #app .u2r8p-appinfo__table td:first-child {
        font-size: .72rem;
        color: var(--text-muted);
        text-transform: uppercase;
        letter-spacing: .04em;
        margin-bottom: 2px;
    }

    #app .u2r8p-appinfo__table td:last-child {
        font-size: .9rem;
        font-weight: 700;
        color: var(--text);
    }

    #app .u2r8p-appinfo__downloads {
        width: 100%;
        min-width: 0;
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    #app .u2r8p-appinfo__dl-btn {
        width: 100%;
        min-height: 56px;
        justify-content: flex-start;
        padding: 13px 14px;
        border-radius: 12px;
    }

    #app .u2r8p-appinfo__dl-btn svg {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
    }

    #app .u2r8p-appinfo__dl-btn div {
        min-width: 0;
        overflow-wrap: anywhere;
    }

    #app .u2r8p-appinfo__dl-btn small {
        font-size: .64rem;
    }
}

@media (max-width: 420px) {
    #app .e9h2q-section-head h2 {
        font-size: 1.3rem;
    }

    #app .e9h2q-section-head p {
        font-size: .82rem;
    }

    #app .u2r8p-appinfo__table td:last-child {
        font-size: .84rem;
    }

    #app .u2r8p-appinfo__dl-btn {
        min-height: 52px;
        font-size: .84rem;
    }
}