@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root {
    --c-bg: #0E111A;
    --c-header: #0A0D14;
    --c-footer: #080B11;
    --c-btn-primary: #00B677;
    --c-btn-secondary: #0F6F53;
    --c-btn-primary-hover: #00cf89;
    --c-btn-secondary-hover: #147a5e;
    --c-text: #E8EAF0;
    --c-text-muted: #8B92A8;
    --c-text-accent: #00B677;
    --c-border: rgba(255, 255, 255, 0.08);
    --c-card: #12161F;
    --c-card-hover: #181D29;
    --c-gold: #F0C040;
    --c-gold-dim: #c9a030;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
    --shadow-green: 0 4px 24px rgba(0, 182, 119, 0.18);
    --transition: 0.22s ease;
    --font: 'Open Sans', sans-serif;
}

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

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

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

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

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

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

ul {
    list-style: none;
}

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

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

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

.b7e2d1 {
    background: var(--c-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--c-border);
}

/* ===================== HEADER ===================== */
.site-header {
    background: var(--c-header);
    border-bottom: 1px solid var(--c-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.hd-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.hd-logo-text {
    font-size: 20px;
    font-weight: 800;
    color: var(--c-gold);
    letter-spacing: -0.5px;
}

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

.hd-nav a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--c-text);
    font-size: 13.5px;
    font-weight: 600;
    padding: 7px 12px;
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition);
    white-space: nowrap;
}

.hd-nav a:hover, .hd-nav a.active {
    background: rgba(0, 182, 119, 0.12);
    color: var(--c-btn-primary);
}

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

.hd-online {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    color: var(--c-text-muted);
    padding: 5px 10px;
    background: rgba(0, 182, 119, 0.07);
    border-radius: 20px;
    border: 1px solid rgba(0, 182, 119, 0.15);
    white-space: nowrap;
    flex-shrink: 0;
}

.hd-online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--c-btn-primary);
    animation: pulse-dot 1.8s ease-in-out infinite;
}

.hd-online strong {
    color: var(--c-btn-primary);
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(0, 182, 119, 0.4);
    }
    50% {
        opacity: 0.8;
        box-shadow: 0 0 0 5px rgba(0, 182, 119, 0);
    }
}

.hd-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 700;
    padding: 9px 20px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    white-space: nowrap;
    text-decoration: none !important;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0);
    transition: background var(--transition);
}

.btn:hover::after {
    background: rgba(255, 255, 255, 0.07);
}

.btn-primary {
    background: var(--c-btn-primary);
    color: #fff;
    box-shadow: var(--shadow-green);
}

.btn-primary:hover {
    background: var(--c-btn-primary-hover);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 28px rgba(0, 182, 119, 0.28);
}

.btn-secondary {
    background: var(--c-btn-secondary);
    color: #fff;
}

.btn-secondary:hover {
    background: var(--c-btn-secondary-hover);
    color: #fff;
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--c-btn-primary);
    border: 1.5px solid var(--c-btn-primary);
}

.btn-outline:hover {
    background: var(--c-btn-primary);
    color: #fff;
    transform: translateY(-1px);
}

.btn-gold {
    background: linear-gradient(135deg, var(--c-gold) 0%, var(--c-gold-dim) 100%);
    color: #0E111A;
    font-weight: 800;
}

.btn-gold:hover {
    filter: brightness(1.08);
    color: #0E111A;
    transform: translateY(-1px);
}

.btn-sm {
    padding: 6px 14px;
    font-size: 13px;
}

.btn-lg {
    padding: 13px 32px;
    font-size: 16px;
}

.btn-xl {
    padding: 16px 40px;
    font-size: 17px;
}

.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
    border: 1px solid var(--c-border);
    cursor: pointer;
}

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

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

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

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

.mobile-menu {
    display: none;
    position: fixed;
    top: 69px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--c-header);
    z-index: 999;
    overflow-y: auto;
    padding: 20px;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid var(--c-border);
}

.mobile-menu.is-open {
    display: flex;
}

.mobile-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--c-text);
    font-size: 15px;
    font-weight: 600;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--c-border);
    transition: background var(--transition);
}

.mobile-menu a:hover {
    background: rgba(0, 182, 119, 0.1);
    color: var(--c-btn-primary);
}

.mobile-menu svg {
    width: 18px;
    height: 18px;
}

.mobile-menu-btns {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.mobile-menu-btns .btn {
    flex: 1;
    justify-content: center;
}

/* ===================== HERO ===================== */
.hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/images/elf-banner.png');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(14, 17, 26, 0.92) 30%, rgba(14, 17, 26, 0.6) 100%);
}

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

.hero-content {
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 182, 119, 0.12);
    border: 1px solid rgba(0, 182, 119, 0.3);
    color: var(--c-btn-primary);
    font-size: 12px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-badge svg {
    width: 14px;
    height: 14px;
}

.hero h1 {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.18;
    color: #fff;
    margin-bottom: 16px;
}

.hero h1 span {
    color: var(--c-gold);
}

.hero p {
    font-size: 16px;
    color: var(--c-text-muted);
    max-width: 500px;
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-bonus-card {
    background: linear-gradient(145deg, #12161F 0%, #0e1520 100%);
    border: 1px solid rgba(0, 182, 119, 0.25);
    border-radius: var(--radius-xl);
    padding: 28px 28px 24px;
    text-align: center;
    min-width: 240px;
    box-shadow: 0 8px 40px rgba(0, 182, 119, 0.12), var(--shadow);
    position: relative;
    overflow: hidden;
}

.hero-bonus-card::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(0, 182, 119, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

.hbc-label {
    font-size: 11px;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.hbc-amount {
    font-size: 36px;
    font-weight: 800;
    color: var(--c-gold);
    line-height: 1.1;
    margin-bottom: 4px;
}

.hbc-sub {
    font-size: 13px;
    color: var(--c-btn-primary);
    font-weight: 600;
    margin-bottom: 16px;
}

.hbc-code {
    background: rgba(0, 182, 119, 0.1);
    border: 1.5px dashed rgba(0, 182, 119, 0.4);
    border-radius: var(--radius-sm);
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 700;
    color: var(--c-btn-primary);
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.hbc-trust {
    font-size: 11px;
    color: var(--c-text-muted);
}

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

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

.section-title {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.25;
}

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

.section-sub {
    font-size: 14px;
    color: var(--c-text-muted);
    margin-bottom: 32px;
    max-width: 580px;
    line-height: 1.7;
}

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

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

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 182, 119, 0.08);
    border: 1px solid rgba(0, 182, 119, 0.2);
    color: var(--c-btn-primary);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    display: inline-block;
}

/* ===================== INFO TABLE ===================== */
.info-table-wrap {
    background: var(--c-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--c-border);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.info-table {
    width: 100%;
    border-collapse: collapse;
}

.info-table tr:not(:last-child) td {
    border-bottom: 1px solid var(--c-border);
}

.info-table tr:hover td {
    background: rgba(255, 255, 255, 0.025);
}

.info-table td {
    padding: 13px 20px;
    vertical-align: middle;
    text-align: left;
    font-size: 14px;
}

.info-table td:first-child {
    width: 45%;
    color: var(--c-text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.info-table td:last-child {
    color: var(--c-text);
    font-weight: 500;
}

.info-table td .it-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(0, 182, 119, 0.1);
    border: 1px solid rgba(0, 182, 119, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-table td .it-icon svg {
    width: 16px;
    height: 16px;
    color: var(--c-btn-primary);
}

.it-badge {
    display: inline-block;
    background: rgba(0, 182, 119, 0.12);
    color: var(--c-btn-primary);
    font-size: 12px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid rgba(0, 182, 119, 0.2);
}

.it-badge-gold {
    display: inline-block;
    background: rgba(240, 192, 64, 0.12);
    color: var(--c-gold);
    font-size: 12px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid rgba(240, 192, 64, 0.2);
}

.table-overflow {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* ===================== MIRRORS ===================== */
.mirrors-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: var(--c-text-muted);
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.mirrors-timestamp {
    background: rgba(0, 182, 119, 0.08);
    border: 1px solid rgba(0, 182, 119, 0.2);
    border-radius: var(--radius-sm);
    padding: 6px 14px;
    color: var(--c-btn-primary);
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mirrors-timestamp svg {
    width: 14px;
    height: 14px;
}

.mirrors-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--c-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--c-border);
    box-shadow: var(--shadow);
}

.mirrors-table thead th {
    background: rgba(0, 182, 119, 0.08);
    padding: 13px 18px;
    text-align: left;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--c-text-muted);
    font-weight: 700;
    border-bottom: 1px solid var(--c-border);
}

.mirrors-table tbody td {
    padding: 13px 18px;
    border-bottom: 1px solid var(--c-border);
    font-size: 14px;
}

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

.mirrors-table tbody tr:hover td {
    background: rgba(255, 255, 255, 0.025);
}

.mirror-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
}

.mirror-status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
}

.mirror-status.online .mirror-status-dot {
    background: var(--c-btn-primary);
    animation: pulse-dot 1.8s infinite;
}

.mirror-status.online {
    color: var(--c-btn-primary);
}

/* ===================== SCREENSHOTS ===================== */
.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.screenshot-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--c-border);
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
    aspect-ratio: 16/10;
}

.screenshot-item:hover {
    transform: scale(1.025);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.screenshot-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.screenshots-slider-wrap {
    position: relative;
}

.slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 182, 119, 0.8);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: background var(--transition);
}

.slider-nav-btn:hover {
    background: var(--c-btn-primary);
}

.slider-nav-btn.prev {
    left: -18px;
}

.slider-nav-btn.next {
    right: -18px;
}

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

.tournament-card {
    background: var(--c-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--c-border);
    padding: 24px;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
}

.tournament-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--c-btn-primary), var(--c-gold));
}

.tournament-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 182, 119, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.tc-provider {
    font-size: 11px;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    font-weight: 700;
}

.tc-name {
    font-size: 17px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.3;
}

.tc-desc {
    font-size: 13px;
    color: var(--c-text-muted);
    margin-bottom: 16px;
    line-height: 1.6;
}

.tc-prize {
    font-size: 22px;
    font-weight: 800;
    color: var(--c-gold);
    margin-bottom: 4px;
}

.tc-prize-label {
    font-size: 11px;
    color: var(--c-text-muted);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tc-timer-label {
    font-size: 11px;
    color: var(--c-text-muted);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tc-timer {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.tc-timer-seg {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-sm);
    padding: 6px 10px;
    min-width: 46px;
}

.tc-timer-seg-val {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.tc-timer-seg-lbl {
    font-size: 10px;
    color: var(--c-text-muted);
    text-transform: uppercase;
}

/* ===================== SLOT GAME ===================== */
.slot-game-wrap {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.slot-game-wrap::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(240, 192, 64, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.slot-title {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
}

.slot-sub {
    font-size: 13px;
    color: var(--c-text-muted);
    margin-bottom: 28px;
}

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

.slot-reel {
    width: 90px;
    height: 90px;
    background: #0A0D14;
    border: 2px solid rgba(0, 182, 119, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    transition: border-color var(--transition);
    position: relative;
    overflow: hidden;
}

.slot-reel.spinning {
    border-color: var(--c-btn-primary);
    animation: reel-spin 0.12s linear infinite;
}

.slot-reel.winner {
    border-color: var(--c-gold);
    box-shadow: 0 0 24px rgba(240, 192, 64, 0.4);
}

@keyframes reel-spin {
    0% {
        transform: scaleY(1);
    }
    50% {
        transform: scaleY(0.85);
    }
    100% {
        transform: scaleY(1);
    }
}

.slot-spin-btn {
    margin-bottom: 20px;
}

.slot-spin-btn .btn {
    min-width: 180px;
}

.slot-result {
    background: rgba(0, 182, 119, 0.08);
    border: 1.5px solid rgba(0, 182, 119, 0.25);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    display: none;
}

.slot-result.win {
    display: block;
}

.slot-result.loss {
    display: block;
    background: rgba(255, 80, 80, 0.06);
    border-color: rgba(255, 80, 80, 0.2);
}

.slot-result-text {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.slot-result-sub {
    font-size: 13px;
    color: var(--c-text-muted);
    margin-bottom: 14px;
}

/* ===================== CONTENT BLOCK ===================== */
.content-review {
    background: var(--c-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--c-border);
    padding: 40px;
    box-shadow: var(--shadow);
}

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

.content-review h2 {
    font-size: 22px;
}

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

.content-review h4 {
    font-size: 16px;
}

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

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

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

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

.content-review li {
    margin-bottom: 8px;
    color: var(--c-text);
    line-height: 1.65;
}

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

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

.content-review table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px auto;
    font-size: 14px;
    border: 1.5px solid var(--c-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.content-review th {
    background: rgba(0, 182, 119, 0.08);
    padding: 11px 16px;
    text-align: left;
    color: var(--c-text-muted);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    border-bottom: 1px solid var(--c-border);
}

.content-review td {
    padding: 10px 16px;
    border-bottom: 1px solid var(--c-border);
    text-align: left;
    color: var(--c-text);
}

.content-review blockquote {
    border-left: 3px solid var(--c-btn-primary);
    padding: 12px 20px;
    margin: 20px 0;
    background: rgba(0, 182, 119, 0.05);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--c-text-muted);
    font-style: italic;
}

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

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

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

.author-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-top: 32px;
    box-shadow: var(--shadow);
}

.author-box-img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    flex-shrink: 0;
    object-fit: cover;
    border: 2.5px solid var(--c-btn-primary);
}

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

.author-box-role {
    font-size: 12px;
    color: var(--c-btn-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.author-box-bio {
    font-size: 13px;
    color: var(--c-text-muted);
    line-height: 1.65;
    margin-bottom: 12px;
}

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

.author-links a {
    font-size: 12px;
    color: var(--c-text-muted);
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid var(--c-border);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: border-color var(--transition), color var(--transition);
}

.author-links a:hover {
    border-color: var(--c-btn-primary);
    color: var(--c-btn-primary);
}

.author-links svg {
    width: 13px;
    height: 13px;
}

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

.comment-item {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: 20px;
}

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

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

.comment-meta {
    flex: 1;
}

.comment-name {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}

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

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

.comment-stars svg {
    width: 14px;
    height: 14px;
    fill: var(--c-gold);
    color: var(--c-gold);
}

.comment-stars svg.empty {
    fill: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.1);
}

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

.review-form {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow);
}

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

.form-group {
    margin-bottom: 16px;
}

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

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--c-text-muted);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.form-input, .form-textarea, .form-select {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1.5px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: 11px 14px;
    font-family: var(--font);
    font-size: 14px;
    color: var(--c-text);
    transition: border-color var(--transition), background var(--transition);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
    border-color: var(--c-btn-primary);
    background: rgba(0, 182, 119, 0.04);
}

.form-input::placeholder, .form-textarea::placeholder {
    color: var(--c-text-muted);
}

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

.form-stars-select {
    display: flex;
    gap: 6px;
}

.form-stars-select label {
    cursor: pointer;
}

.form-stars-select input {
    display: none;
}

.form-stars-select svg {
    width: 24px;
    height: 24px;
    fill: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.1);
    transition: fill var(--transition), color var(--transition);
}

.form-stars-select label:hover svg,
.form-stars-select label:hover ~ label svg,
.form-stars-select input:checked ~ label svg,
.star-label.active svg {
    fill: var(--c-gold);
    color: var(--c-gold);
}

.form-success {
    background: rgba(0, 182, 119, 0.08);
    border: 1px solid rgba(0, 182, 119, 0.25);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    color: var(--c-btn-primary);
    font-weight: 600;
    font-size: 14px;
    display: none;
    margin-top: 14px;
}

.form-success.show {
    display: block;
}

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

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

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

.footer-brand {
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.footer-logo img {
    height: 38px;
    width: auto;
}

.footer-logo-text {
    font-size: 18px;
    font-weight: 800;
    color: var(--c-gold);
}

.footer-about {
    font-size: 13px;
    color: var(--c-text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

.footer-country {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--c-text-muted);
}

.footer-flag {
    font-size: 22px;
}

.footer-col-title {
    font-size: 13px;
    font-weight: 800;
    color: var(--c-text);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 16px;
}

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

.footer-nav a {
    font-size: 13px;
    color: var(--c-text-muted);
    transition: color var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

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

.footer-nav svg {
    width: 12px;
    height: 12px;
    opacity: 0.5;
}

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

.footer-social {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--c-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-text-muted);
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.footer-social:hover {
    background: rgba(0, 182, 119, 0.12);
    color: var(--c-btn-primary);
    border-color: rgba(0, 182, 119, 0.3);
}

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

.footer-logos-section {
    padding-bottom: 28px;
    border-bottom: 1px solid var(--c-border);
    margin-bottom: 28px;
}

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

.footer-logos-row-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 90px;
}

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

.footer-pill {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: 5px 10px;
    font-size: 11px;
    font-weight: 700;
    color: var(--c-text-muted);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-pill svg {
    width: 14px;
    height: 14px;
}

.footer-trust {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.footer-trust a {
    font-size: 11px;
    font-weight: 700;
    color: var(--c-text-muted);
    border: 1px solid var(--c-border);
    background: rgba(255, 255, 255, 0.03);
    padding: 5px 12px;
    border-radius: var(--radius-sm);
    transition: border-color var(--transition), color var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-trust a svg {
    width: 14px;
    height: 14px;
}

.footer-trust a:hover {
    border-color: rgba(0, 182, 119, 0.3);
    color: var(--c-btn-primary);
}

.footer-bottom {
    padding-bottom: 28px;
    font-size: 12px;
    color: var(--c-text-muted);
    line-height: 1.7;
}

.footer-copyright {
    margin-bottom: 10px;
}

.footer-legal {
    opacity: 0.75;
    font-size: 11px;
}

.footer-email-link {
    color: var(--c-btn-primary);
}

.footer-email-link:hover {
    color: var(--c-btn-primary-hover);
}

/* ===================== STICKY WIDGET ===================== */
.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: linear-gradient(135deg, #0A1A14 0%, #0d1f18 100%);
    border-top: 2px solid var(--c-btn-primary);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    box-shadow: 0 -4px 32px rgba(0, 182, 119, 0.2);
}

.sw-left {
    display: flex;
    flex-direction: column;
}

.sw-label {
    font-size: 11px;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sw-bonus {
    font-size: 18px;
    font-weight: 800;
    color: var(--c-gold);
}

.sw-sub {
    font-size: 12px;
    color: var(--c-btn-primary);
    font-weight: 600;
}

.sw-code-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sw-code {
    background: rgba(0, 182, 119, 0.1);
    border: 1.5px dashed rgba(0, 182, 119, 0.4);
    border-radius: var(--radius-sm);
    padding: 6px 14px;
    font-size: 14px;
    font-weight: 700;
    color: var(--c-btn-primary);
    letter-spacing: 2px;
    cursor: pointer;
    transition: background var(--transition);
    white-space: nowrap;
}

.sw-code:hover {
    background: rgba(0, 182, 119, 0.2);
}

.sw-close {
    position: absolute;
    top: 8px;
    right: 12px;
    width: 20px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--c-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: color var(--transition);
}

.sw-close:hover {
    color: var(--c-text);
}

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

body.has-widget {
    padding-bottom: 70px;
}

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

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

.elementor-widget-container {
    display: block;
}

.entry-content {
    display: block;
}

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

[data-wp-component] {
}

[data-elementor-type] {
}

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

.text-muted {
    color: var(--c-text-muted);
}

.text-green {
    color: var(--c-btn-primary);
}

.text-gold {
    color: var(--c-gold);
}

.fw-bold {
    font-weight: 700;
}

.fw-800 {
    font-weight: 800;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 8px;
}

.mb-2 {
    margin-bottom: 16px;
}

.mb-3 {
    margin-bottom: 24px;
}

.mb-4 {
    margin-bottom: 32px;
}

.mt-1 {
    margin-top: 8px;
}

.mt-2 {
    margin-top: 16px;
}

.mt-3 {
    margin-top: 24px;
}

.d-flex {
    display: flex;
}

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

.gap-2 {
    gap: 16px;
}

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

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

.animate-in-2 {
    animation: fadeInUp 0.5s 0.12s ease both;
}

.animate-in-3 {
    animation: fadeInUp 0.5s 0.24s ease both;
}

/* ===================== INFO PAGE ===================== */
.info-page-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 56px 20px;
}

.info-page-content h1 {
    font-size: 30px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

.info-page-content h2 {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin: 28px 0 12px;
}

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

.info-page-content ul {
    list-style: disc;
    margin: 12px 0 16px 24px;
}

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

.info-page-content a {
    color: var(--c-btn-primary);
}

/* =====================  ===================== */
@media (max-width: 1024px) {
    .screenshots-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

    .hd-online {
        display: none;
    }

    .burger {
        display: flex;
    }

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

    .hero-bonus-card {
        min-width: unset;
        width: 100%;
    }

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

    .screenshots-grid {
        display: none;
    }

    .screenshots-mobile {
        display: block;
    }

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

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

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

    .section {
        padding: 40px 0;
    }

    .info-table td:first-child {
        width: 50%;
    }

    .sticky-widget {
        flex-wrap: wrap;
        gap: 10px;
    }

    .slot-reel {
        width: 76px;
        height: 76px;
        font-size: 38px;
    }

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

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

    .author-box {
        flex-direction: column;
    }

    .author-box-img {
        width: 56px;
        height: 56px;
    }
}

@media (max-width: 480px) {
    .hd-inner {
        padding: 10px 14px;
    }

    .hero-inner {
        padding: 40px 14px;
    }

    .xc3f9a {
        padding: 0 14px;
    }

    .sw-code-wrap {
        flex-direction: column;
        align-items: flex-start;
    }
}

.img-lazy-wrap {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
}

.screenshots-mobile {
    display: none;
    position: relative;
    overflow: hidden;
}

.screenshots-mobile-track {
    display: flex;
    transition: transform 0.4s ease;
    gap: 12px;
}

.screenshots-mobile-track .screenshot-item {
    flex: 0 0 88%;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--c-text-muted);
    padding: 12px 0;
    flex-wrap: wrap;
}

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

.breadcrumb a:hover {
    color: var(--c-btn-primary);
}

.breadcrumb-sep {
    opacity: 0.4;
}

.breadcrumb-current {
    color: var(--c-btn-primary);
}

/* FAQ */
.faq-list {
    display: grid;
    gap: 10px;
}

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

.faq-item.is-open {
    border-color: rgba(0, 182, 119, 0.3);
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    gap: 14px;
    user-select: none;
}

.faq-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(0, 182, 119, 0.1);
    border: 1px solid rgba(0, 182, 119, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform var(--transition);
}

.faq-item.is-open .faq-icon {
    transform: rotate(45deg);
    background: rgba(0, 182, 119, 0.2);
}

.faq-icon svg {
    width: 12px;
    height: 12px;
    color: var(--c-btn-primary);
}

.faq-a {
    display: none;
    padding: 0 20px 18px;
    font-size: 14px;
    color: var(--c-text-muted);
    line-height: 1.7;
}

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

.info-hero {
    background: var(--c-header);
    border-bottom: 1px solid var(--c-border);
    padding: 48px 0 40px;
}

.info-hero-title {
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 800;
    color: #fff;
    margin-top: 12px;
    line-height: 1.2;
    text-wrap: balance;
}

.info-page-wrap {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 40px 48px;
}

@media (max-width: 600px) {
    .info-page-wrap {
        padding: 24px 20px;
    }
}

.content-review h2 {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin: 32px 0 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--c-border);
}

.content-review h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--c-btn-primary);
    margin: 24px 0 10px;
}

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

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

.content-review p:first-child {
    margin-top: 0;
}

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

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

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

.content-review li {
    margin-bottom: 8px;
    line-height: 1.7;
    color: var(--c-text-muted);
}

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

.content-review em {
    color: var(--c-text-muted);
    font-style: italic;
}

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

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

.content-review blockquote {
    border-left: 3px solid var(--c-btn-primary);
    padding: 12px 20px;
    margin: 20px 0;
    background: rgba(0, 182, 119, 0.05);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--c-text-muted);
    font-style: italic;
}

.content-review table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 14px;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.content-review th {
    background: rgba(0, 182, 119, 0.08);
    color: var(--c-btn-primary);
    font-weight: 700;
    text-align: left;
    padding: 12px 16px;
    border-bottom: 1px solid var(--c-border);
}

.content-review td {
    padding: 11px 16px;
    border-bottom: 1px solid var(--c-border);
    color: var(--c-text-muted);
}

.content-review tr:last-child td {
    border-bottom: none;
}

.content-review tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

#contact-form input:focus,
#contact-form textarea:focus {
    outline: none;
    border-color: rgba(0, 182, 119, 0.4);
    box-shadow: 0 0 0 3px rgba(0, 182, 119, 0.08);
}

.xui-p3r9f {
    color: transparent;
    pointer-events: none;
    height: 0;
    overflow: hidden;
    position: absolute;
}

.f2a-widget-container {
    display: none;
}

.pu9x-loader {
    display: none;
}

#b8d3e-overlay {
    display: none;
}

.z7fx9-mask {
    display: none;
}

.entryMeta-x49f {
    display: none;
}

[data-pwid="x9b3"] {
    display: none;
}

@media (max-width: 768px) {
    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .wrapper,
    main,
    .section,
    .xc3f9a,
    .hero,
    .hero-inner,
    .content-review,
    .review-form,
    .slot-game-wrap,
    .info-table-wrap,
    .table-overflow {
        max-width: 100%;
        min-width: 0;
    }


    .mobile-menu {
        top: 61px;
    }

    .hero {
        min-height: auto;
    }

    .hero-inner {
        gap: 24px;
        padding: 36px 14px;
    }

    .hero-btns,
    .mobile-menu-btns,
    .slot-reels,
    .tc-timer,
    .comment-header,
    .footer-logos-row,
    .footer-logos-pills,
    .footer-trust,
    .sw-code-wrap {
        width: 100%;
    }

    .hero-btns .btn,
    .mobile-menu-btns .btn,
    .slot-spin-btn .btn,
    .tournament-card .btn,
    .review-form .btn,
    .sticky-widget .btn {
        width: 100%;
    }

    .section-header,
    .section-header-row {
        margin-bottom: 24px;
    }

    .section-header-row {
        align-items: stretch;
    }

    .section-sub {
        margin-bottom: 24px;
    }

    .info-table,
    .info-table tbody,
    .info-table tr,
    .info-table td {
        display: block;
        width: 100%;
    }

    .info-table tr {
        padding: 14px;
        border-bottom: 1px solid var(--c-border);
    }

    .info-table tr:last-child {
        border-bottom: 0;
    }

    .info-table tr:not(:last-child) td,
    .info-table td {
        border-bottom: 0;
    }

    .info-table td {
        padding: 4px 0;
    }

    .info-table td:first-child {
        width: 100%;
        margin-bottom: 6px;
    }

    .mirrors-table {
        min-width: 680px;
    }

    .screenshots-mobile {
        display: block;
    }

    .screenshots-mobile-track .screenshot-item {
        flex: 0 0 100%;
    }

    .slider-nav-btn.prev {
        left: 8px;
    }

    .slider-nav-btn.next {
        right: 8px;
    }

    .tournament-card,
    .comment-item,
    .review-form,
    .slot-game-wrap,
    .content-review,
    .info-page-wrap {
        padding: 18px 14px;
    }

    .tc-timer {
        gap: 6px;
    }

    .tc-timer-seg {
        flex: 1;
        min-width: 0;
        padding: 6px 4px;
    }

    .slot-reels {
        gap: 6px;
    }

    .slot-reel {
        flex: 1;
        max-width: 82px;
    }

    .comment-header {
        flex-wrap: wrap;
    }

    .comment-stars {
        flex-basis: 100%;
        margin-left: 52px;
    }

    .form-stars-select {
        flex-wrap: wrap;
    }

    .content-review table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
    }

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

    .footer-top {
        gap: 24px;
    }

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

    .sticky-widget {
        padding: 12px 14px 14px;
        align-items: stretch;
    }

    .sw-left,
    .sw-code-wrap {
        width: 100%;
    }

    .sw-code {
        width: 100%;
        text-align: center;
    }

    body.has-widget {
        padding-bottom: 180px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    .section {
        padding: 32px 0;
    }

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

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

    .hero p {
        font-size: 14px;
        margin-bottom: 22px;
    }

    .btn,
    .btn-lg,
    .btn-xl {
        padding: 12px 16px;
        font-size: 14px;
    }

    .hbc-amount {
        font-size: 30px;
    }

    .mirrors-timestamp {
        width: 100%;
        justify-content: center;
    }

    .slot-reel {
        height: 68px;
        font-size: 34px;
    }

    .tc-prize {
        font-size: 20px;
    }

    .faq-q {
        padding: 14px;
        font-size: 14px;
    }

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

    .footer-inner {
        padding: 0 14px;
    }
}