:root {
    --clr-bg: #111111;
    --clr-nav: #2b2b2b;
    --clr-gold: #ffcc00;
    --clr-red: #e53935;
    --clr-text: #f0f0f0;
    --clr-muted: #aaaaaa;
    --clr-border: #333333;
    --clr-card: #1c1c1c;
    --clr-card2: #222222;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --font-main: 'Roboto', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--clr-bg);
    color: var(--clr-text);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    color: var(--clr-gold);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: #ffe04d;
}

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

.b8x2k {
    display: none;
}

.wp-block-spacer {
    display: block;
}

.entry-content {
    display: block;
}

.xk9m {
    width: 0;
    height: 0;
    overflow: hidden;
    position: absolute;
}

.container-fluid {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
}

.sh-section {
    padding: 60px 0;
}

.sh-section-sm {
    padding: 40px 0;
}

.sh-badge {
    display: inline-block;
    background: var(--clr-gold);
    color: #111;
    font-weight: 700;
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.sh-heading {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--clr-text);
}

.sh-heading span {
    color: var(--clr-gold);
}

.sh-sub {
    color: var(--clr-muted);
    font-size: 1rem;
    margin-bottom: 40px;
    max-width: 600px;
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--clr-gold);
    color: #111111;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 11px 26px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(255, 204, 0, 0.25);
    white-space: nowrap;
}

.btn-gold:hover {
    background: #ffe04d;
    color: #111;
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(255, 204, 0, 0.4);
}

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

.btn-red {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--clr-red);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 11px 26px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(229, 57, 53, 0.3);
    white-space: nowrap;
}

.btn-red:hover {
    background: #ef5350;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(229, 57, 53, 0.5);
}

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

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--clr-gold);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 9px 22px;
    border-radius: var(--radius-sm);
    border: 2px solid var(--clr-gold);
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, transform 0.15s;
    white-space: nowrap;
}

.btn-outline:hover {
    background: var(--clr-gold);
    color: #111;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 15px 36px;
    font-size: 1.05rem;
}

/* ===== HEADER ===== */
.sh-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--clr-nav);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}

.sh-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 20px;
    flex-wrap: nowrap;
}

.sh-logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.sh-logo-text {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.sh-logo-title {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--clr-gold);
    letter-spacing: 1px;
    line-height: 1;
}

.sh-logo-sub {
    font-size: 0.65rem;
    color: var(--clr-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.sh-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
}

.sh-nav a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--clr-text);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 7px 12px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}

.sh-nav a:hover {
    color: var(--clr-gold);
    background: rgba(255, 204, 0, 0.08);
}

.sh-nav a svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.sh-header-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.sh-online {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--clr-muted);
    white-space: nowrap;
}

.sh-online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4caf50;
    box-shadow: 0 0 6px #4caf50;
    animation: pulse-dot 2s infinite;
    flex-shrink: 0;
}

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

.sh-lang {
    position: relative;
}

.sh-lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid var(--clr-border);
    color: var(--clr-text);
    font-size: 0.82rem;
    padding: 7px 10px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background 0.2s;
}

.sh-lang-btn:hover {
    background: rgba(255, 255, 255, 0.12);
}

.sh-lang-btn svg {
    width: 14px;
    height: 14px;
}

.sh-lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: var(--clr-nav);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    min-width: 140px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    z-index: 200;
}

.sh-lang-dropdown.open {
    display: block;
    animation: fadeDown 0.2s ease;
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sh-lang-dropdown a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    font-size: 0.85rem;
    color: var(--clr-text);
    text-decoration: none;
    transition: background 0.15s;
}

.sh-lang-dropdown a:hover {
    background: rgba(255, 204, 0, 0.1);
    color: var(--clr-gold);
}

.sh-flag {
    font-size: 1.2rem;
    line-height: 1;
}

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

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

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

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

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

.sh-mobile-menu {
    display: none;
    background: var(--clr-nav);
    border-top: 1px solid var(--clr-border);
    padding: 16px 20px 20px;
}

.sh-mobile-menu.open {
    display: block;
    animation: fadeDown 0.25s ease;
}

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

.sh-mobile-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--clr-text);
    font-size: 0.95rem;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: color 0.2s, background 0.2s;
}

.sh-mobile-nav a:hover {
    color: var(--clr-gold);
    background: rgba(255, 204, 0, 0.08);
}

.sh-mobile-nav a svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

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

/* ===== HERO ===== */
.sh-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    background: #0a0a0a url('/hero-banner.jpg') center center / cover no-repeat;
    overflow: hidden;
}

.sh-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.6) 60%, rgba(10, 10, 10, 0.2) 100%);
}

.sh-hero-content {
    position: relative;
    z-index: 2;
    max-width: 560px;
    padding: 60px 20px;
}

.sh-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 204, 0, 0.15);
    border: 1px solid rgba(255, 204, 0, 0.4);
    color: var(--clr-gold);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sh-hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 18px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

.sh-hero h1 .gold {
    color: var(--clr-gold);
}

.sh-hero h1 .red {
    color: var(--clr-red);
}

.sh-hero-desc {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 28px;
    line-height: 1.7;
}

.sh-hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.sh-hero-stats {
    display: flex;
    gap: 28px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.sh-hero-stat {
    text-align: left;
}

.sh-hero-stat-num {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--clr-gold);
    line-height: 1;
}

.sh-hero-stat-label {
    font-size: 0.72rem;
    color: var(--clr-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 3px;
}

/* ===== ADVANTAGES ===== */
.sh-advantages {
    background: var(--clr-bg);
}

.sh-adv-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.sh-adv-card {
    flex: 1 1 220px;
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 28px 22px;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    position: relative;
    overflow: hidden;
}

.sh-adv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--clr-gold), var(--clr-red));
    opacity: 0;
    transition: opacity 0.3s;
}

.sh-adv-card:hover::before {
    opacity: 1;
}

.sh-adv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 204, 0, 0.3);
}

.sh-adv-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    background: rgba(255, 204, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.sh-adv-icon svg {
    width: 26px;
    height: 26px;
    color: var(--clr-gold);
}

.sh-adv-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--clr-text);
}

.sh-adv-card p {
    font-size: 0.87rem;
    color: var(--clr-muted);
    line-height: 1.6;
}

/* ===== JACKPOTS ===== */
.sh-jackpots {
    background: linear-gradient(180deg, #0e0e0e 0%, #1a1208 50%, #0e0e0e 100%);
}

.sh-jp-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.sh-jp-card {
    flex: 1 1 280px;
    max-width: 380px;
    border-radius: var(--radius-lg);
    padding: 30px 24px 26px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
}

.sh-jp-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.sh-jp-card.bronze {
    background: linear-gradient(145deg, #2a1f14, #1e1710);
    border: 1px solid #7a5c3a;
}

.sh-jp-card.silver {
    background: linear-gradient(145deg, #1f2128, #161820);
    border: 1px solid #6a7080;
}

.sh-jp-card.gold {
    background: linear-gradient(145deg, #26200c, #1e180a);
    border: 2px solid var(--clr-gold);
    box-shadow: 0 0 24px rgba(255, 204, 0, 0.15);
}

.sh-jp-crown {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.bronze .sh-jp-crown {
    background: rgba(196, 140, 80, 0.2);
}

.silver .sh-jp-crown {
    background: rgba(180, 188, 200, 0.2);
}

.gold .sh-jp-crown {
    background: rgba(255, 204, 0, 0.2);
}

.sh-jp-crown svg {
    width: 28px;
    height: 28px;
}

.bronze .sh-jp-crown svg {
    color: #c48c50;
}

.silver .sh-jp-crown svg {
    color: #b4bcc8;
}

.gold .sh-jp-crown svg {
    color: var(--clr-gold);
}

.sh-jp-level {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.bronze .sh-jp-level {
    color: #c48c50;
}

.silver .sh-jp-level {
    color: #b4bcc8;
}

.gold .sh-jp-level {
    color: var(--clr-gold);
}

.sh-jp-amount {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 900;
    margin-bottom: 4px;
    font-variant-numeric: tabular-nums;
    transition: all 0.3s;
}

.bronze .sh-jp-amount {
    color: #d4a060;
}

.silver .sh-jp-amount {
    color: #c8d0dc;
}

.gold .sh-jp-amount {
    color: var(--clr-gold);
    text-shadow: 0 0 20px rgba(255, 204, 0, 0.4);
}

.sh-jp-currency {
    font-size: 0.8rem;
    color: var(--clr-muted);
    margin-bottom: 20px;
}

.sh-jp-winners {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 16px;
}

.sh-jp-winners-title {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--clr-muted);
    margin-bottom: 10px;
}

.sh-jp-winner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 0;
    font-size: 0.82rem;
}

.sh-jp-winner-nick {
    color: var(--clr-text);
    font-weight: 500;
}

.sh-jp-winner-sum {
    font-weight: 700;
}

.bronze .sh-jp-winner-sum {
    color: #c48c50;
}

.silver .sh-jp-winner-sum {
    color: #b4bcc8;
}

.gold .sh-jp-winner-sum {
    color: var(--clr-gold);
}

/* ===== APP ===== */
.sh-app {
    background: var(--clr-card);
}

.sh-app-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    align-items: flex-start;
}

.sh-app-info {
    flex: 1 1 300px;
}

.sh-app-dl {
    flex: 1 1 260px;
}

.sh-app-table-wrap {
    overflow-x: auto;
    margin-top: 20px;
}

.sh-app-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    min-width: 300px;
}

.sh-app-table th, .sh-app-table td {
    padding: 11px 16px;
    text-align: left;
    border: 1px solid var(--clr-border);
}

.sh-app-table th {
    background: rgba(255, 204, 0, 0.08);
    color: var(--clr-gold);
    font-weight: 600;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sh-app-table td {
    color: var(--clr-text);
    background: var(--clr-card2);
}

.sh-app-table tr:hover td {
    background: rgba(255, 204, 0, 0.04);
}

.sh-dl-btns {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 24px;
}

.sh-dl-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--clr-card2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    text-decoration: none;
    color: var(--clr-text);
    transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.sh-dl-btn:hover {
    border-color: var(--clr-gold);
    background: rgba(255, 204, 0, 0.06);
    color: var(--clr-text);
    transform: translateX(4px);
}

.sh-dl-btn-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: rgba(255, 204, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sh-dl-btn-icon svg {
    width: 24px;
    height: 24px;
    color: var(--clr-gold);
}

.sh-dl-btn-label {
    font-size: 0.72rem;
    color: var(--clr-muted);
}

.sh-dl-btn-title {
    font-weight: 700;
    font-size: 0.95rem;
}

/* ===== DEMO ===== */
.sh-demo {
    background: var(--clr-bg);
}

.sh-demo-wrap {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

.sh-demo-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: var(--clr-nav);
    border-bottom: 1px solid var(--clr-border);
    flex-wrap: wrap;
    gap: 10px;
}

.sh-demo-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--clr-text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.sh-demo-title svg {
    color: var(--clr-gold);
    width: 20px;
    height: 20px;
}

.sh-iframe-wrap {
    position: relative;
    padding-top: 56.25%;
    background: #000;
}

.sh-iframe-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.sh-demo-footer {
    padding: 16px 20px;
    background: var(--clr-nav);
    border-top: 1px solid var(--clr-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.sh-demo-footer p {
    font-size: 0.82rem;
    color: var(--clr-muted);
}

/* ===== CONTENT REVIEW ===== */
.sh-review-block {
    background: var(--clr-card);
}

.sh-author-bar {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 24px;
    background: var(--clr-card2);
    border-radius: var(--radius-md);
    margin-bottom: 30px;
    border: 1px solid var(--clr-border);
}

.sh-author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr-gold), var(--clr-red));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 900;
    color: #111;
    flex-shrink: 0;
}

.sh-author-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--clr-text);
}

.sh-author-title {
    font-size: 0.8rem;
    color: var(--clr-muted);
    margin-top: 2px;
}

.sh-author-link {
    margin-left: auto;
    font-size: 0.8rem;
    color: var(--clr-gold);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
}

.sh-author-link:hover {
    color: #ffe04d;
}

.sh-author-link svg {
    width: 14px;
    height: 14px;
}

.sh-content-area {
    font-size: 0.97rem;
    line-height: 1.8;
    color: #e0e0e0;
}

.sh-content-area h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 28px 0 14px;
    color: var(--clr-text);
}

.sh-content-area h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 22px 0 10px;
    color: var(--clr-text);
}

.sh-content-area h4 {
    font-size: 1rem;
    font-weight: 700;
    margin: 18px 0 8px;
    color: var(--clr-gold);
}

.sh-content-area p {
    margin-bottom: 16px;
}

.sh-content-area ul, .sh-content-area ol {
    padding-left: 22px;
    margin-bottom: 16px;
}

.sh-content-area li {
    margin-bottom: 8px;
}

.sh-content-area a {
    color: var(--clr-gold);
}

.sh-content-area a:hover {
    text-decoration: underline;
}

.sh-content-area strong {
    color: var(--clr-text);
    font-weight: 700;
}

.sh-content-area em {
    color: #ccc;
}

.sh-content-area blockquote {
    border-left: 3px solid var(--clr-gold);
    padding: 12px 20px;
    margin: 20px 0;
    background: rgba(255, 204, 0, 0.05);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: #ccc;
}

.sh-content-area table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.9rem;
    overflow-x: auto;
    display: block;
}

.sh-content-area th, .sh-content-area td {
    padding: 10px 14px;
    border: 1px solid var(--clr-border);
    text-align: left;
}

.sh-content-area th {
    background: rgba(255, 204, 0, 0.08);
    color: var(--clr-gold);
    font-weight: 600;
}

.sh-content-area td {
    background: var(--clr-card2);
}

.sh-content-area hr {
    border: none;
    border-top: 1px solid var(--clr-border);
    margin: 28px 0;
}

.sh-content-area img {
    border-radius: var(--radius-sm);
    margin: 16px 0;
    max-width: 100%;
}

/* ===== FAQ ===== */
.sh-faq {
    background: var(--clr-bg);
}

.sh-faq-list {
    max-width: 820px;
    margin: 0 auto;
}

.sh-faq-item {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.sh-faq-item.open {
    border-color: rgba(255, 204, 0, 0.35);
}

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

.sh-faq-q-text {
    font-size: 0.97rem;
    font-weight: 600;
    color: var(--clr-text);
    flex: 1;
}

.sh-faq-item.open .sh-faq-q-text {
    color: var(--clr-gold);
}

.sh-faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.sh-faq-item.open .sh-faq-icon {
    transform: rotate(180deg);
}

.sh-faq-icon svg {
    width: 18px;
    height: 18px;
    color: var(--clr-gold);
}

.sh-faq-a {
    display: none;
    padding: 0 22px 20px;
    font-size: 0.9rem;
    color: var(--clr-muted);
    line-height: 1.7;
    border-top: 1px solid var(--clr-border);
    padding-top: 16px;
}

.sh-faq-item.open .sh-faq-a {
    display: block;
    animation: fadeDown 0.2s ease;
}

/* ===== FOOTER ===== */
.sh-footer {
    background: var(--clr-nav);
    border-top: 1px solid var(--clr-border);
    padding-top: 50px;
}

.sh-footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--clr-border);
}

.sh-footer-brand {
    flex: 1 1 220px;
}

.sh-footer-brand p {
    font-size: 0.85rem;
    color: var(--clr-muted);
    margin-top: 14px;
    line-height: 1.7;
}

.sh-footer-col {
    flex: 1 1 160px;
}

.sh-footer-col h4 {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--clr-muted);
    margin-bottom: 14px;
}

.sh-footer-col ul {
    list-style: none;
}

.sh-footer-col ul li {
    margin-bottom: 8px;
}

.sh-footer-col ul li a {
    font-size: 0.87rem;
    color: #aaa;
    text-decoration: none;
    transition: color 0.2s;
}

.sh-footer-col ul li a:hover {
    color: var(--clr-gold);
}

.sh-footer-mid {
    padding: 28px 0;
    border-bottom: 1px solid var(--clr-border);
}

.sh-footer-mid-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--clr-muted);
    margin-bottom: 16px;
}

.sh-footer-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.sh-footer-logo-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 8px 14px;
    font-size: 0.75rem;
    color: #999;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
}

.sh-footer-logo-item svg {
    width: 16px;
    height: 16px;
}

.sh-footer-bottom {
    padding: 20px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: space-between;
    align-items: center;
}

.sh-footer-copy {
    font-size: 0.78rem;
    color: var(--clr-muted);
}

.sh-footer-legal {
    font-size: 0.72rem;
    color: #666;
    max-width: 680px;
    line-height: 1.6;
}

.sh-provider-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: var(--clr-muted);
}

.sh-provider-badge img {
    height: 28px;
    width: auto;
    object-fit: contain;
    filter: brightness(0.85);
}

/* ===== WIDGET ===== */
.sh-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: linear-gradient(90deg, #1a0f0f, #1f1a08, #1a0f0f);
    border-top: 2px solid var(--clr-red);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.6);
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.sh-widget.hidden {
    transform: translateY(100%);
}

.sh-widget-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.sh-widget-bonus {
    font-size: 1rem;
    font-weight: 700;
    color: var(--clr-gold);
    line-height: 1.2;
}

.sh-widget-sub {
    font-size: 0.77rem;
    color: #ccc;
}

.sh-widget-btns {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sh-widget-close {
    background: none;
    border: none;
    color: var(--clr-muted);
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
    transition: color 0.2s;
}

.sh-widget-close:hover {
    color: var(--clr-text);
}

.sh-widget-close svg {
    width: 18px;
    height: 18px;
}

/* ===== WP DECOY ELEMENTS ===== */
.wp-caption {
    display: none;
}

.wp-image-align {
    float: none;
}

.elementor-hidden {
    visibility: hidden;
    position: absolute;
    top: -9999px;
}

.yoast-hidden {
    position: absolute;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    width: 1px;
}

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

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

.anim-in {
    animation: fadeInUp 0.5s ease both;
}

.sh-jp-amount.tick {
    animation: tick 0.3s ease;
}

@keyframes tick {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.06);
    }
    100% {
        transform: scale(1);
    }
}

/* ===== SECTION DIVIDERS ===== */
.sh-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--clr-border), transparent);
    margin: 0;
}

/* ===== PADDING BODY FOR WIDGET ===== */
body {
    padding-bottom: 80px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .sh-nav {
        display: none;
    }

    .sh-burger {
        display: flex;
    }

    .sh-online {
        display: none;
    }
}

@media (max-width: 767px) {
    .sh-hero {
        min-height: 400px;
    }

    .sh-hero-content {
        padding: 40px 16px;
    }

    .sh-hero h1 {
        font-size: 1.8rem;
    }

    .sh-jp-grid {
        flex-direction: column;
        align-items: center;
    }

    .sh-jp-card {
        max-width: 100%;
    }

    .sh-app-inner {
        flex-direction: column;
        gap: 28px;
    }

    .sh-footer-top {
        flex-direction: column;
        gap: 28px;
    }

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

    .sh-footer-legal {
        text-align: center;
    }

    .sh-widget {
        padding: 10px 14px;
    }

    .sh-widget-bonus {
        font-size: 0.9rem;
    }

    .sh-header-inner {
        padding: 8px 14px;
    }
}

@media (max-width: 480px) {
    .sh-hero-btns {
        flex-direction: column;
    }

    .sh-hero-btns .btn-gold, .sh-hero-btns .btn-red {
        width: 100%;
        justify-content: center;
    }

    .sh-adv-card {
        flex: 1 1 100%;
    }

    .sh-footer-logos {
        gap: 8px;
    }

    .sh-footer-logo-item {
        font-size: 0.68rem;
        padding: 6px 10px;
    }
}

:root {
    --bg: #070A12;
    --surface: rgba(255, 255, 255, .06);
    --surface2: rgba(255, 255, 255, .09);
    --stroke: rgba(255, 255, 255, .12);
    --text: rgba(255, 255, 255, .92);
    --muted: rgba(255, 255, 255, .68);
    --shadow: 0 18px 60px rgba(0, 0, 0, .55);
    --radius: 18px;
    --radius2: 14px;
    --gold1: #FFE28A;
    --gold2: #D7A84A;
    --red1: #FF3B58;
    --red2: #B5162E;
    --ok: #42d67a;
    --container: 1200px;
}

* {
    box-sizing: border-box
}

html, body {
    height: 100%
}

body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", sans-serif;
    color: var(--text);
    background: radial-gradient(900px 500px at 20% 10%, rgba(255, 226, 138, .14), transparent 60%),
    radial-gradient(900px 500px at 85% 25%, rgba(255, 59, 88, .16), transparent 65%),
    radial-gradient(1200px 800px at 40% 100%, rgba(105, 106, 255, .10), transparent 60%),
    linear-gradient(180deg, #050711 0%, #070A12 55%, #050711 100%);
    overflow-x: hidden;
}

img, svg {
    max-width: 100%;
    height: auto
}

a {
    color: inherit;
    text-decoration: none
}

a:focus-visible, button:focus-visible {
    outline: 2px solid rgba(255, 226, 138, .65);
    outline-offset: 3px;
    border-radius: 12px
}

::selection {
    background: rgba(255, 226, 138, .18)
}

.gold {
    background: linear-gradient(180deg, var(--gold1), var(--gold2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.red {
    background: linear-gradient(180deg, #FF7A8D, var(--red1));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.container-fluid {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 420px) {
    .container-fluid {
        padding: 0 14px
    }
}

.sh-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .16), transparent);
}

.sh-section {
    padding: 84px 0;
}

@media (max-width: 900px) {
    .sh-section {
        padding: 64px 0
    }
}

.sh-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 226, 138, .25);
    background: linear-gradient(180deg, rgba(255, 226, 138, .14), rgba(255, 226, 138, .06));
    color: rgba(255, 226, 138, .92);
    font-weight: 800;
    letter-spacing: .02em;
    font-size: .78rem;
}

.sh-heading {
    margin: 14px 0 10px;
    font-size: clamp(1.6rem, 3.2vw, 2.5rem);
    line-height: 1.1;
    letter-spacing: -.02em;
}

.sh-heading span {
    background: linear-gradient(180deg, var(--gold1), var(--gold2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.sh-sub {
    color: var(--muted);
    max-width: 820px;
    font-size: clamp(.95rem, 1.35vw, 1.05rem);
    line-height: 1.55;
}

.btn-gold, .btn-red, .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 14px;
    padding: 12px 16px;
    font-weight: 900;
    letter-spacing: .01em;
    border: 1px solid transparent;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease, opacity .15s ease;
    user-select: none;
    white-space: nowrap;
}

.btn-lg {
    padding: 14px 18px;
    border-radius: 16px
}

.btn-gold {
    color: #1A1206;
    background: linear-gradient(180deg, var(--gold1), var(--gold2));
    box-shadow: 0 14px 35px rgba(215, 168, 74, .22);
}

.btn-gold:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 45px rgba(215, 168, 74, .28)
}

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

.btn-red {
    color: #fff;
    background: linear-gradient(180deg, var(--red1), var(--red2));
    box-shadow: 0 14px 35px rgba(255, 59, 88, .22);
}

.btn-red:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 45px rgba(255, 59, 88, .28)
}

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

.btn-outline {
    color: rgba(255, 255, 255, .92);
    background: rgba(255, 255, 255, .05);
    border-color: rgba(255, 255, 255, .14);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, .22);
    background: rgba(255, 255, 255, .07)
}

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

@media (max-width: 520px) {
    .btn-gold, .btn-red, .btn-outline {
        width: 100%;
        justify-content: center
    }

    .btn-lg {
        padding: 14px 16px
    }
}

.sh-header {
    position: sticky;
    top: 0;
    z-index: 60;
    backdrop-filter: blur(14px);
    background: rgba(5, 7, 17, .62);
    border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.sh-header-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.sh-logo-text {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.sh-logo-title {
    font-weight: 1000;
    line-height: 1;
    font-size: 1rem
}

.sh-logo-sub {
    color: var(--muted);
    font-size: .78rem;
    line-height: 1.1
}

.sh-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    padding: 6px 8px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .04);
}

.sh-nav a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 999px;
    color: rgba(255, 255, 255, .86);
    font-weight: 800;
    font-size: .9rem;
    transition: background .15s ease, transform .15s ease;
}

.sh-nav a svg {
    width: 18px;
    height: 18px;
    opacity: .9
}

.sh-nav a:hover {
    background: rgba(255, 255, 255, .08);
    transform: translateY(-1px)
}

.sh-nav a:active {
    transform: translateY(0)
}

.sh-header-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sh-online {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .04);
    color: rgba(255, 255, 255, .86);
    font-weight: 900;
    font-size: .9rem;
}

.sh-online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ok);
    box-shadow: 0 0 0 6px rgba(66, 214, 122, .12);
}

.sh-lang {
    position: relative
}

.sh-lang-btn {
    appearance: none;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .04);
    color: rgba(255, 255, 255, .92);
    border-radius: 999px;
    padding: 10px 12px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.sh-lang-btn svg {
    width: 18px;
    height: 18px;
    opacity: .85
}

.sh-lang-dropdown {
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    min-width: 220px;
    padding: 8px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(10, 12, 24, .86);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow);
    display: none;
}

.sh-lang-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    color: rgba(255, 255, 255, .88);
    font-weight: 850;
    transition: background .15s ease;
}

.sh-lang-dropdown a:hover {
    background: rgba(255, 255, 255, .08)
}

.sh-lang.open .sh-lang-dropdown {
    display: block
}

.sh-burger {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .04);
    cursor: pointer;
    padding: 10px;
}

.sh-burger span {
    display: block;
    height: 2px;
    background: rgba(255, 255, 255, .88);
    border-radius: 999px;
    margin: 6px 0;
}

@media (max-width: 1024px) {
    .sh-nav {
        display: none
    }

    .sh-burger {
        display: inline-flex;
        flex-direction: column;
        justify-content: center
    }
}

@media (max-width: 520px) {
    .sh-online {
        display: none
    }

    .sh-header-inner {
        padding: 10px 14px
    }
}

.sh-mobile-menu {
    position: fixed;
    inset: 64px 0 auto 0;
    max-height: calc(100dvh - 64px);
    overflow: auto;
    padding: 14px 14px 18px;
    background: rgba(5, 7, 17, .88);
    backdrop-filter: blur(14px);
    border-top: 1px solid rgba(255, 255, 255, .10);
    display: none;
}

.sh-mobile-menu.open {
    display: block
}

.sh-mobile-nav {
    display: grid;
    gap: 8px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .04);
    border-radius: 18px;
}

.sh-mobile-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 12px;
    border-radius: 14px;
    font-weight: 900;
    color: rgba(255, 255, 255, .9);
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .08);
}

.sh-mobile-nav a svg {
    width: 18px;
    height: 18px;
    opacity: .9
}

.sh-mobile-btns {
    display: flex;
    gap: 10px;
    margin-top: 12px
}

.sh-hero {
    position: relative;
    padding: 92px 0 54px;
    overflow: hidden;
}

.sh-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(900px 520px at 15% 15%, rgba(255, 226, 138, .18), transparent 60%),
    radial-gradient(900px 520px at 85% 25%, rgba(255, 59, 88, .20), transparent 62%),
    linear-gradient(180deg, rgba(0, 0, 0, .22), rgba(0, 0, 0, .55));
    pointer-events: none;
}

.sh-hero-content {
    position: relative;
    max-width: 820px;
}

.sh-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 226, 138, .20);
    background: rgba(255, 226, 138, .08);
    color: rgba(255, 226, 138, .95);
    font-weight: 900;
    font-size: .86rem;
}

.sh-hero-label svg {
    opacity: .95
}

.sh-hero h1 {
    margin: 18px 0 12px;
    font-size: clamp(2.0rem, 4.6vw, 3.45rem);
    line-height: 1.02;
    letter-spacing: -.03em;
}

.sh-hero-desc {
    margin: 0;
    color: rgba(255, 255, 255, .76);
    font-size: clamp(1.0rem, 1.55vw, 1.12rem);
    line-height: 1.55;
    max-width: 760px;
}

.sh-hero-btns {
    display: flex;
    gap: 12px;
    margin-top: 22px;
    flex-wrap: wrap;
}

.sh-hero-stats {
    margin-top: 26px;
    display: grid;
    grid-template-columns:repeat(4, minmax(0, 1fr));
    gap: 10px;
    max-width: 860px;
}

.sh-hero-stat {
    padding: 14px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .10);
    backdrop-filter: blur(10px);
}

.sh-hero-stat-num {
    font-weight: 1000;
    letter-spacing: -.02em;
    font-size: 1.08rem;
}

.sh-hero-stat-label {
    margin-top: 4px;
    color: var(--muted);
    font-weight: 800;
    font-size: .82rem;
}

@media (max-width: 900px) {
    .sh-hero {
        padding: 72px 0 44px
    }

    .sh-hero-stats {
        grid-template-columns:repeat(2, minmax(0, 1fr))
    }
}

@media (max-width: 520px) {
    .sh-hero-btns {
        flex-direction: column
    }

    .sh-hero-label {
        font-size: .82rem
    }
}

.sh-adv-grid {
    display: grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.sh-adv-card {
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, .10);
    background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .03));
    box-shadow: 0 16px 45px rgba(0, 0, 0, .35);
    padding: 18px 18px 16px;
    transition: transform .15s ease, border-color .15s ease, background .15s ease;
}

.sh-adv-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 226, 138, .22);
    background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .03));
}

.sh-adv-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 226, 138, .22);
    background: rgba(255, 226, 138, .08);
    color: rgba(255, 226, 138, .95);
}

.sh-adv-icon svg {
    width: 22px;
    height: 22px
}

.sh-adv-card h3 {
    margin: 14px 0 8px;
    font-size: 1.05rem;
    font-weight: 1000;
    letter-spacing: -.01em;
}

.sh-adv-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
    font-size: .95rem;
}

@media (max-width: 980px) {
    .sh-adv-grid {
        grid-template-columns:repeat(2, minmax(0, 1fr))
    }
}

@media (max-width: 620px) {
    .sh-adv-grid {
        grid-template-columns:1fr
    }
}

.sh-jp-grid {
    display: grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.sh-jp-card {
    position: relative;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, .10);
    background: linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .03));
    box-shadow: 0 18px 55px rgba(0, 0, 0, .38);
    padding: 18px;
    overflow: hidden;
}

.sh-jp-card:before {
    content: "";
    position: absolute;
    inset: -2px;
    background: radial-gradient(320px 180px at 30% 0%, rgba(255, 255, 255, .10), transparent 60%),
    radial-gradient(320px 180px at 70% 10%, rgba(255, 226, 138, .14), transparent 65%);
    pointer-events: none;
}

.sh-jp-card.bronze {
    --acc: #C08B5C
}

.sh-jp-card.silver {
    --acc: #B9C3D3
}

.sh-jp-card.gold {
    --acc: #E6C46A
}

.sh-jp-crown {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .05);
    color: var(--acc);
    position: relative;
    z-index: 1;
}

.sh-jp-crown svg {
    width: 22px;
    height: 22px
}

.sh-jp-level {
    margin-top: 12px;
    font-weight: 1000;
    color: rgba(255, 255, 255, .88);
    position: relative;
    z-index: 1;
}

.sh-jp-amount {
    margin-top: 10px;
    font-size: 1.8rem;
    font-weight: 1100;
    letter-spacing: -.02em;
    color: var(--acc);
    position: relative;
    z-index: 1;
}

.sh-jp-currency {
    margin-top: 4px;
    color: var(--muted);
    font-weight: 800;
    font-size: .86rem;
    position: relative;
    z-index: 1;
}

.sh-jp-winners {
    margin-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, .10);
    padding-top: 12px;
    position: relative;
    z-index: 1;
}

.sh-jp-winners-title {
    font-weight: 950;
    font-size: .9rem;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, .88);
}

.sh-jp-winner {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .08);
    background: rgba(255, 255, 255, .03);
}

.sh-jp-winner + .sh-jp-winner {
    margin-top: 8px
}

.sh-jp-winner-nick {
    color: rgba(255, 255, 255, .86);
    font-weight: 900
}

.sh-jp-winner-sum {
    color: rgba(255, 255, 255, .78);
    font-weight: 900
}

@media (max-width: 980px) {
    .sh-jp-grid {
        grid-template-columns:1fr
    }

    .sh-jp-amount {
        font-size: 1.65rem
    }
}

.sh-app-inner {
    display: grid;
    grid-template-columns:1.35fr .9fr;
    gap: 16px;
    align-items: start;
}

.sh-app-info, .sh-app-dl {
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, .10);
    background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .03));
    box-shadow: 0 18px 55px rgba(0, 0, 0, .34);
    padding: 18px;
}

.sh-app-table-wrap {
    overflow: auto;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(0, 0, 0, .18);
}

.sh-app-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 560px;
}

.sh-app-table th, .sh-app-table td {
    padding: 12px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    vertical-align: top;
}

.sh-app-table thead th {
    text-align: left;
    font-size: .86rem;
    color: rgba(255, 255, 255, .82);
    font-weight: 1000;
    background: rgba(255, 255, 255, .04);
}

.sh-app-table tbody td {
    font-size: .92rem;
    color: rgba(255, 255, 255, .84);
}

.sh-app-table tbody td:first-child {
    color: rgba(255, 255, 255, .70);
    font-weight: 850
}

.sh-dl-btns {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}

.sh-dl-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 12px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .05);
    transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.sh-dl-btn:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, .07);
    border-color: rgba(255, 226, 138, .22)
}

.sh-dl-btn-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(0, 0, 0, .18);
    color: rgba(255, 255, 255, .92);
}

.sh-dl-btn-icon svg {
    width: 20px;
    height: 20px
}

.sh-dl-btn-label {
    font-size: .78rem;
    color: var(--muted);
    font-weight: 900
}

.sh-dl-btn-title {
    font-size: 1.02rem;
    font-weight: 1100;
    letter-spacing: -.01em
}

@media (max-width: 980px) {
    .sh-app-inner {
        grid-template-columns:1fr
    }

    .sh-app-table {
        min-width: 520px
    }
}

@media (max-width: 520px) {
    .sh-app-table {
        min-width: 480px
    }
}

.sh-demo-wrap {
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, .10);
    background: linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .03));
    box-shadow: 0 20px 65px rgba(0, 0, 0, .40);
    overflow: hidden;
}

.sh-demo-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .04);
}

.sh-demo-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 1100;
    letter-spacing: -.01em;
}

.sh-demo-title svg {
    width: 18px;
    height: 18px;
    opacity: .9
}

.sh-iframe-wrap {
    position: relative;
    aspect-ratio: 16/9;
    background: rgba(0, 0, 0, .35);
}

.sh-iframe-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 820px) {
    .sh-iframe-wrap {
        aspect-ratio: 4/3
    }
}

@media (max-width: 520px) {
    .sh-iframe-wrap {
        aspect-ratio: 3/4
    }

    .sh-demo-top {
        flex-direction: column;
        align-items: flex-start
    }
}

.sh-demo-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-top: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .03);
}

.sh-demo-footer p {
    margin: 0;
    color: var(--muted);
    line-height: 1.45;
    font-size: .9rem;
}

@media (max-width: 720px) {
    .sh-demo-footer {
        flex-direction: column;
        align-items: stretch
    }

    .sh-demo-footer a {
        width: 100%;
        justify-content: center
    }
}

.sh-author-bar {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, .10);
    background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .03));
    box-shadow: 0 18px 55px rgba(0, 0, 0, .34);
}

.sh-author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-weight: 1100;
    background: linear-gradient(180deg, rgba(255, 226, 138, .18), rgba(255, 59, 88, .14));
    border: 1px solid rgba(255, 255, 255, .14);
}

.sh-author-name {
    font-weight: 1100
}

.sh-author-title {
    color: var(--muted);
    font-weight: 800;
    font-size: .88rem
}

.sh-author-link {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .05);
    font-weight: 950;
}

.sh-author-link svg {
    width: 18px;
    height: 18px
}

@media (max-width: 820px) {
    .sh-author-bar {
        flex-wrap: wrap
    }

    .sh-author-link {
        width: 100%;
        justify-content: center;
        margin-left: 0
    }
}

.sh-content-area {
    margin-top: 16px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, .10);
    background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .03));
    box-shadow: 0 18px 55px rgba(0, 0, 0, .34);
    padding: 18px;
}

.sh-content-area h1, .sh-content-area h2, .sh-content-area h3 {
    margin: 14px 0 10px;
    letter-spacing: -.02em;
}

.sh-content-area p {
    color: rgba(255, 255, 255, .78);
    line-height: 1.65;
    margin: 10px 0
}

.sh-content-area a {
    text-decoration: underline;
    text-underline-offset: 3px
}

.sh-faq-list {
    display: grid;
    gap: 10px;
    max-width: 980px;
    margin: 0 auto
}

.sh-faq-item {
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .04);
    overflow: hidden;
}

.sh-faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    cursor: pointer;
    user-select: none;
}

.sh-faq-q-text {
    font-weight: 1000;
    color: rgba(255, 255, 255, .90);
}

.sh-faq-icon {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .04);
}

.sh-faq-icon svg {
    width: 18px;
    height: 18px;
    opacity: .9;
    transition: transform .18s ease
}

.sh-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .22s ease;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.sh-faq-a > div {
    padding: 14px 16px;
    color: var(--muted);
    line-height: 1.65;
}

.sh-faq-item.open .sh-faq-a {
    max-height: 360px
}

.sh-faq-item.open .sh-faq-icon svg {
    transform: rotate(180deg)
}

.sh-footer {
    padding: 58px 0 26px;
    border-top: 1px solid rgba(255, 255, 255, .10);
    background: rgba(5, 7, 17, .58);
    backdrop-filter: blur(14px);
}

.sh-footer-top {
    display: grid;
    grid-template-columns:1.35fr 1fr 1fr 1fr;
    gap: 18px;
    align-items: start;
}

.sh-footer-brand p {
    margin: 14px 0 0;
    color: var(--muted);
    line-height: 1.6;
    font-size: .95rem;
}

.sh-footer-col h4 {
    margin: 6px 0 12px;
    font-weight: 1100;
    letter-spacing: -.01em;
}

.sh-footer-col ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px
}

.sh-footer-col a {
    color: rgba(255, 255, 255, .82);
    font-weight: 850
}

.sh-footer-col a:hover {
    color: rgba(255, 226, 138, .92)
}

.sh-footer-mid {
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .10);
}

.sh-footer-mid-title {
    font-weight: 1100;
    margin-bottom: 12px;
}

.sh-footer-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sh-footer-logo-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .04);
    color: rgba(255, 255, 255, .82);
    font-weight: 900;
    font-size: .9rem;
}

.sh-footer-logo-item svg {
    width: 18px;
    height: 18px;
    opacity: .9
}

.sh-provider-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 18px;
    border: 1px solid rgba(255, 226, 138, .18);
    background: rgba(255, 226, 138, .08);
}

.sh-footer-bottom {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .10);
    display: grid;
    gap: 10px;
}

.sh-footer-copy {
    color: rgba(255, 255, 255, .76);
    font-weight: 900
}

.sh-footer-legal {
    color: rgba(255, 255, 255, .60);
    line-height: 1.6;
    font-size: .9rem
}

@media (max-width: 1024px) {
    .sh-footer-top {
        grid-template-columns:1fr 1fr
    }
}

@media (max-width: 620px) {
    .sh-footer-top {
        grid-template-columns:1fr
    }

    .sh-footer-logos {
        gap: 8px
    }

    .sh-footer-logo-item {
        width: 100%;
        justify-content: flex-start;
        border-radius: 16px
    }
}

.sh-widget {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 70;
    width: min(420px, calc(100vw - 28px));
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(10, 12, 24, .86);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow);
    padding: 14px 14px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sh-widget-text {
    min-width: 0
}

.sh-widget-bonus {
    font-weight: 1100;
    letter-spacing: -.01em;
    line-height: 1.2;
}

.sh-widget-sub {
    margin-top: 6px;
    color: var(--muted);
    font-weight: 850;
    font-size: .88rem;
}

.sh-widget-btns {
    display: flex;
    gap: 10px;
    align-items: center
}

.sh-widget-close {
    margin-left: auto;
    width: 40px;
    height: 40px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .04);
    color: rgba(255, 255, 255, .88);
    cursor: pointer;
    display: grid;
    place-items: center;
}

.sh-widget-close svg {
    width: 18px;
    height: 18px
}

@media (max-width: 520px) {
    .sh-widget {
        left: 14px;
        right: 14px;
        bottom: 14px;
        width: auto;
        flex-direction: column;
        align-items: stretch;
    }

    .sh-widget-btns {
        width: 100%
    }

    .sh-widget-btns a {
        width: 100%;
        justify-content: center
    }

    .sh-widget-close {
        position: absolute;
        top: 10px;
        right: 10px
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important
    }
}