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

:root {
    --clr-header: #343a6c;
    --clr-footer: #343a6c;
    --clr-bg: #0e112b;
    --clr-btn-primary: #1abd8c;
    --clr-btn-secondary: #848cc9;
    --clr-text: #e8eaf6;
    --clr-text-muted: #a0aac4;
    --clr-border: rgba(132, 140, 201, 0.25);
    --clr-card: rgba(255, 255, 255, 0.04);
    --clr-card-hover: rgba(255, 255, 255, 0.08);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
    --transition: 0.25s ease;
}

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

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

body {
    font-family: 'Montserrat', Arial, sans-serif;
    background: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.6;
    font-size: 15px;
}

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

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

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

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

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

.box {
    width: 100%;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    border: none;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), opacity var(--transition);
    white-space: nowrap;
    text-decoration: none;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
}

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

.btn--primary {
    background: linear-gradient(135deg, #1abd8c 0%, #13a87c 100%);
    color: #fff;
}

.btn--primary:hover {
    background: linear-gradient(135deg, #1dd49e 0%, #1abd8c 100%);
    color: #fff;
}

.btn--secondary {
    background: linear-gradient(135deg, #848cc9 0%, #6e77b8 100%);
    color: #fff;
}

.btn--secondary:hover {
    background: linear-gradient(135deg, #9aa3d6 0%, #848cc9 100%);
    color: #fff;
}

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

.btn--outline:hover {
    background: var(--clr-btn-secondary);
    color: #fff;
}

.btn--lg {
    padding: 14px 32px;
    font-size: 16px;
    border-radius: var(--radius-md);
}

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

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

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 18px;
    padding: 12px 0;
}

.header-logo img {
    height: 44px;
    width: auto;
    border-radius: var(--radius-sm);
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    border-radius: var(--radius-sm);
    color: rgba(232, 234, 246, 0.85);
    font-size: 13px;
    font-weight: 600;
    transition: background var(--transition), color var(--transition);
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

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

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

.online-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(26, 189, 140, 0.12);
    border: 1px solid rgba(26, 189, 140, 0.3);
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--clr-btn-primary);
    margin-right: 8px;
}

.online-dot {
    width: 7px;
    height: 7px;
    background: var(--clr-btn-primary);
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
}

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

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.05);
    border: none;
    margin-left: 4px;
}

.burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform var(--transition), opacity 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);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--clr-header);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px 18px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

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

.mobile-menu .nav-link {
    padding: 10px 14px;
    font-size: 14px;
    border-radius: var(--radius-sm);
}

.mobile-menu .nav-link:hover {
    background: rgba(255, 255, 255, 0.08);
}

.mobile-nav-list {
    display: grid;
    gap: 4px;
    margin-bottom: 12px;
}

/* ===================== HERO SLIDER ===================== */
.hero-section {
    position: relative;
    overflow: hidden;
}

.slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.slide {
    min-width: 100%;
    position: relative;
    min-height: 520px;
    display: grid;
    align-items: center;
    overflow: hidden;
}

.slide-bg {
    position: absolute;
    inset: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(14, 17, 43, 0.92) 0%, rgba(52, 58, 108, 0.65) 50%, rgba(14, 17, 43, 0.4) 100%);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 60px 0;
}

.slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(26, 189, 140, 0.2);
    border: 1px solid rgba(26, 189, 140, 0.5);
    color: var(--clr-btn-primary);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 18px;
}

.slide-title {
    font-size: clamp(28px, 5vw, 52px);
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 14px;
}

.slide-title span {
    color: var(--clr-btn-primary);
}

.slide-desc {
    font-size: 16px;
    color: rgba(232, 234, 246, 0.85);
    margin-bottom: 28px;
    line-height: 1.6;
}

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

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

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

.slider-dot.active {
    background: var(--clr-btn-primary);
    transform: scale(1.35);
}

.slider-prev, .slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(52, 58, 108, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--transition);
}

.slider-prev {
    left: 16px;
}

.slider-next {
    right: 16px;
}

.slider-prev:hover, .slider-next:hover {
    background: var(--clr-header);
}

/* ===================== SECTIONS ===================== */
.section {
    padding: 60px 0;
}

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

.section-title {
    font-size: clamp(22px, 4vw, 34px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.2;
}

.section-title span {
    color: var(--clr-btn-primary);
}

.section-subtitle {
    font-size: 15px;
    color: var(--clr-text-muted);
    margin-bottom: 36px;
    max-width: 560px;
}

.section-header {
    margin-bottom: 36px;
}

.section-header-flex {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

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

.advantage-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 26px 22px;
    display: grid;
    gap: 12px;
    transition: background var(--transition), transform var(--transition), border-color var(--transition);
}

.advantage-card:hover {
    background: var(--clr-card-hover);
    transform: translateY(-4px);
    border-color: rgba(132, 140, 201, 0.5);
}

.advantage-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(26, 189, 140, 0.15) 0%, rgba(132, 140, 201, 0.15) 100%);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantage-icon svg {
    width: 26px;
    height: 26px;
}

.advantage-title {
    font-weight: 700;
    font-size: 14px;
    color: #fff;
}

.advantage-text {
    font-size: 13px;
    color: var(--clr-text-muted);
    line-height: 1.55;
}

/* ===================== MIRRORS TABLE ===================== */
.mirrors-section {
    background: rgba(52, 58, 108, 0.12);
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-md);
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    background: var(--clr-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin: 0 auto;
    text-align: left;
    min-width: 560px;
}

thead tr {
    background: var(--clr-header);
}

thead th {
    padding: 14px 18px;
    font-weight: 700;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 2px solid rgba(132, 140, 201, 0.3);
}

tbody tr {
    border-bottom: 1px solid var(--clr-border);
    transition: background var(--transition);
}

tbody tr:last-child {
    border-bottom: none;
}

tbody tr:hover {
    background: var(--clr-card-hover);
}

tbody td {
    padding: 13px 18px;
    vertical-align: middle;
}

.mirror-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--clr-btn-primary);
}

.mirror-status::before {
    content: '';
    width: 7px;
    height: 7px;
    background: var(--clr-btn-primary);
    border-radius: 50%;
    display: block;
    animation: pulse-dot 2s infinite;
}

.datetime-live {
    font-size: 12px;
    color: var(--clr-text-muted);
    font-variant-numeric: tabular-nums;
}

/* ===================== WINNERS ===================== */
.winners-section {
    position: relative;
}

.winners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--clr-btn-secondary), transparent);
}

.winners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 14px;
}

.winner-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    display: grid;
    grid-template-columns: auto auto 1fr auto;
    align-items: center;
    gap: 12px;
    transition: background var(--transition), border-color var(--transition);
}

.winner-card:hover {
    background: var(--clr-card-hover);
    border-color: rgba(26, 189, 140, 0.35);
}

.winner-rank {
    font-size: 13px;
    font-weight: 800;
    color: var(--clr-text-muted);
    min-width: 22px;
    text-align: center;
}

.winner-rank.top {
    color: var(--clr-btn-primary);
}

.winner-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr-header), var(--clr-btn-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    color: #fff;
    flex-shrink: 0;
}

.winner-info {
    overflow: hidden;
}

.winner-name {
    font-weight: 700;
    font-size: 13px;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.winner-game {
    font-size: 11px;
    color: var(--clr-text-muted);
}

.winner-amount {
    font-weight: 800;
    font-size: 15px;
    color: var(--clr-btn-primary);
    text-align: right;
    white-space: nowrap;
}

/* ===================== VIDEO ===================== */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ===================== DEMO GAME ===================== */
.demo-section {
    background: rgba(52, 58, 108, 0.12);
}

.game-selector {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.game-tab {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 18px;
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    color: var(--clr-text-muted);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}

.game-tab:hover, .game-tab.active {
    background: var(--clr-header);
    border-color: var(--clr-btn-secondary);
    color: #fff;
}

.game-tab svg {
    width: 16px;
    height: 16px;
}

.game-frame-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--clr-border);
}

.game-iframe-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.game-iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    background: #000;
}

.game-cta-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    background: var(--clr-header);
    flex-wrap: wrap;
}

.game-cta-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.game-cta-text strong {
    color: #fff;
}

/* ===================== CONTENT / REVIEW ===================== */
.content-review {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 36px 40px;
}

.author-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    align-items: center;
    background: rgba(52, 58, 108, 0.25);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 18px 22px;
    margin-bottom: 32px;
}

.author-avatar {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 2px solid var(--clr-btn-primary);
    overflow: hidden;
    flex-shrink: 0;
}

.author-name {
    font-weight: 800;
    font-size: 15px;
    color: #fff;
    margin-bottom: 4px;
}

.author-bio {
    font-size: 13px;
    color: var(--clr-text-muted);
    line-height: 1.5;
    margin-bottom: 8px;
}

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

.author-link {
    font-size: 12px;
    color: var(--clr-btn-secondary);
    font-weight: 600;
}

.author-link:hover {
    color: var(--clr-btn-primary);
}

.review-content {
    line-height: 1.75;
    color: var(--clr-text);
}

.review-content h2, .review-content h3, .review-content h4 {
    color: #fff;
    margin: 24px 0 12px;
    font-weight: 700;
}

.review-content h2 {
    font-size: 22px;
    border-left: 3px solid var(--clr-btn-primary);
    padding-left: 12px;
}

.review-content h3 {
    font-size: 18px;
}

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

.review-content ul, .review-content ol {
    margin: 12px 0 16px 22px;
}

.review-content li {
    margin-bottom: 6px;
}

.review-content strong {
    color: #fff;
}

.review-content a {
    color: var(--clr-btn-secondary);
}

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

.review-content blockquote {
    border-left: 3px solid var(--clr-btn-secondary);
    padding: 12px 18px;
    background: rgba(132, 140, 201, 0.1);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 16px 0;
    font-style: italic;
    color: rgba(232, 234, 246, 0.8);
}

.review-content table {
    min-width: unset;
    width: 100%;
    margin: 16px 0;
}

.review-content table th, .review-content table td {
    padding: 10px 14px;
}

/* ===================== COMMENTS ===================== */
.comments-section {
    background: rgba(52, 58, 108, 0.08);
}

.comments-list {
    display: grid;
    gap: 16px;
    margin-bottom: 32px;
}

.comment-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 18px 22px;
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.comment-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr-header), var(--clr-btn-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    color: #fff;
    flex-shrink: 0;
}

.comment-meta {
    flex: 1;
}

.comment-author {
    font-weight: 700;
    font-size: 14px;
    color: #fff;
}

.comment-date {
    font-size: 12px;
    color: var(--clr-text-muted);
}

.comment-stars {
    margin-left: auto;
    display: flex;
    gap: 2px;
}

.comment-stars svg {
    width: 14px;
    height: 14px;
    fill: #f4c542;
}

.comment-text {
    font-size: 14px;
    color: var(--clr-text);
    line-height: 1.6;
}

.comment-form-wrap {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 28px 30px;
}

.form-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.form-field {
    display: grid;
    gap: 6px;
    margin-bottom: 16px;
}

.form-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--clr-text-muted);
}

.form-input, .form-textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    color: var(--clr-text);
    font-family: inherit;
    font-size: 14px;
    padding: 11px 14px;
    transition: border-color var(--transition);
    width: 100%;
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--clr-btn-secondary);
    background: rgba(255, 255, 255, 0.07);
}

.form-textarea {
    resize: vertical;
    min-height: 110px;
    line-height: 1.55;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.rating-input {
    display: flex;
    gap: 6px;
}

.rating-star {
    width: 28px;
    height: 28px;
    cursor: pointer;
    transition: transform var(--transition);
    color: rgba(255, 255, 255, 0.2);
}

.rating-star:hover, .rating-star.active {
    color: #f4c542;
    transform: scale(1.2);
}

.rating-star svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.form-success {
    display: none;
    text-align: center;
    padding: 28px;
}

.form-success-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.form-success h3 {
    font-size: 20px;
    color: var(--clr-btn-primary);
    margin-bottom: 8px;
}

.form-success p {
    color: var(--clr-text-muted);
}

/* ===================== FOOTER ===================== */
.site-footer {
    background: var(--clr-footer);
    padding: 50px 0 24px;
    margin-top: 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 36px;
    margin-bottom: 40px;
}

.footer-brand {
}

.footer-logo img {
    height: 44px;
    margin-bottom: 16px;
    border-radius: var(--radius-sm);
}

.footer-desc {
    font-size: 13px;
    color: rgba(232, 234, 246, 0.65);
    line-height: 1.65;
    margin-bottom: 18px;
}

.footer-flag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(232, 234, 246, 0.7);
    font-weight: 600;
}

.footer-col-title {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 14px;
}

.footer-nav-list {
    list-style: none;
    display: grid;
    gap: 8px;
}

.footer-nav-list li a {
    font-size: 13px;
    color: rgba(232, 234, 246, 0.6);
    transition: color var(--transition);
}

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

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}

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

.footer-social:hover {
    background: var(--clr-btn-primary);
    color: #fff;
}

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

.footer-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 32px;
}

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

.footer-logo-badge {
    height: 36px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-sm);
    padding: 6px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
    gap: 6px;
    transition: background var(--transition);
}

.footer-logo-badge:hover {
    background: rgba(255, 255, 255, 0.12);
}

.footer-logo-badge svg {
    width: 18px;
    height: 18px;
}

.footer-providers-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 12px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    flex-wrap: wrap;
}

.footer-copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
}

.footer-legal {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    max-width: 600px;
    line-height: 1.6;
}

/* ===================== PROMO WIDGET ===================== */
.promo-widget {
    position: fixed;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    background: linear-gradient(135deg, #1e2356 0%, #2a3070 100%);
    border: 1px solid rgba(132, 140, 201, 0.4);
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.65);
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 16px;
    min-width: 340px;
    max-width: 520px;
    width: calc(100vw - 36px);
    animation: widget-slide-up 0.5s ease 1s both;
}

@keyframes widget-slide-up {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.widget-close {
    position: absolute;
    top: 8px;
    right: 10px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    padding: 2px 5px;
    transition: color var(--transition);
}

.widget-close:hover {
    color: #fff;
}

.widget-promo-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--clr-btn-primary);
    margin-bottom: 4px;
}

.widget-bonus {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 8px;
}

.widget-bonus span {
    color: var(--clr-btn-primary);
}

.widget-code-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.widget-code {
    background: rgba(255, 255, 255, 0.07);
    border: 1.5px dashed rgba(132, 140, 201, 0.6);
    border-radius: var(--radius-sm);
    padding: 6px 14px;
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.1em;
    font-family: monospace;
}

.widget-copy-btn {
    background: rgba(132, 140, 201, 0.2);
    border: 1px solid rgba(132, 140, 201, 0.4);
    color: var(--clr-btn-secondary);
    border-radius: var(--radius-sm);
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
}

.widget-copy-btn:hover {
    background: var(--clr-btn-secondary);
    color: #fff;
}

.widget-copy-btn svg {
    width: 13px;
    height: 13px;
}

.widget-actions {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.widget-actions .btn {
    width: 100%;
    min-width: 130px;
    text-align: center;
}

/* ===================== FADE IN ANIMATION ===================== */
.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ===================== SECTION SEPARATOR ===================== */
.section-sep {
    width: 52px;
    height: 4px;
    background: linear-gradient(90deg, var(--clr-btn-primary), var(--clr-btn-secondary));
    border-radius: 2px;
    margin-bottom: 14px;
}

/* ===================== MISC ===================== */
.text-center {
    text-align: center;
}

.mt1 {
    margin-top: 8px;
}

.mt2 {
    margin-top: 16px;
}

.mb1 {
    margin-bottom: 8px;
}

.mb2 {
    margin-bottom: 16px;
}

.gap-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(26, 189, 140, 0.15);
    border: 1px solid rgba(26, 189, 140, 0.3);
    color: var(--clr-btn-primary);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 8px;
}

/* ===================== INFO PAGE ===================== */
.info-content {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 36px 40px;
    max-width: 800px;
    margin: 0 auto;
}

.info-content h1 {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
}

.info-content h2 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 22px 0 12px;
    border-left: 3px solid var(--clr-btn-primary);
    padding-left: 10px;
}

.info-content p {
    margin-bottom: 14px;
    color: var(--clr-text);
    line-height: 1.75;
}

.info-content ul, .info-content ol {
    margin: 10px 0 14px 22px;
}

.info-content li {
    margin-bottom: 6px;
    color: var(--clr-text);
    line-height: 1.65;
}

.info-content a {
    color: var(--clr-btn-secondary);
}

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

/* ===================== FAKE WP ELEMENTS ===================== */
.wp-block-group {
    display: block;
}

.wp-block-columns {
    display: flex;
    gap: 20px;
}

.has-text-align-left {
    text-align: left;
}

.entry-meta {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
}

.post-thumbnail {
    display: none;
}

.screen-reader-text {
    position: absolute;
    left: -9999em;
}

.aligncenter {
    display: block;
    margin: 0 auto;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
}

@media (max-width: 900px) {
    .header-nav {
        display: none;
    }

    .burger {
        display: flex;
    }

    .site-header {
        position: sticky;
    }

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

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

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

    .content-review {
        padding: 24px 20px;
    }

    .comment-form-wrap {
        padding: 22px 18px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .author-card {
        grid-template-columns: auto 1fr;
    }
}

@media (max-width: 640px) {
    .slide {
        min-height: 380px;
    }

    .slide-content {
        padding: 40px 0;
    }

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

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

    .game-cta-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-actions .btn--secondary {
        display: none;
    }

    .promo-widget {
        grid-template-columns: 1fr;
        min-width: unset;
    }

    .widget-actions {
        flex-direction: row;
    }

    .widget-actions .btn {
        flex: 1;
    }

    .section {
        padding: 40px 0;
    }

    .slider-prev, .slider-next {
        width: 34px;
        height: 34px;
    }

    .info-content {
        padding: 24px 18px;
    }

    .content-review {
        padding: 20px 16px;
    }
}

@media (max-width: 400px) {
    .header-actions .online-badge {
        display: none;
    }
}

html,
body {
    width: 100%;
    max-width: 100%;
}

body,
.wrapper,
main,
section,
.container,
.box {
    min-width: 0;
}

iframe,
video,
embed,
object,
svg,
canvas {
    max-width: 100%;
}

.review-content,
.content-review,
.info-content,
.section,
.section-header,
.section-header-flex,
.advantage-card,
.winner-card,
.comment-card,
.comment-form-wrap,
.author-card,
.game-frame-wrap,
.game-cta-bar,
.promo-widget {
    min-width: 0;
    max-width: 100%;
}

.review-content p,
.review-content li,
.review-content td,
.review-content th,
.info-content p,
.info-content li,
.advantage-text,
.section-subtitle,
.comment-text,
.author-bio,
.game-cta-text,
.widget-bonus,
.footer-desc,
.footer-legal {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.review-content img,
.info-content img,
.content-review img {
    width: auto;
    max-width: 100%;
    height: auto;
}

.review-content table,
.info-content table,
.content-review table {
    width: 100%;
}

.review-content > div,
.info-content > div,
.content-review > div {
    max-width: 100%;
}

@media (max-width: 900px) {
    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 16px;
        padding-right: 16px;
    }

    .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        width: 100%;
        min-width: 0;
    }

    .header-logo {
        flex: 0 1 auto;
        min-width: 0;
    }

    .header-logo img {
        width: auto;
        max-width: 150px;
        height: 40px;
        object-fit: contain;
    }

    .header-actions {
        margin-left: auto;
        flex: 0 0 auto;
        gap: 6px;
    }

    .online-badge {
        margin-right: 0;
    }

    .mobile-menu {
        position: fixed;
        top: var(--mobile-header-height, 64px);
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        max-width: 100%;
        height: calc(100dvh - var(--mobile-header-height, 64px));
        padding: 18px 16px 30px;
        overflow-y: auto;
        overscroll-behavior: contain;
        z-index: 9999;
    }

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

    .mobile-nav-list {
        width: 100%;
    }

    .mobile-menu .nav-link {
        width: 100%;
        min-height: 46px;
        padding: 11px 14px;
    }

    .hero-section {
        width: 100%;
        max-width: 100%;
        border-radius: 0;
    }

    .slider-track {
        width: 100%;
    }

    .slide {
        min-width: 100%;
        width: 100%;
        min-height: 430px;
    }

    .slide .container {
        position: relative;
        z-index: 2;
    }

    .slide-content {
        width: 100%;
        max-width: 620px;
        padding: 52px 38px 58px;
    }

    .slide-title {
        font-size: clamp(28px, 7vw, 42px);
    }

    .slide-desc {
        max-width: 100%;
    }

    .section {
        width: 100%;
        padding: 46px 0;
    }

    .section-header,
    .section-header-flex {
        width: 100%;
        margin-bottom: 28px;
    }

    .section-header-flex {
        align-items: flex-start;
    }

    .section-header-flex > div {
        width: 100%;
        min-width: 0;
    }

    .section-subtitle {
        max-width: 100%;
        margin-bottom: 0;
    }

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

    .advantage-card {
        width: 100%;
        padding: 20px 18px;
    }

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

    .winner-card {
        width: 100%;
        grid-template-columns: auto auto minmax(0, 1fr) auto;
    }

    .table-responsive,
    .review-content,
    .info-content,
    .content-review {
        max-width: 100%;
    }

    .table-responsive {
        width: 100%;
        overflow-x: auto;
        scrollbar-width: thin;
    }

    .table-responsive table {
        width: max-content;
        min-width: 720px;
    }

    .review-content table,
    .info-content table,
    .content-review table {
        display: block;
        width: 100%;
        max-width: 100%;
        min-width: 600px;
        overflow-x: auto;
        white-space: nowrap;
    }

    .game-selector {
        width: 100%;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 6px;
        scrollbar-width: thin;
        overscroll-behavior-x: contain;
    }

    .game-tab {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .game-frame-wrap {
        width: 100%;
    }

    .game-iframe-container {
        width: 100%;
        padding-bottom: 56.25%;
    }

    .game-iframe-container iframe {
        width: 100%;
        height: 100%;
        touch-action: manipulation;
        pointer-events: auto;
    }

    .content-review,
    .info-content {
        width: 100%;
        padding: 26px 22px;
    }

    .author-card {
        width: 100%;
    }

    .comments-list {
        width: 100%;
    }

    .comment-card,
    .comment-form-wrap {
        width: 100%;
    }

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

@media (max-width: 640px) {
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .site-header {
        width: 100%;
    }

    .header-inner {
        min-height: 58px;
        padding: 8px 0;
    }

    .header-logo img {
        max-width: 120px;
        height: 36px;
    }

    .header-actions {
        gap: 5px;
    }

    .header-actions .btn {
        min-height: 38px;
        padding: 8px 12px;
        font-size: 12px;
    }

    .burger {
        width: 38px;
        height: 38px;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .mobile-menu {
        top: 58px;
        height: calc(100dvh - 58px);
        padding-left: 12px;
        padding-right: 12px;
    }

    .slide {
        min-height: 440px;
        align-items: flex-end;
    }

    .slide-bg {
        object-position: center;
    }

    .slide-overlay {
        background: linear-gradient(180deg, rgba(14, 17, 43, 0.28) 0%, rgba(14, 17, 43, 0.88) 55%, rgba(14, 17, 43, 0.98) 100%);
    }

    .slide-content {
        width: 100%;
        max-width: 100%;
        padding: 80px 38px 58px;
    }

    .slide-badge {
        max-width: 100%;
        white-space: normal;
        line-height: 1.3;
    }

    .slide-title {
        font-size: 28px;
        line-height: 1.14;
    }

    .slide-desc {
        font-size: 14px;
        line-height: 1.55;
        margin-bottom: 20px;
    }

    .slide-actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        gap: 10px;
    }

    .slide-actions .btn {
        width: 100%;
        min-width: 0;
        padding: 12px 16px;
        white-space: normal;
        text-align: center;
    }

    .slider-prev {
        left: 6px;
    }

    .slider-next {
        right: 6px;
    }

    .slider-prev,
    .slider-next {
        width: 30px;
        height: 30px;
    }

    .slider-dots {
        bottom: 16px;
    }

    .section {
        padding: 34px 0;
    }

    .section-sm {
        padding: 28px 0;
    }

    .section-title {
        font-size: 25px;
        line-height: 1.2;
    }

    .section-subtitle {
        font-size: 14px;
        line-height: 1.55;
    }

    .section-header-flex {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .section-header-flex > .btn {
        width: 100%;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .advantage-card {
        grid-template-columns: auto minmax(0, 1fr);
        column-gap: 14px;
        row-gap: 5px;
        align-items: center;
        padding: 17px 16px;
    }

    .advantage-icon {
        grid-row: 1 / span 2;
        width: 46px;
        height: 46px;
    }

    .advantage-title {
        font-size: 14px;
    }

    .advantage-text {
        font-size: 12px;
    }

    .winners-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .winner-card {
        grid-template-columns: auto auto minmax(0, 1fr);
        gap: 9px;
        padding: 13px 12px;
    }

    .winner-amount {
        grid-column: 2 / -1;
        width: 100%;
        text-align: left;
        padding-left: 0;
    }

    .winner-avatar {
        width: 36px;
        height: 36px;
    }

    .table-responsive {
        margin-left: 0;
        margin-right: 0;
        border-radius: 10px;
    }

    .table-responsive table {
        min-width: 680px;
        font-size: 12px;
    }

    thead th,
    tbody td {
        padding: 10px 12px;
    }

    .game-selector {
        gap: 8px;
        margin-bottom: 16px;
    }

    .game-tab {
        padding: 8px 13px;
        font-size: 12px;
    }

    .game-frame-wrap {
        border-radius: 12px;
    }

    .game-iframe-container {
        padding-bottom: 70%;
    }

    .game-cta-bar {
        display: grid;
        grid-template-columns: 1fr;
        align-items: stretch;
        gap: 12px;
        padding: 15px 14px;
    }

    .game-cta-bar .btn {
        width: 100%;
        white-space: normal;
    }

    .content-review,
    .info-content {
        padding: 18px 14px;
        border-radius: 12px;
    }

    .review-content h1,
    .info-content h1 {
        font-size: 25px;
        line-height: 1.2;
    }

    .review-content h2,
    .info-content h2 {
        font-size: 20px;
        line-height: 1.25;
    }

    .review-content h3,
    .info-content h3 {
        font-size: 17px;
    }

    .review-content p,
    .review-content li,
    .info-content p,
    .info-content li {
        font-size: 14px;
        line-height: 1.7;
    }

    .review-content ul,
    .review-content ol,
    .info-content ul,
    .info-content ol {
        margin-left: 18px;
    }

    .review-content table,
    .info-content table,
    .content-review table {
        min-width: 580px;
        font-size: 12px;
    }

    .author-card {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        padding: 16px 14px;
        margin-bottom: 22px;
    }

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

    .comment-card {
        padding: 16px 14px;
    }

    .comment-header {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        align-items: center;
        gap: 10px;
    }

    .comment-stars {
        grid-column: 1 / -1;
        margin-left: 0;
    }

    .comment-form-wrap {
        padding: 18px 14px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-input,
    .form-textarea {
        font-size: 16px;
    }

    .rating-input {
        flex-wrap: wrap;
    }

    .faq-q {
        padding: 14px 13px;
        font-size: 14px;
        line-height: 1.4;
    }

    .faq-a {
        padding: 0 13px 14px;
        font-size: 13px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .footer-logo-badge {
        height: auto;
        min-height: 34px;
        padding: 6px 9px;
        white-space: normal;
    }

    .promo-widget {
        left: 10px;
        right: 10px;
        bottom: max(10px, env(safe-area-inset-bottom));
        width: auto;
        max-width: none;
        min-width: 0;
        transform: none;
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 15px 14px;
        border-radius: 14px;
        max-height: calc(100dvh - 20px);
        overflow-y: auto;
    }

    .widget-bonus {
        padding-right: 25px;
        font-size: 16px;
    }

    .widget-code-row {
        flex-wrap: wrap;
    }

    .widget-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        width: 100%;
    }

    .widget-actions .btn {
        min-width: 0;
        width: 100%;
        padding: 9px 8px;
        font-size: 12px;
        white-space: normal;
    }

    @keyframes widget-slide-up {
        from {
            opacity: 0;
            transform: translateY(60px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

@media (max-width: 420px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .header-logo img {
        max-width: 105px;
        height: 34px;
    }

    .online-badge {
        display: none;
    }

    .header-actions .btn {
        padding: 8px 10px;
        font-size: 11px;
    }

    .slide {
        min-height: 420px;
    }

    .slide-content {
        padding: 70px 34px 54px;
    }

    .slide-title {
        font-size: 25px;
    }

    .slide-desc {
        font-size: 13px;
    }

    .slider-prev,
    .slider-next {
        width: 28px;
        height: 28px;
    }

    .section-title {
        font-size: 23px;
    }

    .advantage-card {
        padding: 15px 13px;
    }

    .winner-card {
        padding: 12px 10px;
    }

    .promo-widget {
        left: 8px;
        right: 8px;
        padding: 14px 12px;
    }

    .widget-actions {
        grid-template-columns: 1fr;
    }
}

.lihgfd {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 32px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 20px;
    overflow: hidden;
    box-sizing: border-box;
}

.lihgfd * {
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.lihgfd img,
.lihgfd svg,
.lihgfd video,
.lihgfd canvas {
    display: block;
    max-width: 100%;
    height: auto;
}

.lihgfd iframe {
    display: block;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16/9;
    height: auto;
    border: 0;
}

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

.lihgfd th,
.lihgfd td {
    padding: 12px 14px;
}

.lihgfd h1,
.lihgfd h2,
.lihgfd h3,
.lihgfd h4,
.lihgfd h5,
.lihgfd h6,
.lihgfd p,
.lihgfd li,
.lihgfd a {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.lihgfd ul,
.lihgfd ol {
    padding-left: 22px;
}

.lihgfd pre,
.lihgfd code {
    overflow: auto;
    white-space: pre-wrap;
    word-break: break-word;
}

@media (max-width: 768px) {

    .lihgfd {
        padding: 20px 16px;
        border-radius: 16px;
    }

    .lihgfd h1 {
        font-size: 28px;
        line-height: 1.2;
    }

    .lihgfd h2 {
        font-size: 24px;
        line-height: 1.25;
    }

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

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

    .lihgfd table {
        min-width: 600px;
    }

    .lihgfd iframe {
        aspect-ratio: 16/9;
    }
}

@media (max-width: 480px) {

    .lihgfd {
        padding: 16px 12px;
        border-radius: 14px;
    }

    .lihgfd h1 {
        font-size: 24px;
    }

    .lihgfd h2 {
        font-size: 20px;
    }

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

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

    .lihgfd table {
        min-width: 520px;
    }
}

.header,
.site-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    background: var(--clr-header, #343a6c);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
}

body {
    padding-top: 0;
}

@supports not (position:sticky) {
    .header,
    .site-header {
        position: fixed;
    }

    body {
        padding-top: 72px;
    }
}