@import url('https://fonts.googleapis.com/css2?family=Alumni+Sans+SC:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --clr-bg: #121723;
    --clr-header: #171E2F;
    --clr-btn-primary: #6FEA5C;
    --clr-btn-secondary: #9AF08D;
    --clr-text: #E8EDF5;
    --clr-text-muted: #8A9BBF;
    --clr-border: #243050;
    --clr-card: #1A2238;
    --clr-card-hover: #1F2A45;
    --clr-accent: #6FEA5C;
    --clr-accent2: #9AF08D;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --transition: 0.25s ease;
    --font-main: 'Alumni Sans SC', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    background: var(--clr-bg);
}

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

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

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

a:hover {
    color: var(--clr-btn-primary);
}

ul {
    list-style: none;
}

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

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

.box {
    width: 100%;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
    white-space: nowrap;
    text-decoration: none;
}

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

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

.btn--primary {
    background: var(--clr-btn-primary);
    color: #0d1520;
    box-shadow: 0 4px 18px rgba(111, 234, 92, 0.35);
}

.btn--primary:hover {
    box-shadow: 0 6px 24px rgba(111, 234, 92, 0.55);
    color: #0d1520;
}

.btn--secondary {
    background: transparent;
    color: var(--clr-btn-secondary);
    border: 2px solid var(--clr-btn-secondary);
}

.btn--secondary:hover {
    background: rgba(154, 240, 141, 0.1);
    color: var(--clr-btn-secondary);
}

.btn--lg {
    padding: 14px 32px;
    font-size: 18px;
}

.btn--sm {
    padding: 7px 16px;
    font-size: 14px;
}

.section-title {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 800;
    color: var(--clr-text);
    text-align: center;
    margin-bottom: 36px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--clr-accent);
    margin: 12px auto 0;
    border-radius: 2px;
}

/* ===== HEADER ===== */
.site-header {
    background: var(--clr-header);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--clr-border);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

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

.header-logo a {
    display: flex;
    align-items: center;
}

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

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

.nav-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    color: var(--clr-text-muted);
    font-size: 15px;
    font-weight: 600;
    transition: color var(--transition), background var(--transition);
    text-decoration: none;
}

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

.nav-item svg {
    flex-shrink: 0;
    opacity: 0.7;
}

.nav-item:hover svg {
    opacity: 1;
}

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

.online-count {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--clr-text-muted);
    background: rgba(111, 234, 92, 0.08);
    border: 1px solid rgba(111, 234, 92, 0.2);
    border-radius: 20px;
    padding: 4px 12px;
    margin-right: 8px;
}

.online-dot {
    width: 8px;
    height: 8px;
    background: var(--clr-accent);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--clr-accent);
    animation: pulse 2s infinite;
}

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

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

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--clr-text);
    border-radius: 2px;
    transition: all var(--transition);
}

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

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

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

/* ===== HERO ===== */
.hero-section {
    position: relative;
    min-height: 540px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--clr-bg);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/vegashero-hero.png');
    background-size: cover;
    background-position: center;
    filter: brightness(0.35);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(18, 23, 35, 0.82) 0%, rgba(23, 30, 47, 0.55) 100%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    width: 100%;
}

.hero-content h1 {
    font-size: clamp(32px, 5vw, 58px);
    font-weight: 900;
    line-height: 1.1;
    color: var(--clr-text);
    margin-bottom: 16px;
}

.hero-content h1 span {
    color: var(--clr-accent);
}

.hero-content p {
    font-size: 18px;
    color: var(--clr-text-muted);
    margin-bottom: 28px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

.hero-bonus-card {
    background: rgba(26, 34, 56, 0.92);
    border: 2px solid rgba(111, 234, 92, 0.35);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    text-align: center;
    box-shadow: 0 8px 40px rgba(111, 234, 92, 0.12);
    backdrop-filter: blur(8px);
}

.bonus-label {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--clr-text-muted);
    margin-bottom: 8px;
}

.bonus-amount {
    font-size: clamp(36px, 5vw, 54px);
    font-weight: 900;
    color: var(--clr-accent);
    line-height: 1;
    margin-bottom: 4px;
}

.bonus-sub {
    font-size: 18px;
    color: var(--clr-text);
    margin-bottom: 20px;
    font-weight: 600;
}

.promo-code-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(111, 234, 92, 0.08);
    border: 1px dashed rgba(111, 234, 92, 0.4);
    border-radius: var(--radius-sm);
    padding: 10px 16px;
    margin-bottom: 20px;
    cursor: pointer;
}

.promo-code-label {
    font-size: 13px;
    color: var(--clr-text-muted);
}

.promo-code-val {
    font-size: 20px;
    font-weight: 800;
    color: var(--clr-accent);
    letter-spacing: 3px;
}

.promo-copy-icon {
    color: var(--clr-accent2);
    font-size: 18px;
}

.promo-copied {
    font-size: 12px;
    color: var(--clr-accent);
    display: none;
}

.promo-code-wrap.copied .promo-copied {
    display: block;
}

.hero-bonus-card .btn {
    width: 100%;
    margin-bottom: 10px;
}

.hero-bonus-card .btn:last-child {
    margin-bottom: 0;
}

.bonus-terms {
    font-size: 12px;
    color: var(--clr-text-muted);
    margin-top: 12px;
}

/* ===== CONTENT SECTIONS ===== */
.content-section {
    padding: 64px 20px;
    max-width: 1280px;
    margin: 0 auto;
}

/* ===== JACKPOTS ===== */
.jackpots-section {
    padding: 64px 20px;
    background: rgba(23, 30, 47, 0.5);
}

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

.jackpots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.jackpot-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    text-align: center;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
}

.jackpot-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--clr-accent), var(--clr-accent2));
}

.jackpot-card:hover {
    transform: translateY(-4px);
    border-color: rgba(111, 234, 92, 0.4);
    box-shadow: 0 8px 30px rgba(111, 234, 92, 0.1);
}

.jackpot-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.jackpot-name {
    font-size: 14px;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-weight: 600;
}

.jackpot-amount {
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 900;
    color: var(--clr-accent);
    animation: countUp 3s ease-out;
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.jackpot-currency {
    font-size: 14px;
    color: var(--clr-text-muted);
    margin-top: 4px;
}

/* ===== PAYMENT METHODS ===== */
.payments-section {
    padding: 64px 20px;
}

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

.table-scroll {
    overflow-x: auto;
    border-radius: var(--radius-md);
}

.payments-table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
    font-size: 15px;
}

.payments-table th {
    background: var(--clr-header);
    color: var(--clr-text);
    font-weight: 700;
    padding: 14px 16px;
    text-align: left;
    border-bottom: 2px solid var(--clr-accent);
    white-space: nowrap;
}

.payments-table td {
    padding: 13px 16px;
    border-bottom: 1px solid var(--clr-border);
    color: var(--clr-text);
    background: var(--clr-card);
    vertical-align: middle;
}

.payments-table tr:hover td {
    background: var(--clr-card-hover);
}

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

.pay-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.pay-icon {
    width: 36px;
    height: 24px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    color: var(--clr-text);
    flex-shrink: 0;
}

.badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
}

.badge--green {
    background: rgba(111, 234, 92, 0.15);
    color: var(--clr-accent);
    border: 1px solid rgba(111, 234, 92, 0.3);
}

.badge--blue {
    background: rgba(100, 160, 255, 0.15);
    color: #64A0FF;
    border: 1px solid rgba(100, 160, 255, 0.3);
}

/* ===== TOURNAMENTS ===== */
.tournaments-section {
    padding: 64px 20px;
    background: rgba(23, 30, 47, 0.5);
}

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

.tournaments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}

.tournament-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.tournament-card:hover {
    transform: translateY(-4px);
    border-color: rgba(111, 234, 92, 0.4);
    box-shadow: 0 8px 30px rgba(111, 234, 92, 0.1);
}

.tournament-header {
    background: linear-gradient(135deg, #1A2A50, #0F1825);
    padding: 20px;
    border-bottom: 1px solid var(--clr-border);
}

.tournament-badge {
    display: inline-block;
    background: rgba(111, 234, 92, 0.15);
    color: var(--clr-accent);
    border: 1px solid rgba(111, 234, 92, 0.3);
    border-radius: 4px;
    padding: 2px 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.tournament-name {
    font-size: 18px;
    font-weight: 800;
    color: var(--clr-text);
    margin-bottom: 6px;
}

.tournament-desc {
    font-size: 14px;
    color: var(--clr-text-muted);
    line-height: 1.5;
}

.tournament-body {
    padding: 20px;
}

.tournament-prize {
    font-size: 26px;
    font-weight: 900;
    color: var(--clr-accent);
    margin-bottom: 12px;
}

.tournament-timer-label {
    font-size: 12px;
    color: var(--clr-text-muted);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tournament-timer {
    display: flex;
    gap: 8px;
    margin-bottom: 18px;
}

.timer-block {
    background: var(--clr-bg);
    border: 1px solid var(--clr-border);
    border-radius: 6px;
    padding: 6px 10px;
    text-align: center;
    min-width: 46px;
}

.timer-num {
    font-size: 20px;
    font-weight: 800;
    color: var(--clr-text);
    display: block;
    line-height: 1;
}

.timer-unit {
    font-size: 10px;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    margin-top: 2px;
    display: block;
}

/* ===== GAMES ===== */
.games-section {
    padding: 64px 20px;
}

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

.games-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.game-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.game-card:hover {
    transform: translateY(-5px);
    border-color: rgba(111, 234, 92, 0.4);
    box-shadow: 0 10px 30px rgba(111, 234, 92, 0.15);
}

.game-thumb {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.game-info {
    padding: 12px;
}

.game-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--clr-text);
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.game-info .btn {
    width: 100%;
    font-size: 13px;
    padding: 8px;
}

/* ===== WHEEL ===== */
.wheel-section {
    padding: 64px 20px;
    background: rgba(23, 30, 47, 0.5);
}

.wheel-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.wheel-wrap {
    position: relative;
    display: inline-block;
    margin: 0 auto 32px;
}

#luckyWheel {
    display: block;
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(111, 234, 92, 0.25), 0 0 80px rgba(111, 234, 92, 0.1);
}

.wheel-pointer {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 30px solid var(--clr-accent);
    filter: drop-shadow(0 2px 6px rgba(111, 234, 92, 0.5));
    z-index: 10;
}

.wheel-result {
    min-height: 60px;
    margin: 16px 0;
    font-size: 20px;
    font-weight: 700;
    color: var(--clr-accent);
    display: none;
    animation: fadeIn 0.5s ease;
}

.wheel-result.show {
    display: block;
}

.wheel-result p {
    margin-bottom: 12px;
}

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

/* ===== REVIEW CONTENT ===== */
.review-section {
    padding: 64px 20px;
}

.review-inner {
    max-width: 900px;
    margin: 0 auto;
}

.review-content {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    font-size: 17px;
    line-height: 1.75;
    color: var(--clr-text);
}

.review-content h2 {
    font-size: 26px;
    font-weight: 800;
    color: var(--clr-text);
    margin: 28px 0 14px;
}

.review-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--clr-accent2);
    margin: 22px 0 10px;
}

.review-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--clr-text);
    margin: 18px 0 8px;
}

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

.review-content a {
    color: var(--clr-accent2);
    text-decoration: underline;
}

.review-content a:hover {
    color: var(--clr-accent);
}

.review-content ul, .review-content ol {
    margin: 12px 0 20px 24px;
}

.review-content ul {
    list-style: disc;
}

.review-content ol {
    list-style: decimal;
}

.review-content li {
    margin-bottom: 6px;
    color: var(--clr-text);
}

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

.review-content em {
    color: var(--clr-text-muted);
}

.review-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.review-content th {
    background: var(--clr-header);
    color: var(--clr-text);
    padding: 10px 14px;
    text-align: left;
    border-bottom: 2px solid var(--clr-accent);
    font-weight: 700;
}

.review-content td {
    padding: 10px 14px;
    border-bottom: 1px solid var(--clr-border);
}

.review-content blockquote {
    border-left: 3px solid var(--clr-accent);
    padding: 12px 20px;
    background: rgba(111, 234, 92, 0.05);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 20px 0;
    color: var(--clr-text-muted);
    font-style: italic;
}

.review-content img {
    border-radius: var(--radius-sm);
    margin: 16px 0;
}

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

/* ===== AUTHOR ===== */
.author-section {
    padding: 40px 20px 64px;
}

.author-inner {
    max-width: 900px;
    margin: 0 auto;
}

.author-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 28px;
    align-items: start;
}

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

.author-name {
    font-size: 22px;
    font-weight: 800;
    color: var(--clr-text);
    margin-bottom: 4px;
}

.author-role {
    font-size: 15px;
    color: var(--clr-accent2);
    font-weight: 600;
    margin-bottom: 12px;
}

.author-bio {
    font-size: 15px;
    color: var(--clr-text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.author-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.author-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    background: rgba(154, 240, 141, 0.1);
    border: 1px solid rgba(154, 240, 141, 0.3);
    color: var(--clr-accent2);
    font-size: 14px;
    font-weight: 600;
    transition: background var(--transition), border-color var(--transition);
    text-decoration: none;
}

.author-link:hover {
    background: rgba(154, 240, 141, 0.2);
    border-color: var(--clr-accent2);
    color: var(--clr-accent2);
}

.author-date {
    font-size: 13px;
    color: var(--clr-text-muted);
    margin-top: 10px;
}

/* ===== FAQ ===== */
.faq-section {
    padding: 64px 20px;
}

.faq-inner {
    max-width: 900px;
    margin: 0 auto;
}

.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 var(--transition);
}

.faq-item:hover {
    border-color: rgba(111, 234, 92, 0.3);
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    color: var(--clr-text);
    font-family: var(--font-main);
    font-size: 17px;
    font-weight: 700;
    padding: 18px 24px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    transition: color var(--transition);
}

.faq-q:hover {
    color: var(--clr-accent);
}

.faq-icon {
    width: 24px;
    height: 24px;
    border: 2px solid var(--clr-text-muted);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform var(--transition), border-color var(--transition);
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    border-color: var(--clr-accent);
}

.faq-icon::before {
    content: '+';
    font-size: 16px;
    color: var(--clr-text-muted);
    line-height: 1;
}

.faq-item.open .faq-icon::before {
    color: var(--clr-accent);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding var(--transition);
    padding: 0 24px;
    color: var(--clr-text-muted);
    font-size: 15px;
    line-height: 1.7;
}

.faq-item.open .faq-a {
    max-height: 500px;
    padding: 0 24px 18px;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--clr-header);
    border-top: 1px solid var(--clr-border);
    padding: 48px 20px 24px;
}

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

.footer-top {
    display: grid;
    grid-template-columns: 240px 1fr 1fr;
    gap: 40px;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--clr-border);
    margin-bottom: 32px;
}

.footer-logo-wrap img {
    height: 40px;
    margin-bottom: 14px;
}

.footer-country {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--clr-text-muted);
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 14px;
    color: var(--clr-text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.footer-social {
    display: flex;
    gap: 8px;
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--clr-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-text-muted);
    font-size: 16px;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
    text-decoration: none;
}

.social-btn:hover {
    background: rgba(111, 234, 92, 0.12);
    border-color: rgba(111, 234, 92, 0.4);
    color: var(--clr-accent);
}

.footer-col h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--clr-text);
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-nav-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-nav-list a {
    font-size: 14px;
    color: var(--clr-text-muted);
    transition: color var(--transition);
}

.footer-nav-list a:hover {
    color: var(--clr-accent2);
}

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

.logo-badge {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--clr-border);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    color: var(--clr-text-muted);
    white-space: nowrap;
}

.footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: start;
    padding-top: 20px;
    border-top: 1px solid var(--clr-border);
}

.footer-legal {
    font-size: 13px;
    color: var(--clr-text-muted);
    line-height: 1.6;
    max-width: 760px;
}

.footer-legal a {
    color: var(--clr-text-muted);
    text-decoration: underline;
}

.footer-legal a:hover {
    color: var(--clr-accent2);
}

.footer-copyright {
    font-size: 13px;
    color: var(--clr-text-muted);
    white-space: nowrap;
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #c0392b;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    flex-shrink: 0;
}

/* =====   ===== */
.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(90deg, #0d1520 0%, #171E2F 100%);
    border-top: 2px solid var(--clr-accent);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    box-shadow: 0 -4px 24px rgba(111, 234, 92, 0.2);
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.widget-text {
    font-size: 16px;
    font-weight: 700;
    color: var(--clr-text);
}

.widget-text span {
    color: var(--clr-accent);
}

.widget-promo {
    background: rgba(111, 234, 92, 0.12);
    border: 1px dashed rgba(111, 234, 92, 0.5);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 14px;
    font-weight: 800;
    color: var(--clr-accent);
    letter-spacing: 2px;
}

.widget-close {
    background: none;
    border: none;
    color: var(--clr-text-muted);
    font-size: 20px;
    cursor: pointer;
    padding: 4px;
    transition: color var(--transition);
    margin-left: 8px;
}

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

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

.slider-track {
    display: flex;
    transition: transform 0.4s ease;
}

.slider-item {
    flex-shrink: 0;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.slider-btn {
    width: 36px;
    height: 36px;
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: 50%;
    color: var(--clr-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition), border-color var(--transition);
    font-size: 16px;
}

.slider-btn:hover {
    background: rgba(111, 234, 92, 0.12);
    border-color: var(--clr-accent);
}

.slider-dots {
    display: flex;
    gap: 6px;
    align-items: center;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--clr-border);
    cursor: pointer;
    transition: background var(--transition), width var(--transition);
}

.slider-dot.active {
    background: var(--clr-accent);
    width: 20px;
    border-radius: 4px;
}

/* =====  ===== */
.breadcrumb-wrap {
    padding: 14px 20px;
    max-width: 1280px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 14px;
    color: var(--clr-text-muted);
}

.breadcrumb a {
    color: var(--clr-text-muted);
}

.breadcrumb a:hover {
    color: var(--clr-accent2);
}

.breadcrumb-sep {
    opacity: 0.4;
}

.info-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px 64px;
}

.info-content h1 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900;
    margin-bottom: 24px;
    color: var(--clr-text);
}

.info-content h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 28px 0 12px;
    color: var(--clr-text);
}

.info-content p {
    color: var(--clr-text-muted);
    margin-bottom: 14px;
    font-size: 16px;
    line-height: 1.7;
}

.info-content ul, .info-content ol {
    margin: 10px 0 18px 24px;
}

.info-content ul {
    list-style: disc;
}

.info-content ol {
    list-style: decimal;
}

.info-content li {
    color: var(--clr-text-muted);
    margin-bottom: 6px;
    font-size: 16px;
    line-height: 1.7;
}

.info-content a {
    color: var(--clr-accent2);
    text-decoration: underline;
}

.wp-block-xrt921 {
    display: none;
    visibility: hidden;
}

.elementor-ph2k47 {
    opacity: 0;
    pointer-events: none;
}

.widget-area-9f3mx {
    height: 0;
    overflow: hidden;
}

.yoast-q8v2n {
    position: absolute;
    left: -9999px;
}

/* =====  ===== */
@media (max-width: 1100px) {
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .footer-top > :first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-bonus-card {
        max-width: 440px;
        margin: 0 auto;
    }

    .tournaments-grid {
        grid-template-columns: 1fr 1fr;
    }

    .author-card {
        grid-template-columns: 80px 1fr;
        gap: 20px;
    }

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

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

    .footer-copyright {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .header-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--clr-header);
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        border-bottom: 1px solid var(--clr-border);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        z-index: 999;
        gap: 4px;
    }

    .header-nav.active {
        display: flex;
    }

    .nav-item {
        padding: 12px 16px;
        border-radius: var(--radius-sm);
    }

    .burger {
        display: flex;
    }

    .online-count {
        display: none;
    }

    .header-inner {
        grid-template-columns: auto 1fr auto auto;
    }

    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tournaments-grid {
        grid-template-columns: 1fr;
    }

    .sticky-widget {
        padding: 10px 14px;
        gap: 10px;
    }

    .widget-text {
        font-size: 14px;
    }

    .widget-promo {
        display: none;
    }

    .review-content {
        padding: 24px;
    }

    .jackpots-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .author-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .author-avatar {
        margin: 0 auto;
    }

    .author-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-inner {
        padding: 40px 16px;
    }

    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .jackpots-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-bonus-card {
        padding: 24px 18px;
    }

    .btn--lg {
        padding: 12px 22px;
        font-size: 16px;
    }

    .content-section, .faq-section, .review-section, .author-section, .games-section, .payments-section {
        padding: 44px 16px;
    }
}

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

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

.js-lazyload-img {
    transition: opacity 0.4s ease;
}

.js-lazyload-img.lazy {
    opacity: 0;
}

.wp-content-z8x3m {
    max-width: 0;
}

.widget-inner-k2p7 {
    display: contents;
}

#tournaments .slider-track,
#games .slider-track {
    transform: none !important;
    transition: none !important;
    width: 100% !important;
}

#tournaments .slider-controls,
#games .slider-controls {
    display: none !important;
}

#tournaments .slider-item,
#games .slider-item {
    flex: none !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: 100% !important;
}

#tournaments .tournaments-grid,
#games .games-grid {
    overflow: visible !important;
}

#tournaments .slider-track {
    display: grid !important;
    grid-template-columns:repeat(3, minmax(0, 1fr)) !important;
    gap: 24px !important;
}

#games .slider-track {
    display: grid !important;
    grid-template-columns:repeat(6, minmax(0, 1fr)) !important;
    gap: 18px !important;
}

#games .game-card {
    width: 100% !important;
    min-width: 0 !important;
    overflow: hidden !important;
}

#games .game-thumb {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1/1 !important;
    object-fit: cover !important;
    object-position: center !important;
}

@media (max-width: 1024px) {
    #tournaments .slider-track {
        grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
    }

    #games .slider-track {
        grid-template-columns:repeat(3, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 768px) {
    #tournaments .slider-track {
        grid-template-columns:1fr !important;
    }

    #games .slider-track {
        grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
    }

    #tournaments,
    #games {
        padding: 44px 14px !important;
    }

    #tournaments .tournament-card,
    #games .game-card {
        width: 100% !important;
        max-width: 100% !important;
    }

    #games .game-name {
        white-space: normal !important;
        overflow: visible !important;
        text-overflow: unset !important;
    }
}

@media (max-width: 480px) {
    #games .slider-track {
        grid-template-columns:1fr !important;
    }

    #games .game-thumb {
        aspect-ratio: 16/10 !important;
    }
}

.vh-games-section {
    padding: 70px 20px;
    background: #121723;
}

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

.vh-games-title {
    margin: 0 0 42px;
    text-align: center;
    color: #fff;
    font-size: 38px;
    line-height: 1.1;
    font-weight: 900;
}

.vh-games-title::after {
    content: "";
    display: block;
    width: 72px;
    height: 4px;
    margin: 18px auto 0;
    border-radius: 999px;
    background: #6FEA5C;
}

.vh-games-list {
    display: grid;
    grid-template-columns:repeat(6, minmax(0, 1fr));
    gap: 18px;
}

.vh-game-card {
    min-width: 0;
    overflow: hidden;
    border-radius: 20px;
    background: #1A2238;
    border: 1px solid #243050;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .28);
}

.vh-game-img {
    display: block;
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.vh-game-body {
    padding: 14px;
}

.vh-game-name {
    min-height: 42px;
    margin: 0 0 12px;
    color: #fff;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 900;
}

.vh-game-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 42px;
    border-radius: 10px;
    background: #6FEA5C;
    color: #0d1520;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
}

@media (max-width: 1100px) {
    .vh-games-list {
        grid-template-columns:repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .vh-games-section {
        padding: 46px 14px;
    }

    .vh-games-title {
        font-size: 28px;
        margin-bottom: 28px;
    }

    .vh-games-list {
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .vh-game-card {
        border-radius: 16px;
    }

    .vh-game-body {
        padding: 12px;
    }

    .vh-game-name {
        font-size: 15px;
        min-height: 38px;
    }
}

@media (max-width: 480px) {
    .vh-games-list {
        grid-template-columns:1fr;
    }

    .vh-game-img {
        aspect-ratio: 16/10;
    }
}

@media (max-width: 768px) {

    html,
    body {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
        font-size: 18px !important;
    }

    body {
        min-width: 0 !important;
    }

    .wrapper,
    main,
    #main-content,
    .site-body {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        overflow-x: hidden !important;
    }

    .site-header {
        position: sticky !important;
        top: 0 !important;
        z-index: 99999 !important;
    }

    .header-inner {
        width: 100% !important;
        max-width: 100% !important;
        display: grid !important;
        grid-template-columns:auto 1fr auto !important;
        gap: 8px !important;
        padding: 10px 12px !important;
    }

    .header-logo img {
        height: 34px !important;
        width: auto !important;
    }

    .header-nav,
    .online-count {
        display: none !important;
    }

    .header-actions {
        gap: 6px !important;
    }

    .header-actions .btn {
        width: auto !important;
        min-height: 34px !important;
        padding: 8px 12px !important;
        font-size: 14px !important;
    }

    .burger {
        display: flex !important;
    }

    .hero-section {
        min-height: auto !important;
        padding: 0 !important;
    }

    .hero-bg {
        background-position: center !important;
    }

    .hero-inner {
        display: flex !important;
        flex-direction: column !important;
        gap: 22px !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 44px 16px 38px !important;
    }

    .hero-content {
        width: 100% !important;
        text-align: center !important;
    }

    .hero-content h1 {
        font-size: 36px !important;
        line-height: 1.08 !important;
        margin-bottom: 14px !important;
    }

    .hero-content p {
        font-size: 17px !important;
        line-height: 1.55 !important;
        margin-bottom: 22px !important;
    }

    .hero-actions {
        display: grid !important;
        grid-template-columns:1fr !important;
        gap: 12px !important;
        width: 100% !important;
    }

    .btn,
    .btn--lg,
    .btn--sm,
    .btn--primary,
    .btn--secondary {
        width: 100% !important;
        min-height: 48px !important;
        padding: 13px 16px !important;
        font-size: 16px !important;
        line-height: 1.2 !important;
        white-space: normal !important;
    }

    .hero-bonus-card {
        width: 100% !important;
        max-width: 100% !important;
        padding: 24px 18px !important;
        border-radius: 18px !important;
    }

    .bonus-label {
        font-size: 14px !important;
    }

    .bonus-amount {
        font-size: 46px !important;
    }

    .bonus-sub {
        font-size: 20px !important;
    }

    .promo-code-wrap {
        width: 100% !important;
        flex-wrap: wrap !important;
        padding: 12px !important;
    }

    .breadcrumb-wrap {
        display: none !important;
    }

    .jackpots-section,
    .payments-section,
    .tournaments-section,
    .review-section,
    .author-section,
    .faq-section,
    .wheel-section,
    .vh-games-section {
        width: 100% !important;
        padding: 42px 16px !important;
    }

    .jackpots-inner,
    .payments-inner,
    .tournaments-inner,
    .review-inner,
    .author-inner,
    .faq-inner,
    .wheel-inner,
    .vh-games-inner {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
    }

    .section-title,
    .vh-games-title {
        font-size: 30px !important;
        line-height: 1.15 !important;
        margin-bottom: 28px !important;
    }

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

    .jackpot-card {
        width: 100% !important;
        padding: 22px 16px !important;
        border-radius: 16px !important;
    }

    .jackpot-icon {
        font-size: 38px !important;
    }

    .jackpot-name {
        font-size: 17px !important;
    }

    .jackpot-amount {
        font-size: 30px !important;
    }

    .table-scroll {
        width: 100% !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }

    .payments-table {
        min-width: 760px !important;
    }

    #tournaments .slider-track {
        display: grid !important;
        grid-template-columns:1fr !important;
        gap: 16px !important;
        width: 100% !important;
        transform: none !important;
    }

    #tournaments .slider-item,
    #tournaments .tournament-card {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }

    .slider-controls {
        display: none !important;
    }

    .tournament-header,
    .tournament-body {
        padding: 20px 16px !important;
    }

    .tournament-name {
        font-size: 24px !important;
    }

    .tournament-desc {
        font-size: 16px !important;
    }

    .tournament-prize {
        font-size: 34px !important;
    }

    .tournament-timer {
        display: grid !important;
        grid-template-columns:repeat(4, 1fr) !important;
        gap: 8px !important;
    }

    .timer-block {
        min-width: 0 !important;
        padding: 10px 4px !important;
    }

    .timer-num {
        font-size: 22px !important;
    }

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

    .vh-game-card {
        width: 100% !important;
        border-radius: 18px !important;
    }

    .vh-game-img {
        width: 100% !important;
        aspect-ratio: 16/10 !important;
        object-fit: cover !important;
    }

    .vh-game-body {
        padding: 16px !important;
    }

    .vh-game-name {
        font-size: 20px !important;
        min-height: auto !important;
    }

    .vh-game-btn {
        min-height: 48px !important;
        font-size: 16px !important;
    }

    #luckyWheel {
        width: 260px !important;
        height: 260px !important;
    }

    .review-content {
        padding: 22px 16px !important;
        font-size: 17px !important;
        border-radius: 18px !important;
    }

    .review-content h2 {
        font-size: 28px !important;
    }

    .review-content h3 {
        font-size: 23px !important;
    }

    .review-content p,
    .review-content li {
        font-size: 17px !important;
        line-height: 1.7 !important;
    }

    .review-content table {
        display: block !important;
        overflow-x: auto !important;
        white-space: nowrap !important;
    }

    .author-card {
        display: flex !important;
        flex-direction: column !important;
        gap: 16px !important;
        text-align: center !important;
        padding: 22px 16px !important;
    }

    .author-avatar {
        margin: 0 auto !important;
    }

    .author-links {
        justify-content: center !important;
    }

    .faq-q {
        padding: 18px 16px !important;
        font-size: 19px !important;
    }

    .faq-a {
        font-size: 17px !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .footer-top,
    .footer-bottom {
        display: flex !important;
        flex-direction: column !important;
        gap: 22px !important;
        text-align: center !important;
    }

    .sticky-widget {
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        display: grid !important;
        grid-template-columns:1fr !important;
        gap: 8px !important;
        padding: 10px 14px !important;
        text-align: center !important;
    }

    .widget-text {
        font-size: 14px !important;
    }

    .widget-close {
        position: absolute !important;
        top: 6px !important;
        right: 8px !important;
    }

}

@media (max-width: 480px) {

    .hero-content h1 {
        font-size: 32px !important;
    }

    .section-title,
    .vh-games-title {
        font-size: 26px !important;
    }

    .hero-inner {
        padding: 36px 14px 34px !important;
    }

    .jackpots-section,
    .payments-section,
    .tournaments-section,
    .review-section,
    .author-section,
    .faq-section,
    .wheel-section,
    .vh-games-section {
        padding: 36px 14px !important;
    }

    #luckyWheel {
        width: 230px !important;
        height: 230px !important;
    }

}

@media (max-width: 768px) {

    .site-header {
        position: sticky;
        top: 0;
        z-index: 99999;
    }

    .header-inner {
        position: relative;
    }

    .header-nav {
        position: fixed !important;
        top: 54px !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 99998 !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 8px !important;
        padding: 14px !important;
        background: #171E2F !important;
        border-top: 1px solid #243050 !important;
        box-shadow: 0 18px 40px rgba(0, 0, 0, .45) !important;
        transform: translateY(-120%) !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        transition: .25s ease !important;
    }

    .header-nav.active,
    body.menu-open .header-nav {
        transform: translateY(0) !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }

    .header-nav .nav-item {
        width: 100% !important;
        min-height: 48px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 10px !important;
        padding: 0 14px !important;
        border-radius: 12px !important;
        background: #1A2238 !important;
        border: 1px solid #243050 !important;
        color: #fff !important;
        font-size: 17px !important;
        font-weight: 800 !important;
    }

    .burger {
        display: flex !important;
        width: 38px !important;
        height: 38px !important;
        align-items: center !important;
        justify-content: center !important;
        flex-direction: column !important;
        gap: 5px !important;
        border: 0 !important;
        background: transparent !important;
        padding: 0 !important;
    }

    .burger span {
        width: 24px !important;
        height: 2px !important;
        background: #fff !important;
        border-radius: 2px !important;
        transition: .25s ease !important;
    }

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

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

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

}

html,
body {
    height: auto !important;
    min-height: 100% !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
}

.wrapper {
    display: block !important;
    min-height: auto !important;
    overflow: visible !important;
    transform: none !important;
}

.site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 2147483647 !important;
    background: #171E2F !important;
    border-bottom: 1px solid #243050 !important;
    box-shadow: 0 8px 28px rgba(0, 0, 0, .45) !important;
}

body {
    padding-top: 68px !important;
}

.header-inner {
    min-height: 68px !important;
}

@media (max-width: 768px) {
    body {
        padding-top: 54px !important;
    }

    .site-header {
        min-height: 54px !important;
    }

    .header-inner {
        min-height: 54px !important;
    }

    .header-nav {
        position: fixed !important;
        top: 54px !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 2147483646 !important;
    }
}