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

:root {
    --clr-bg: #0e112b;
    --clr-header: #343a6c;
    --clr-btn-primary: #1abd8c;
    --clr-btn-secondary: #848cc9;
    --clr-text: #e8eaf6;
    --clr-text-muted: #a0a8d4;
    --clr-accent: #1abd8c;
    --clr-card: #1a1f45;
    --clr-card-alt: #232858;
    --clr-border: #2e3566;
    --clr-gold: #f0c040;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
    --transition: 0.22s cubic-bezier(.4, 0, .2, 1);
    --font-main: 'Montserrat', Arial, sans-serif;
}

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

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

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

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 {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

.box {
    width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-main);
    font-weight: 700;
    line-height: 1.25;
    color: #fff;
    text-wrap: balance;
}

h1 {
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    margin-bottom: 0.6em;
}

h2 {
    font-size: clamp(1.2rem, 3vw, 1.9rem);
    margin-bottom: 0.5em;
}

h3 {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
}

p {
    margin-bottom: 1em;
    color: var(--clr-text);
}

ul, ol {
    padding-left: 1.4em;
    margin-bottom: 1em;
}

li {
    margin-bottom: 0.35em;
    color: var(--clr-text);
}

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

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

.btn:active {
    transform: scale(0.97);
}

.btn--primary {
    background: var(--clr-btn-primary);
    color: #fff;
    box-shadow: 0 3px 14px rgba(26, 189, 140, 0.35);
}

.btn--primary:hover {
    background: #17a87d;
    color: #fff;
}

.btn--secondary {
    background: var(--clr-btn-secondary);
    color: #fff;
    box-shadow: 0 3px 14px rgba(132, 140, 201, 0.3);
}

.btn--secondary:hover {
    background: #6e77bb;
    color: #fff;
}

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

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

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

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

.section-title {
    font-size: clamp(1.3rem, 3vw, 1.85rem);
    font-weight: 800;
    color: #fff;
    text-align: center;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: var(--clr-text-muted);
    font-size: 0.95rem;
    margin-bottom: 32px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(26, 189, 140, 0.12);
    color: var(--clr-btn-primary);
    border: 1px solid rgba(26, 189, 140, 0.25);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.pt-80 {
    padding-top: 80px;
}

.pb-80 {
    padding-bottom: 80px;
}

.pt-60 {
    padding-top: 60px;
}

.pb-60 {
    padding-bottom: 60px;
}

.mt-40 {
    margin-top: 40px;
}

.mb-40 {
    margin-bottom: 40px;
}

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

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

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

.fade-in.visible {
    opacity: 1;
    transform: none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

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

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

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

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

.header-nav a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 12px;
    border-radius: var(--radius-sm);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: background var(--transition), color var(--transition);
}

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

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

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

.header-status {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(0, 0, 0, 0.22);
    border-radius: 50px;
    padding: 5px 14px;
    font-size: 0.74rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    white-space: nowrap;
}

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

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 4px var(--clr-btn-primary);
    }
    50% {
        box-shadow: 0 0 12px var(--clr-btn-primary);
    }
}

.header-status .players-count {
    color: var(--clr-btn-primary);
    font-weight: 700;
}

.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 6px;
    z-index: 1100;
}

.burger-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

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

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

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

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 16, 42, 0.97);
    z-index: 1050;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 80px 24px 40px;
}

.mobile-menu.open {
    display: flex;
    animation: fadeIn 0.22s ease;
}

.mobile-menu a {
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.05rem;
    font-weight: 600;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
    max-width: 320px;
}

.mobile-menu a svg {
    width: 20px;
    height: 20px;
    color: var(--clr-btn-primary);
}

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

.mobile-menu-close {
    position: absolute;
    top: 18px;
    right: 18px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 6px;
}

/* ===== HERO ===== */
.hero-section {
    position: relative;
    min-height: 540px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 60px 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('/h-pinocas.png') center/cover no-repeat;
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(14, 17, 43, 0.92) 0%, rgba(52, 58, 108, 0.7) 60%, rgba(14, 17, 43, 0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(26, 189, 140, 0.15);
    border: 1px solid rgba(26, 189, 140, 0.4);
    color: var(--clr-btn-primary);
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero-title {
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 900;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 14px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

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

.hero-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 28px;
    line-height: 1.7;
}

.promo-code-block {
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px dashed rgba(26, 189, 140, 0.5);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.promo-label {
    font-size: 0.78rem;
    color: var(--clr-text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.promo-code {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--clr-gold);
    letter-spacing: 0.1em;
    font-family: var(--font-main);
}

.promo-copy-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(26, 189, 140, 0.12);
    border: 1px solid rgba(26, 189, 140, 0.3);
    color: var(--clr-btn-primary);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition);
}

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

.promo-copy-btn svg {
    width: 14px;
    height: 14px;
}

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

/* ===== SECTION WRAPPER ===== */
.section-wrap {
    padding: 68px 0;
    position: relative;
}

.section-wrap + .section-wrap {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ===== JACKPOTS ===== */
.jackpots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 32px;
}

.jackpot-card {
    background: linear-gradient(145deg, #1a1f45, #232858);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 28px 22px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

.jackpot-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}

.jackpot-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--clr-btn-primary);
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.jackpot-card.mega::before {
    background: var(--clr-gold);
}

.jackpot-icon {
    font-size: 2.2rem;
    margin-bottom: 10px;
    display: block;
}

.jackpot-name {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--clr-text-muted);
    margin-bottom: 8px;
}

.jackpot-amount {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 900;
    color: var(--clr-gold);
    font-variant-numeric: tabular-nums;
    text-shadow: 0 0 20px rgba(240, 192, 64, 0.35);
    letter-spacing: -0.01em;
}

.jackpot-card .btn {
    margin-top: 16px;
    width: 100%;
}

/* ===== MIRRORS ===== */
.mirrors-section .section-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.live-time {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(26, 189, 140, 0.1);
    border: 1px solid rgba(26, 189, 140, 0.2);
    color: var(--clr-btn-primary);
    padding: 5px 13px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
}

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

.data-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--clr-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    min-width: 560px;
}

.data-table thead th {
    background: var(--clr-header);
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    padding: 13px 18px;
    text-align: left;
    border-bottom: 2px solid var(--clr-border);
}

.data-table tbody td {
    padding: 14px 18px;
    border-bottom: 1px solid var(--clr-border);
    font-size: 0.88rem;
    color: var(--clr-text);
    vertical-align: middle;
}

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

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

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 11px;
    border-radius: 50px;
    font-size: 0.76rem;
    font-weight: 700;
}

.status-badge.online {
    background: rgba(26, 189, 140, 0.14);
    color: var(--clr-btn-primary);
    border: 1px solid rgba(26, 189, 140, 0.28);
}

.status-badge.online::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--clr-btn-primary);
    animation: pulse 2s infinite;
}

/* ===== TOURNAMENTS ===== */
.tournaments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 22px;
    margin-top: 32px;
}

.tournament-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
}

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

.tournament-card-top {
    background: linear-gradient(135deg, var(--clr-header), #2a306b);
    padding: 22px 20px 18px;
    position: relative;
}

.tournament-card-top .tourn-prize {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(240, 192, 64, 0.15);
    border: 1px solid rgba(240, 192, 64, 0.3);
    color: var(--clr-gold);
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 800;
}

.tourn-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(26, 189, 140, 0.18);
    color: var(--clr-btn-primary);
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 10px;
}

.tourn-name {
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0;
}

.tournament-card-body {
    padding: 18px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tourn-desc {
    font-size: 0.86rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
}

.tourn-timer-wrap {
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
}

.timer-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--clr-text-muted);
    font-weight: 700;
    margin-bottom: 6px;
}

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

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

.timer-num {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    font-variant-numeric: tabular-nums;
    line-height: 1;
}

.timer-sep {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--clr-btn-primary);
    line-height: 1;
    padding-bottom: 4px;
}

.timer-sub {
    font-size: 0.62rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    font-weight: 600;
}

.tournament-card .btn {
    margin-top: auto;
}

/* Tournaments mobile slider */
.tournaments-slider-wrap {
    position: relative;
    overflow: hidden;
}

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

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

.slider-dot.active {
    background: var(--clr-btn-primary);
    width: 22px;
    border-radius: 4px;
}

/* ===== APP INFO ===== */
.app-section-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.app-info-block {
}

.app-download-block {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.app-download-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.app-desc {
    font-size: 0.88rem;
    color: var(--clr-text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

.app-store-btns {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--clr-card-alt);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 12px 18px;
    color: #fff;
    font-weight: 600;
    transition: all var(--transition);
    text-decoration: none;
}

.app-btn:hover {
    border-color: var(--clr-btn-primary);
    background: rgba(26, 189, 140, 0.08);
    color: #fff;
    transform: translateX(4px);
}

.app-btn svg {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
}

.app-btn-info {
    display: flex;
    flex-direction: column;
}

.app-btn-label {
    font-size: 0.68rem;
    color: var(--clr-text-muted);
    font-weight: 500;
}

.app-btn-name {
    font-size: 0.9rem;
    font-weight: 700;
}

/* ===== SLOT GAME ===== */
.slot-game-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
}

.slot-machine {
    background: linear-gradient(180deg, #1a1f45 0%, #111433 100%);
    border: 2px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 30px;
    max-width: 420px;
    width: 100%;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.slot-top {
    text-align: center;
    margin-bottom: 20px;
}

.slot-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--clr-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.slot-reels {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
    background: rgba(0, 0, 0, 0.35);
    border-radius: var(--radius-md);
    padding: 18px 14px;
    border: 1px solid var(--clr-border);
}

.reel {
    width: 72px;
    height: 72px;
    background: var(--clr-card);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    border: 1px solid var(--clr-border);
    transition: all 0.15s;
    overflow: hidden;
    position: relative;
}

.reel.spinning {
    animation: reel-spin 0.12s linear infinite;
}

@keyframes reel-spin {
    0% {
        transform: translateY(-4px);
    }
    50% {
        transform: translateY(4px);
    }
    100% {
        transform: translateY(-4px);
    }
}

.slot-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.bet-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--clr-text-muted);
}

.bet-row span {
    color: var(--clr-gold);
    font-weight: 700;
}

.slot-result {
    text-align: center;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.95rem;
    display: none;
}

.slot-result.win {
    display: block;
    background: rgba(26, 189, 140, 0.12);
    border: 1px solid rgba(26, 189, 140, 0.3);
    color: var(--clr-btn-primary);
    animation: fadeIn 0.4s ease;
}

.slot-result.lose {
    display: block;
    background: rgba(255, 80, 80, 0.09);
    border: 1px solid rgba(255, 80, 80, 0.2);
    color: #ff6b6b;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

.author-block {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--clr-border);
}

.author-avatar {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--clr-header);
    border: 2px solid var(--clr-btn-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--clr-btn-primary);
    flex-shrink: 0;
    overflow: hidden;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3px;
}

.author-role {
    font-size: 0.78rem;
    color: var(--clr-btn-secondary);
    font-weight: 600;
}

.author-bio {
    font-size: 0.82rem;
    color: var(--clr-text-muted);
    margin-top: 5px;
    margin-bottom: 0;
    line-height: 1.6;
}

.author-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    color: var(--clr-btn-secondary);
    margin-top: 5px;
}

.content-body h1,
.content-body h2,
.content-body h3,
.content-body h4,
.content-body h5,
.content-body h6 {
    color: #fff;
    margin-top: 1.4em;
    margin-bottom: 0.5em;
}

.content-body p {
    color: var(--clr-text);
    font-size: 0.95rem;
    line-height: 1.75;
}

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

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

.content-body ul, .content-body ol {
    padding-left: 1.5em;
    margin-bottom: 1em;
}

.content-body li {
    color: var(--clr-text);
    font-size: 0.93rem;
    margin-bottom: 0.4em;
    line-height: 1.65;
}

.content-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.2em 0;
    background: rgba(0, 0, 0, 0.18);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.content-body table th {
    background: var(--clr-header);
    color: rgba(255, 255, 255, 0.8);
    padding: 10px 14px;
    text-align: left;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.content-body table td {
    padding: 10px 14px;
    border-bottom: 1px solid var(--clr-border);
    font-size: 0.88rem;
    color: var(--clr-text);
}

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

.content-body table tr:hover td {
    background: rgba(255, 255, 255, 0.03);
}

.content-body blockquote {
    border-left: 3px solid var(--clr-btn-primary);
    padding-left: 16px;
    margin: 1.2em 0;
    color: var(--clr-text-muted);
    font-style: italic;
}

.content-body img {
    border-radius: var(--radius-sm);
    margin: 1em 0;
}

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

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

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

/* ===== REGISTRATION STEPS ===== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 22px;
    margin-top: 32px;
    counter-reset: step;
}

.step-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 26px 22px;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition);
    counter-increment: step;
}

.step-card:hover {
    transform: translateY(-4px);
}

.step-card::before {
    content: counter(step);
    position: absolute;
    top: -10px;
    right: 16px;
    font-size: 4.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.04);
    line-height: 1;
    font-family: var(--font-main);
}

.step-icon {
    width: 46px;
    height: 46px;
    background: rgba(26, 189, 140, 0.12);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    color: var(--clr-btn-primary);
}

.step-icon svg {
    width: 24px;
    height: 24px;
}

.step-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 7px;
}

.step-desc {
    font-size: 0.84rem;
    color: var(--clr-text-muted);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--clr-header);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 56px 0 28px;
    margin-top: auto;
}

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

.footer-brand {
}

.footer-logo {
    margin-bottom: 14px;
}

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

.footer-desc {
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin-bottom: 16px;
}

.footer-flag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
}

.footer-col-title {
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 9px;
}

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

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

.footer-socials {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.social-link {
    width: 34px;
    height: 34px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.65);
    transition: all var(--transition);
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.footer-bottom {
    padding-top: 30px;
}

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

.footer-logo-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    padding: 6px 12px;
    font-size: 0.74rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
}

.footer-logo-badge svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.footer-logo-badge.highlight {
    border-color: rgba(26, 189, 140, 0.3);
    color: var(--clr-btn-primary);
}

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

.payment-badge {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 6px;
    padding: 5px 11px;
    font-size: 0.73rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.55);
}

.footer-disclaimer {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.7;
    max-width: 820px;
    margin-bottom: 12px;
}

.footer-copyright {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-copyright a {
    color: rgba(255, 255, 255, 0.5);
}

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

/* ===== PROMO WIDGET ===== */
.promo-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: linear-gradient(90deg, #1a1f45 0%, var(--clr-header) 100%);
    border-top: 2px solid var(--clr-btn-primary);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5);
    padding: 10px 0;
    transform: translateY(0);
    transition: transform var(--transition);
}

.promo-widget.hidden {
    transform: translateY(110%);
}

.promo-widget-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.widget-left {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.widget-code-wrap {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.widget-code-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

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

.widget-code {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--clr-gold);
    letter-spacing: 0.12em;
    font-family: var(--font-main);
}

.widget-copy-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(26, 189, 140, 0.12);
    border: 1px solid rgba(26, 189, 140, 0.28);
    color: var(--clr-btn-primary);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition);
}

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

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

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

.widget-bonus {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.65);
}

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

.widget-close {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    padding: 4px;
    font-size: 1rem;
    line-height: 1;
    transition: color var(--transition);
}

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

/* ===== FAQ ===== */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 860px;
    margin: 30px auto 0;
}

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

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 20px;
    background: transparent;
    border: none;
    color: #fff;
    font-family: var(--font-main);
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    text-align: left;
    transition: background var(--transition);
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.04);
}

.faq-question svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--clr-btn-primary);
    transition: transform var(--transition);
}

.faq-item.open .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 20px 16px;
    font-size: 0.88rem;
    color: var(--clr-text-muted);
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    display: block;
    animation: fadeIn 0.25s ease;
}

/* ===== INFO PAGES ===== */
.info-page-wrap {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 36px 38px;
    max-width: 860px;
    margin: 0 auto;
}

/* ===== BREADCRUMBS ===== */
.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 0;
    font-size: 0.82rem;
    color: var(--clr-text-muted);
}

.breadcrumb-nav a {
    color: var(--clr-btn-secondary);
}

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

.breadcrumb-sep {
    color: var(--clr-border);
}

/* ===== CONTACT FORM ===== */
.contact-form {
    max-width: 620px;
    margin: 28px 0;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 18px;
}

.form-group label {
    font-size: 0.87rem;
    font-weight: 600;
    color: var(--clr-text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    color: var(--clr-text);
    font-family: var(--font-main);
    font-size: 0.93rem;
    padding: 11px 14px;
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--clr-btn-secondary);
    box-shadow: 0 0 0 3px rgba(132, 140, 201, 0.14);
}

.form-group select {
    appearance: none;
    cursor: pointer;
}

.form-group select option {
    background: var(--clr-card);
    color: var(--clr-text);
}

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.87rem;
    color: var(--clr-text-muted);
}

.checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: var(--clr-btn-primary);
    flex-shrink: 0;
    cursor: pointer;
}

.checkbox-label a {
    color: var(--clr-btn-secondary);
}

/* ===== INVISIBLE WP HELPERS ===== */
.wp-block-group, .entry-content, .wp-post-image, .elementor-widget, .wp-caption, .alignleft, .alignright {
    display: contents;
}

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

.wpcf7, .gravity-forms-wrap {
    display: none;
}

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

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

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

    .header-status {
        display: none;
    }

    .burger-btn {
        display: flex;
    }

    .header-inner {
        grid-template-columns: auto 1fr auto auto;
        padding: 10px 14px;
        gap: 10px;
    }

    .hero-section {
        min-height: 420px;
        padding: 40px 0;
    }

    .hero-content {
        max-width: 100%;
    }

    .section-wrap {
        padding: 48px 0;
    }

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

    .tournaments-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
    }

    .tournament-card {
        min-width: 280px;
        scroll-snap-align: start;
        flex-shrink: 0;
    }

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

    .promo-widget-inner {
        gap: 8px;
    }

    .widget-bonus {
        display: none;
    }

    .review-wrap {
        padding: 22px 18px;
    }

    .info-page-wrap {
        padding: 22px 18px;
    }

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

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

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

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

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

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

    .promo-widget-inner {
        flex-direction: column;
        align-items: flex-start;
    }

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

.sep-wave {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin-top: -2px;
}

.sep-wave svg {
    display: block;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(26, 189, 140, 0.08), rgba(52, 58, 108, 0.3));
    border: 1px solid rgba(26, 189, 140, 0.18);
    border-radius: var(--radius-lg);
    padding: 26px 28px;
    margin-bottom: 20px;
}

.providers-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.provider-tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 6px 13px;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.65);
    transition: all var(--transition);
}

.provider-tag:hover {
    border-color: var(--clr-btn-primary);
    color: var(--clr-btn-primary);
    background: rgba(26, 189, 140, 0.06);
}

.toast-msg {
    position: fixed;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--clr-btn-primary);
    color: #fff;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 9999;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
}

.toast-msg.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.wp-content-placeholder {
    display: none;
}

.elementor-section {
    display: contents;
}

#app {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

#app .app-section-inner {
    width: 100%;
    min-width: 0;
}

#app .app-info-block,
#app .app-download-block {
    width: 100%;
    min-width: 0;
    max-width: 100%;
}

#app .table-wrap {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
}

#app .data-table {
    width: 100%;
    margin: 0;
}

#app .app-download-block {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 28px;
}

#app .app-download-title {
    font-size: 1.25rem;
    line-height: 1.35;
}

#app .app-desc {
    margin: 0;
}

#app .app-store-btns {
    width: 100%;
}

#app .app-btn {
    width: 100%;
    min-width: 0;
}

#app .app-btn-info {
    min-width: 0;
}

#app .app-btn-label,
#app .app-btn-name {
    overflow-wrap: anywhere;
}

@media (max-width: 1024px) {

    #app .app-section-inner {
        display: grid;
        grid-template-columns:1fr;
        gap: 24px;
    }

    #app .app-download-block {
        order: 1;
    }

    #app .app-info-block {
        order: 2;
    }
}

@media (max-width: 768px) {

    #app {
        padding: 40px 0;
    }

    #app .section-label {
        font-size: 11px;
        padding: 5px 11px;
        margin-bottom: 10px;
    }

    #app .section-title {
        font-size: 1.45rem;
        line-height: 1.3;
        text-align: left;
        margin-bottom: 8px;
    }

    #app .section-subtitle {
        font-size: 13px;
        line-height: 1.6;
        text-align: left;
        margin-bottom: 22px;
    }

    #app .app-section-inner {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 18px;
    }

    #app .app-download-block {
        order: 1;
        width: 100%;
        padding: 20px 16px;
        border-radius: 16px;
    }

    #app .app-info-block {
        order: 2;
        width: 100%;
    }

    #app .app-download-title {
        font-size: 1.1rem;
        margin-bottom: 2px;
    }

    #app .app-desc {
        font-size: 13px;
        line-height: 1.65;
        margin-bottom: 4px;
    }

    #app .app-store-btns {
        display: grid;
        grid-template-columns:1fr;
        width: 100%;
        gap: 10px;
    }

    #app .app-btn {
        display: grid;
        grid-template-columns:28px minmax(0, 1fr);
        align-items: center;
        width: 100%;
        min-height: 58px;
        gap: 12px;
        padding: 11px 14px;
        border-radius: 12px;
        transform: none !important;
    }

    #app .app-btn svg {
        width: 26px;
        height: 26px;
    }

    #app .app-btn-info {
        width: 100%;
        min-width: 0;
    }

    #app .app-btn-label {
        font-size: 10px;
        line-height: 1.3;
    }

    #app .app-btn-name {
        font-size: 14px;
        line-height: 1.35;
    }

    #app .table-wrap {
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        border-radius: 14px;
    }

    #app .data-table {
        width: 100%;
        min-width: 520px;
    }

    #app .data-table th,
    #app .data-table td {
        padding: 11px 12px;
        font-size: 12px;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {

    #app {
        padding: 32px 0;
    }

    #app .section-title {
        font-size: 1.3rem;
    }

    #app .section-subtitle {
        font-size: 12px;
        margin-bottom: 18px;
    }

    #app .app-download-block {
        padding: 16px 12px;
        border-radius: 14px;
    }

    #app .app-download-title {
        font-size: 1rem;
    }

    #app .app-desc {
        font-size: 12px;
    }

    #app .app-btn {
        min-height: 54px;
        padding: 10px 12px;
        grid-template-columns:24px minmax(0, 1fr);
        gap: 10px;
    }

    #app .app-btn svg {
        width: 24px;
        height: 24px;
    }

    #app .app-btn-label {
        font-size: 9px;
    }

    #app .app-btn-name {
        font-size: 13px;
    }

    #app .data-table {
        min-width: 480px;
    }

    #app .data-table th,
    #app .data-table td {
        padding: 10px;
        font-size: 11px;
    }
}

#toernooien {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

#toernooien .tournaments-slider-wrap {
    position: relative;
    width: 100%;
    max-width: 100%;
}

#toernooien .tournaments-grid {
    display: grid;
    grid-template-columns:repeat(4, minmax(0, 1fr));
    gap: 20px;
    width: 100%;
    margin-top: 28px;
}

#toernooien .tournament-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
    height: 100%;
    overflow: hidden;
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .28);
}

#toernooien .tournament-card-top {
    position: relative;
    min-height: 126px;
    padding: 22px 18px 18px;
    background: linear-gradient(135deg, var(--clr-header), #252b61);
}

#toernooien .tourn-prize {
    position: absolute;
    top: 14px;
    right: 14px;
    max-width: 48%;
    padding: 5px 10px;
    overflow: hidden;
    color: var(--clr-gold);
    background: rgba(240, 192, 64, .12);
    border: 1px solid rgba(240, 192, 64, .28);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#toernooien .tourn-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    max-width: 48%;
    padding: 4px 10px;
    margin-bottom: 14px;
    color: var(--clr-btn-primary);
    background: rgba(26, 189, 140, .14);
    border: 1px solid rgba(26, 189, 140, .25);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
}

#toernooien .tourn-badge svg {
    width: 10px;
    height: 10px;
    flex: 0 0 10px;
}

#toernooien .tourn-name {
    max-width: 100%;
    padding-right: 6px;
    color: #fff;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

#toernooien .tournament-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 14px;
    padding: 18px;
}

#toernooien .tourn-desc {
    flex: 1;
    margin: 0;
    color: var(--clr-text-muted);
    font-size: 13px;
    line-height: 1.65;
}

#toernooien .tourn-timer-wrap {
    width: 100%;
    padding: 12px;
    background: rgba(0, 0, 0, .2);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: var(--radius-sm);
}

#toernooien .timer-label {
    margin-bottom: 8px;
    color: var(--clr-text-muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

#toernooien .timer-display {
    display: grid;
    grid-template-columns:1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    width: 100%;
    gap: 5px;
}

#toernooien .timer-unit {
    min-width: 0;
    text-align: center;
}

#toernooien .timer-num {
    display: block;
    color: #fff;
    font-size: 21px;
    font-weight: 800;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

#toernooien .timer-sub {
    display: block;
    margin-top: 4px;
    color: var(--clr-text-muted);
    font-size: 8px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
}

#toernooien .timer-sep {
    color: var(--clr-btn-primary);
    font-size: 18px;
    font-weight: 800;
    line-height: 1;
}

#toernooien .tournament-card .btn {
    width: 100%;
    min-height: 44px;
    margin-top: auto;
    justify-content: center;
}

@media (max-width: 1100px) {

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

@media (max-width: 768px) {

    #toernooien {
        padding: 42px 0;
    }

    #toernooien .section-label {
        font-size: 10px;
        padding: 5px 10px;
    }

    #toernooien .section-title {
        font-size: 1.4rem;
        line-height: 1.3;
        text-align: left;
    }

    #toernooien .section-subtitle {
        margin-bottom: 20px;
        font-size: 13px;
        line-height: 1.55;
        text-align: left;
    }

    #toernooien .tournaments-slider-wrap {
        overflow: visible;
    }

    #toernooien .tournaments-grid {
        display: flex;
        width: 100%;
        margin-top: 20px;
        gap: 14px;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 0 1px 10px;
        scroll-snap-type: x mandatory;
        scroll-padding-left: 1px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    #toernooien .tournaments-grid::-webkit-scrollbar {
        display: none;
    }

    #toernooien .tournament-card {
        flex: 0 0 86%;
        min-width: 86%;
        scroll-snap-align: start;
        border-radius: 16px;
    }

    #toernooien .tournament-card-top {
        min-height: 112px;
        padding: 18px 15px 16px;
    }

    #toernooien .tourn-prize {
        top: 12px;
        right: 12px;
        max-width: 52%;
        padding: 4px 8px;
        font-size: 10px;
    }

    #toernooien .tourn-badge {
        max-width: 44%;
        margin-bottom: 12px;
        padding: 4px 8px;
        font-size: 9px;
    }

    #toernooien .tourn-name {
        font-size: 15px;
    }

    #toernooien .tournament-card-body {
        gap: 12px;
        padding: 15px;
    }

    #toernooien .tourn-desc {
        font-size: 12px;
        line-height: 1.6;
    }

    #toernooien .tourn-timer-wrap {
        padding: 10px 8px;
    }

    #toernooien .timer-display {
        gap: 3px;
    }

    #toernooien .timer-num {
        font-size: 18px;
    }

    #toernooien .timer-sep {
        font-size: 15px;
    }

    #toernooien .timer-sub {
        font-size: 7px;
    }

    #toernooien .tournament-card .btn {
        min-height: 42px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {

    #toernooien {
        padding: 34px 0;
    }

    #toernooien .section-title {
        font-size: 1.25rem;
    }

    #toernooien .section-subtitle {
        font-size: 12px;
    }

    #toernooien .tournament-card {
        flex-basis: 92%;
        min-width: 92%;
    }

    #toernooien .tournament-card-top {
        min-height: 108px;
        padding: 16px 13px 14px;
    }

    #toernooien .tourn-name {
        font-size: 14px;
    }

    #toernooien .tournament-card-body {
        padding: 13px;
    }

    #toernooien .timer-num {
        font-size: 16px;
    }

    #toernooien .timer-sep {
        font-size: 13px;
    }
}