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

:root {
    --c-navy: #081259;
    --c-navy-dark: #060e45;
    --c-navy-light: #0e1f8a;
    --c-gold: #e09f46;
    --c-gold-light: #f0b85a;
    --c-blue: #079bfa;
    --c-blue-dark: #0588dc;
    --c-white: #ffffff;
    --c-bg: #ffffff;
    --c-text: #1a1a2e;
    --c-text-muted: #5a6380;
    --c-border: #e2e6f3;
    --c-surface: #f5f7ff;
    --c-surface-2: #eef1fc;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-sm: 0 2px 8px rgba(8, 18, 89, 0.08);
    --shadow-md: 0 4px 20px rgba(8, 18, 89, 0.12);
    --shadow-lg: 0 8px 40px rgba(8, 18, 89, 0.18);
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font);
    background: var(--c-bg);
    color: var(--c-text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

a:hover {
    color: var(--c-gold-light);
}

button {
    cursor: pointer;
    font-family: var(--font);
}

.xw9k2 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.qp7r1 {
    padding: 70px 0;
}

.qp7r1-sm {
    padding: 45px 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font);
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 1;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.btn-primary {
    background: var(--c-blue);
    color: var(--c-white);
    padding: 13px 26px;
    box-shadow: 0 4px 15px rgba(7, 155, 250, 0.35);
}

.btn-primary:hover {
    background: var(--c-blue-dark);
    color: var(--c-white);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(7, 155, 250, 0.45);
}

.btn-secondary {
    background: var(--c-gold);
    color: var(--c-white);
    padding: 13px 26px;
    box-shadow: 0 4px 15px rgba(224, 159, 70, 0.3);
}

.btn-secondary:hover {
    background: var(--c-gold-light);
    color: var(--c-white);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(224, 159, 70, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--c-gold);
    padding: 11px 24px;
    border: 2px solid var(--c-gold);
}

.btn-outline:hover {
    background: var(--c-gold);
    color: var(--c-white);
}

.btn-sm {
    padding: 9px 18px;
    font-size: 0.8125rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

.section-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--c-navy);
    line-height: 1.2;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 1.0625rem;
    color: var(--c-text-muted);
    max-width: 560px;
    line-height: 1.6;
}

.section-head {
    margin-bottom: 48px;
}

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

.text-center .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.bg-surface {
    background: var(--c-surface);
}

.bg-navy {
    background: var(--c-navy);
}

/* ---- HEADER ---- */
.sh-header {
    background: var(--c-navy);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}

.sh-header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    height: 70px;
}

.sh-logo img {
    height: 42px;
    width: auto;
}

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

.sh-nav a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 7px 12px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

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

.sh-nav a:hover {
    color: var(--c-gold);
    background: rgba(255, 255, 255, 0.06);
}

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

.sh-status {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 5px 12px 5px 8px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.75);
    white-space: nowrap;
}

.sh-status-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    flex-shrink: 0;
    animation: pu7x3 2s infinite;
}

@keyframes pu7x3 {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(0.85);
    }
}

.sh-players-count {
    font-weight: 600;
    color: #22c55e;
}

.sh-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    padding: 8px;
    cursor: pointer;
    transition: background var(--transition);
}

.sh-burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 2px;
    transition: all var(--transition);
}

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

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

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

.sh-mobile-menu {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--c-navy-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    padding: 16px 20px 20px;
    z-index: 999;
}

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

.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: rgba(255, 255, 255, 0.85);
    font-size: 0.9375rem;
    font-weight: 500;
    padding: 11px 14px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

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

.sh-mobile-nav a:hover {
    color: var(--c-gold);
    background: rgba(255, 255, 255, 0.06);
}

.sh-mobile-actions {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

/* ---- HERO SLIDER ---- */
.sh-hero {
    position: relative;
    overflow: hidden;
    background: var(--c-navy-dark);
}

.sh-slider {
    position: relative;
    height: clamp(380px, 60vw, 580px);
}

.sh-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.7s ease;
    display: flex;
    align-items: center;
}

.sh-slide.is-active {
    opacity: 1;
    z-index: 1;
}

.sh-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.sh-slide-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 18, 89, 0.92) 0%, rgba(8, 18, 89, 0.55) 55%, rgba(8, 18, 89, 0.1) 100%);
}

.sh-slide-content {
    position: relative;
    z-index: 2;
    max-width: 540px;
    padding: 0 20px;
    margin-left: calc((100vw - 1200px) / 2 + 20px);
    animation: nq8f2 0.6s ease forwards;
}

@media (max-width: 1240px) {
    .sh-slide-content {
        margin-left: 40px;
    }
}

@media (max-width: 640px) {
    .sh-slide-content {
        margin-left: 20px;
    }
}

@keyframes nq8f2 {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sh-slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(224, 159, 70, 0.15);
    border: 1px solid rgba(224, 159, 70, 0.35);
    color: var(--c-gold);
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.sh-slide-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--c-white);
    line-height: 1.15;
    margin-bottom: 16px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.sh-slide-title span {
    color: var(--c-gold);
}

.sh-slide-text {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.6;
    margin-bottom: 28px;
}

.sh-slide-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.sh-slider-dots {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

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

.sh-dot.is-active {
    background: var(--c-gold);
    transform: scale(1.3);
}

.sh-slider-prev, .sh-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--c-white);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
}

.sh-slider-prev {
    left: 20px;
}

.sh-slider-next {
    right: 20px;
}

.sh-slider-prev:hover, .sh-slider-next:hover {
    background: rgba(7, 155, 250, 0.35);
    border-color: var(--c-blue);
}

/* ---- ADVANTAGES ---- */
.sh-advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 24px;
}

.sh-adv-card {
    background: var(--c-white);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    text-align: center;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

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

.sh-adv-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(7, 155, 250, 0.2);
}

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

.sh-adv-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(7, 155, 250, 0.1), rgba(8, 18, 89, 0.08));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    color: var(--c-blue);
}

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

.sh-adv-card h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--c-navy);
    margin-bottom: 8px;
}

.sh-adv-card p {
    font-size: 0.875rem;
    color: var(--c-text-muted);
    line-height: 1.55;
}

/* ---- JACKPOTS ---- */
.sh-jackpots-bg {
    background: linear-gradient(135deg, var(--c-navy) 0%, #0e1f8a 50%, #0c1870 100%);
    position: relative;
    overflow: hidden;
}

.sh-jackpots-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.sh-jackpots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
    position: relative;
    z-index: 1;
}

.sh-jackpot-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.sh-jackpot-card.is-top {
    border-color: rgba(224, 159, 70, 0.4);
    background: rgba(224, 159, 70, 0.07);
}

.sh-jackpot-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.sh-jackpot-badge {
    display: inline-block;
    background: var(--c-gold);
    color: var(--c-white);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.sh-jackpot-name {
    font-size: 1.0625rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.sh-jackpot-amount {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--c-gold);
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.sh-jackpot-provider {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 8px;
}

.sh-jackpots-bg .section-title {
    color: var(--c-white);
}

.sh-jackpots-bg .section-subtitle {
    color: rgba(255, 255, 255, 0.65);
}

.sh-jackpots-cta {
    margin-top: 40px;
    text-align: center;
}

/* ---- TOURNAMENTS ---- */
.sh-tournaments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.sh-tournament-card {
    background: var(--c-white);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.sh-tournament-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.sh-tourn-head {
    background: linear-gradient(135deg, var(--c-navy), var(--c-navy-light));
    padding: 24px;
    position: relative;
}

.sh-tourn-label {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(7, 155, 250, 0.2);
    border: 1px solid rgba(7, 155, 250, 0.3);
    color: #5ec8ff;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 4px 10px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.sh-tourn-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--c-white);
    margin-bottom: 6px;
}

.sh-tourn-desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
}

.sh-tourn-body {
    padding: 22px 24px;
}

.sh-tourn-prize {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--c-gold);
    line-height: 1.1;
    margin-bottom: 4px;
}

.sh-tourn-prize-label {
    font-size: 0.8125rem;
    color: var(--c-text-muted);
    margin-bottom: 18px;
}

.sh-timer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 20px;
}

.sh-timer-unit {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: 10px 6px;
    text-align: center;
}

.sh-timer-val {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--c-navy);
    font-variant-numeric: tabular-nums;
    line-height: 1;
}

.sh-timer-label {
    font-size: 0.6875rem;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 3px;
}

/* Mobile tournament slider */
.sh-tournaments-slider-wrap {
    display: none;
}

@media (max-width: 900px) {
    .sh-tournaments-grid {
        display: none;
    }

    .sh-tournaments-slider-wrap {
        display: block;
    }

    .sh-tournaments-slider {
        display: flex;
        overflow-x: auto;
        gap: 18px;
        padding: 4px 4px 20px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .sh-tournaments-slider::-webkit-scrollbar {
        display: none;
    }

    .sh-tournaments-slider .sh-tournament-card {
        min-width: min(86vw, 340px);
        flex-shrink: 0;
        scroll-snap-align: start;
    }
}

/* ---- APP INFO ---- */
.sh-app-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sh-app-table-wrap {
    overflow-x: auto;
}

.sh-app-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9375rem;
}

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

.sh-app-table th {
    background: var(--c-surface);
    font-weight: 600;
    color: var(--c-navy);
    white-space: nowrap;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.sh-app-table td {
    color: var(--c-text);
}

.sh-app-table tr:hover td {
    background: var(--c-surface);
}

.sh-app-downloads {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 30px;
}

.sh-app-dl-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 22px;
    border-radius: var(--radius-md);
    font-family: var(--font);
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
}

.sh-app-dl-btn.ios {
    background: #000;
    color: #fff;
}

.sh-app-dl-btn.ios:hover {
    background: #222;
    color: #fff;
    transform: translateX(3px);
}

.sh-app-dl-btn.android {
    background: #01875f;
    color: #fff;
}

.sh-app-dl-btn.android:hover {
    background: #016b4d;
    color: #fff;
    transform: translateX(3px);
}

.sh-app-dl-btn.apk {
    background: var(--c-navy);
    color: #fff;
}

.sh-app-dl-btn.apk:hover {
    background: var(--c-navy-light);
    color: #fff;
    transform: translateX(3px);
}

.sh-app-dl-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.sh-app-dl-text-sm {
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.8;
    display: block;
    margin-bottom: 1px;
}

.sh-app-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sh-app-mockup {
    width: 240px;
    height: 480px;
    background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-navy-light) 100%);
    border-radius: 36px;
    border: 8px solid #1e2f9e;
    box-shadow: 0 20px 60px rgba(8, 18, 89, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.07);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
}

.sh-app-mockup::before {
    content: '';
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 6px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
}

.sh-app-mockup-logo {
    width: 80px;
    height: auto;
    border-radius: var(--radius-md);
    filter: brightness(1.2);
}

.sh-app-mockup-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
    padding: 0 20px;
}

/* ---- SLOT GAME ---- */
.sh-slot-wrap {
    max-width: 480px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--c-navy), #0e1f8a);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 40px 36px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.sh-slot-wrap::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -20%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(7, 155, 250, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.sh-slot-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--c-white);
    margin-bottom: 8px;
}

.sh-slot-subtitle {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 28px;
}

.sh-reels {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 28px;
}

.sh-reel {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.06);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    line-height: 1;
    transition: all 0.15s;
    position: relative;
    overflow: hidden;
}

.sh-reel.is-spinning {
    animation: gv5k1 0.12s linear infinite;
}

@keyframes gv5k1 {
    0% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-4px);
    }
    75% {
        transform: translateY(4px);
    }
    100% {
        transform: translateY(0);
    }
}

.sh-slot-win {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin-bottom: 20px;
    display: none;
}

.sh-slot-win.is-visible {
    display: block;
    animation: nq8f2 0.4s ease;
}

.sh-slot-win-text {
    font-size: 1.125rem;
    font-weight: 700;
    color: #4ade80;
    margin-bottom: 12px;
}

.sh-slot-loss {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    margin-bottom: 20px;
    display: none;
}

.sh-slot-loss.is-visible {
    display: block;
    animation: nq8f2 0.4s ease;
}

.sh-slot-loss-text {
    font-size: 1rem;
    font-weight: 600;
    color: #f87171;
}

/* ---- REVIEW CONTENT ---- */
.sh-review-author {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 24px;
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    margin-bottom: 36px;
}

.sh-author-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--c-border);
    flex-shrink: 0;
}

.sh-author-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--c-navy);
    margin-bottom: 4px;
}

.sh-author-bio {
    font-size: 0.875rem;
    color: var(--c-text-muted);
    line-height: 1.5;
    margin-bottom: 8px;
}

.sh-author-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8125rem;
    color: var(--c-blue);
    font-weight: 500;
}

.sh-author-link:hover {
    color: var(--c-blue-dark);
}

.sh-review-content {
    max-width: 860px;
}

.sh-review-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--c-navy);
    margin: 28px 0 12px;
}

.sh-review-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--c-navy);
    margin: 22px 0 10px;
}

.sh-review-content h4 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--c-navy);
    margin: 18px 0 8px;
}

.sh-review-content p {
    font-size: 1rem;
    color: var(--c-text);
    line-height: 1.75;
    margin-bottom: 16px;
}

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

.sh-review-content li {
    font-size: 1rem;
    color: var(--c-text);
    line-height: 1.7;
    margin-bottom: 6px;
}

.sh-review-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    overflow-x: auto;
    display: block;
}

.sh-review-content table th, .sh-review-content table td {
    text-align: left;
    padding: 12px 16px;
    border: 1px solid var(--c-border);
}

.sh-review-content table th {
    background: var(--c-surface);
    font-weight: 600;
    color: var(--c-navy);
}

.sh-review-content a {
    color: var(--c-blue);
    text-decoration: underline;
}

.sh-review-content strong, .sh-review-content b {
    font-weight: 700;
    color: var(--c-navy);
}

.sh-review-content blockquote {
    border-left: 3px solid var(--c-blue);
    padding: 12px 20px;
    background: var(--c-surface);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--c-text-muted);
    margin: 20px 0;
}

.sh-review-placeholder {
    background: var(--c-surface);
    border: 2px dashed var(--c-border);
    border-radius: var(--radius-md);
    padding: 48px 32px;
    text-align: center;
    color: var(--c-text-muted);
    font-size: 0.9375rem;
}

/* ---- FAQ ---- */
.sh-faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sh-faq-item {
    background: var(--c-white);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition);
}

.sh-faq-item.is-open {
    border-color: rgba(7, 155, 250, 0.3);
}

.sh-faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 20px 22px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--c-navy);
    user-select: none;
    transition: color var(--transition);
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: var(--font);
}

.sh-faq-q:hover {
    color: var(--c-blue);
}

.sh-faq-icon {
    width: 28px;
    height: 28px;
    background: var(--c-surface);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition);
    color: var(--c-navy);
}

.sh-faq-item.is-open .sh-faq-icon {
    background: var(--c-blue);
    color: var(--c-white);
    transform: rotate(45deg);
}

.sh-faq-body {
    display: none;
    padding: 0 22px 20px;
    font-size: 0.9375rem;
    color: var(--c-text-muted);
    line-height: 1.7;
}

.sh-faq-item.is-open .sh-faq-body {
    display: block;
}

/* ---- FOOTER ---- */
.sh-footer {
    background: var(--c-navy-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 0;
}

.sh-footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sh-footer-brand {
}

.sh-footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 16px;
}

.sh-footer-tagline {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 20px;
}

.sh-footer-flag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.55);
}

.sh-footer-flag img {
    width: 24px;
    height: 16px;
    border-radius: 2px;
    object-fit: cover;
}

.sh-footer-social {
    display: flex;
    gap: 10px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.sh-footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition);
}

.sh-footer-social a:hover {
    background: var(--c-blue);
    border-color: var(--c-blue);
    color: var(--c-white);
}

.sh-footer-social a svg {
    width: 16px;
    height: 16px;
}

.sh-footer-col h4 {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
}

.sh-footer-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.sh-footer-nav a {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.65);
    transition: color var(--transition);
}

.sh-footer-nav a:hover {
    color: var(--c-gold);
}

.sh-footer-email {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--c-gold);
    font-size: 0.9375rem;
    margin-top: 4px;
}

.sh-footer-email:hover {
    color: var(--c-gold-light);
}

.sh-footer-mid {
    padding: 36px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 28px;
}

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

.sh-footer-logos-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.35);
    width: 100%;
}

.sh-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    padding: 7px 13px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    white-space: nowrap;
}

.sh-trust-badge svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.sh-payment-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    padding: 6px 12px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
}

.sh-age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(239, 68, 68, 0.5);
    border-radius: 50%;
    font-size: 0.8125rem;
    font-weight: 800;
    color: rgba(239, 68, 68, 0.8);
}

.sh-footer-bottom {
    padding: 24px 0 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.sh-footer-copy {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
}

.sh-footer-copy strong {
    color: rgba(255, 255, 255, 0.6);
}

/* ---- PROMO WIDGET ---- */
.sh-promo-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    background: linear-gradient(90deg, var(--c-navy-dark), var(--c-navy));
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.35);
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.sh-promo-widget.is-visible {
    transform: translateY(0);
}

.sh-promo-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 14px 20px;
    flex-wrap: wrap;
}

.sh-promo-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--c-gold);
    font-weight: 700;
    flex-shrink: 0;
}

.sh-promo-code-wrap {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(224, 159, 70, 0.3);
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.sh-promo-code {
    font-size: 1rem;
    font-weight: 800;
    color: var(--c-gold);
    letter-spacing: 0.12em;
    padding: 9px 16px;
    font-family: var(--font);
}

.sh-promo-copy {
    background: rgba(224, 159, 70, 0.12);
    border: none;
    border-left: 1px solid rgba(224, 159, 70, 0.25);
    color: var(--c-gold);
    padding: 9px 12px;
    cursor: pointer;
    transition: background var(--transition);
    display: flex;
    align-items: center;
    font-family: var(--font);
}

.sh-promo-copy:hover {
    background: rgba(224, 159, 70, 0.22);
}

.sh-promo-copy svg {
    width: 16px;
    height: 16px;
}

.sh-promo-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.4;
    flex: 1;
    min-width: 160px;
}

.sh-promo-text strong {
    color: var(--c-white);
}

.sh-promo-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-shrink: 0;
    margin-left: auto;
}

.sh-promo-close {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    flex-shrink: 0;
}

.sh-promo-close:hover {
    background: rgba(239, 68, 68, 0.2);
    color: var(--c-white);
}

.sh-promo-close svg {
    width: 14px;
    height: 14px;
}

.sh-copied-toast {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #22c55e;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 9px 22px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.4);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 1200;
    white-space: nowrap;
}

.sh-copied-toast.is-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ---- INFO PAGES ---- */
.sh-info-wrap {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

.sh-info-wrap h1 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--c-navy);
    margin-bottom: 24px;
}

.sh-info-wrap h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--c-navy);
    margin: 28px 0 10px;
}

.sh-info-wrap h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--c-navy);
    margin: 20px 0 8px;
}

.sh-info-wrap p {
    font-size: 1rem;
    color: var(--c-text);
    line-height: 1.75;
    margin-bottom: 14px;
}

.sh-info-wrap ul, .sh-info-wrap ol {
    padding-left: 24px;
    margin-bottom: 14px;
}

.sh-info-wrap li {
    font-size: 1rem;
    color: var(--c-text);
    line-height: 1.7;
    margin-bottom: 5px;
}

.sh-info-wrap a {
    color: var(--c-blue);
    text-decoration: underline;
}

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

    .sh-burger {
        display: flex;
    }

    .sh-app-inner {
        grid-template-columns: 1fr;
    }

    .sh-app-visual {
        display: none;
    }

    .sh-footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .sh-header-inner {
        grid-template-columns: auto 1fr auto;
    }

    .sh-header-actions .btn {
        padding: 9px 14px;
        font-size: 0.8125rem;
    }

    .sh-footer-top {
        grid-template-columns: 1fr;
    }

    .sh-promo-inner {
        gap: 12px;
    }

    .sh-promo-text {
        display: none;
    }

    .sh-promo-label {
        display: none;
    }

    .sh-slot-wrap {
        padding: 28px 20px;
    }

    .sh-reel {
        width: 70px;
        height: 70px;
        font-size: 2.2rem;
    }

    .qp7r1 {
        padding: 50px 0;
    }
}

/* ---- CONTACT FORM ---- */
.sh-contact-form-wrap {
    max-width: 620px;
    margin-top: 24px;
}

.sh-contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.sh-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sh-form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--c-navy);
}

.sh-form-group label span {
    color: var(--c-blue);
}

.sh-form-group input,
.sh-form-group select,
.sh-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--c-surface);
    color: var(--c-text);
    border: 1.5px solid var(--c-border);
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 0.9375rem;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.sh-form-group input:focus,
.sh-form-group select:focus,
.sh-form-group textarea:focus {
    outline: none;
    border-color: var(--c-blue);
    box-shadow: 0 0 0 3px rgba(7, 155, 250, 0.15);
}

.sh-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.sh-form-success {
    padding: 16px 20px;
    background: rgba(7, 155, 250, 0.1);
    border: 1.5px solid var(--c-blue);
    border-radius: var(--radius-md);
    color: var(--c-navy);
    font-weight: 600;
    font-size: 0.9375rem;
}

.sh-info-wrap table {
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0;
    font-size: 0.9375rem;
}

.sh-info-wrap table th, .sh-info-wrap table td {
    padding: 11px 16px;
    text-align: left;
    border: 1.5px solid var(--c-border);
}

.sh-info-wrap table thead th {
    background: var(--c-navy);
    color: var(--c-white);
    font-weight: 700;
}

.sh-info-wrap table tbody tr:nth-child(even) td {
    background: var(--c-surface);
}

/* ---- WP COMPAT STUBS (unused but present) ---- */
.wp-block-group {
}

.wp-block-image {
}

.wp-caption {
}

.alignnone {
}

.aligncenter {
}

.alignleft {
}

.alignright {
}

.entry-content {
}

.wp-post-image {
}

.entry-title {
}

.site-main {
}

.elementor-section {
}

.elementor-widget-wrap {
}

.wp-block-columns {
}

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

.widget {
}

.textwidget {
}

.comments-area {
}

.plambna {
    background: #fff;
    border: 2px solid var(--c-border);
    border-radius: 24px;
    padding: 36px;
    margin-top: 24px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    max-width: 100%;
}

.plambna > *:first-child {
    margin-top: 0 !important;
}

.plambna > *:last-child {
    margin-bottom: 0 !important;
}

.plambna h1,
.plambna h2,
.plambna h3,
.plambna h4,
.plambna h5,
.plambna h6 {
    color: var(--c-navy);
    line-height: 1.3;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.plambna p,
.plambna li {
    color: var(--c-text);
    line-height: 1.8;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.plambna ul,
.plambna ol {
    padding-left: 22px;
    margin: 18px 0;
}

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

.plambna img,
.plambna svg,
.plambna video {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 16px;
}

.plambna iframe {
    display: block;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16/9;
    border: 0;
    border-radius: 16px;
}

.plambna table {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-collapse: collapse;
}

.plambna table th,
.plambna table td {
    white-space: nowrap;
}

.plambna pre,
.plambna code {
    display: block;
    overflow: auto;
    max-width: 100%;
}

.plambna blockquote {
    margin: 24px 0;
    padding: 18px 22px;
    border-left: 4px solid var(--c-blue);
    background: var(--c-surface);
    border-radius: 12px;
}

@media (max-width: 768px) {

    .plambna {
        padding: 22px 18px;
        border-radius: 18px;
    }

    .plambna h1 {
        font-size: 30px;
    }

    .plambna h2 {
        font-size: 24px;
    }

    .plambna h3 {
        font-size: 20px;
    }

    .plambna p,
    .plambna li {
        font-size: 15px;
        line-height: 1.7;
    }

    .plambna table {
        font-size: 14px;
    }

    .plambna table th,
    .plambna table td {
        padding: 10px 12px;
    }

}

@media (max-width: 480px) {

    .plambna {
        padding: 16px;
        border-radius: 16px;
    }

    .plambna h1 {
        font-size: 26px;
    }

    .plambna h2 {
        font-size: 22px;
    }

    .plambna h3 {
        font-size: 18px;
    }

    .plambna p,
    .plambna li {
        font-size: 14px;
    }

    .plambna img,
    .plambna iframe,
    .plambna table,
    .plambna pre,
    .plambna code {
        max-width: 100% !important;
    }

    .plambna * {
        min-width: 0;
    }

}