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

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

:root {
    --clr-bg: #111213;
    --clr-header: #1f2028;
    --clr-primary: #feaf11;
    --clr-secondary: #d3510d;
    --clr-text: #e8e9ec;
    --clr-muted: #9a9ba8;
    --clr-card: #1a1b24;
    --clr-border: #2a2b38;
    --clr-success: #22c55e;
    --clr-input: #23242f;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    --transition: 0.25s ease;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.6);
}

html {
    scroll-behavior: smooth;
    font-size: 16px
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.6;
    overflow-x: hidden
}

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

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

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

ul {
    list-style: none
}

button {
    cursor: pointer;
    border: none;
    outline: none
}

.wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column
}

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

.container--wide {
    max-width: 1400px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    transition: all var(--transition);
    text-decoration: none;
    cursor: pointer;
    border: none;
    white-space: nowrap
}

.btn--primary {
    background: var(--clr-primary);
    color: #111;
    box-shadow: 0 2px 12px rgba(254, 175, 17, 0.3)
}

.btn--primary:hover {
    background: #ffc13a;
    color: #111;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(254, 175, 17, 0.5)
}

.btn--secondary {
    background: var(--clr-secondary);
    color: #fff;
    box-shadow: 0 2px 12px rgba(211, 81, 13, 0.3)
}

.btn--secondary:hover {
    background: #e8601a;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(211, 81, 13, 0.45)
}

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

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

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

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

.btn--block {
    width: 100%
}

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

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff
}

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

.nb-xg7q2 {
    display: none
}

.nb-p3r9k {
    visibility: hidden;
    position: absolute
}

.nb-m8f4t {
    opacity: 0;
    pointer-events: none;
    height: 0
}

.site-header {
    background: var(--clr-header);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--clr-border);
    box-shadow: var(--shadow)
}

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

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

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

.header-nav a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    color: var(--clr-text);
    font-size: 0.88rem;
    font-weight: 500;
    transition: all var(--transition)
}

.header-nav a:hover, .header-nav a.active {
    background: rgba(254, 175, 17, 0.12);
    color: var(--clr-primary)
}

.header-nav a svg {
    flex-shrink: 0
}

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

.header-online {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--clr-muted);
    margin-right: 8px;
    white-space: nowrap
}

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

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5)
    }
    50% {
        box-shadow: 0 0 0 5px rgba(34, 197, 94, 0)
    }
}

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

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

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

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

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

.mobile-menu {
    display: none;
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--clr-header);
    z-index: 99;
    overflow-y: auto;
    padding: 20px 16px;
    flex-direction: column;
    gap: 8px
}

.mobile-menu.open {
    display: flex
}

.mobile-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-radius: var(--radius-md);
    color: var(--clr-text);
    font-size: 1rem;
    font-weight: 500;
    border: 1px solid var(--clr-border)
}

.mobile-menu a:hover {
    background: rgba(254, 175, 17, 0.1);
    color: var(--clr-primary);
    border-color: var(--clr-primary)
}

.mobile-menu-actions {
    display: flex;
    gap: 10px;
    margin-top: 16px
}

.mobile-menu-actions .btn {
    flex: 1
}

.hero-slider {
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid var(--clr-border)
}

.hero-slides {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1)
}

.hero-slide {
    min-width: 100%;
    position: relative;
    height: 480px;
    overflow: hidden
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(17, 18, 19, 0.92) 0%, rgba(17, 18, 19, 0.6) 60%, rgba(17, 18, 19, 0.1) 100%)
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 10%;
    max-width: 660px
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(254, 175, 17, 0.15);
    border: 1px solid rgba(254, 175, 17, 0.4);
    color: var(--clr-primary);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 16px;
    width: fit-content
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 12px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5)
}

.hero-desc {
    font-size: 1rem;
    color: rgba(232, 233, 236, 0.85);
    margin-bottom: 28px;
    line-height: 1.5;
    max-width: 460px
}

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

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

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

.hero-dot.active {
    background: var(--clr-primary);
    width: 24px;
    border-radius: 4px
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(31, 32, 40, 0.7);
    border: 1px solid var(--clr-border);
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: all var(--transition)
}

.hero-arrow:hover {
    background: var(--clr-primary);
    color: #111;
    border-color: var(--clr-primary)
}

.hero-arrow--prev {
    left: 16px
}

.hero-arrow--next {
    right: 16px
}

.section {
    padding: 64px 0
}

.section--dark {
    background: var(--clr-card)
}

.section--border {
    border-top: 1px solid var(--clr-border)
}

.info-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -4px
}

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

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

.info-table tr:hover {
    background: rgba(254, 175, 17, 0.04)
}

.info-table td {
    padding: 13px 16px;
    font-size: 0.9rem;
    vertical-align: middle
}

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

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

.info-table .td-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: var(--radius-sm);
    background: rgba(254, 175, 17, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-primary)
}

.info-table .badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(34, 197, 94, 0.12);
    color: #22c55e;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600
}

.info-table .badge--orange {
    background: rgba(254, 175, 17, 0.12);
    color: var(--clr-primary)
}

.tournaments-grid {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 20px
}

.tournament-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all 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(--clr-primary), var(--clr-secondary))
}

.tournament-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(254, 175, 17, 0.3)
}

.tournament-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(211, 81, 13, 0.15);
    color: var(--clr-secondary);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    width: fit-content
}

.tournament-name {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3
}

.tournament-desc {
    font-size: 0.83rem;
    color: var(--clr-muted);
    line-height: 1.5
}

.tournament-prize {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--clr-primary)
}

.tournament-prize span {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--clr-muted);
    display: block;
    margin-top: 2px
}

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

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

.timer-block .timer-num {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    display: block;
    font-variant-numeric: tabular-nums
}

.timer-block .timer-label {
    font-size: 0.62rem;
    color: var(--clr-muted);
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px
}

.timer-sep {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--clr-primary);
    align-self: flex-start;
    padding-top: 4px
}

.tournaments-slider-wrap {
    position: relative
}

.tournaments-slider {
    overflow: hidden
}

.tournaments-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease
}

.tournaments-track .tournament-card {
    min-width: calc(100vw - 64px);
    flex-shrink: 0
}

.app-table-wrap {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.app-info-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--clr-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow)
}

.app-info-table tr:not(:last-child) {
    border-bottom: 1px solid var(--clr-border)
}

.app-info-table td {
    padding: 12px 20px;
    font-size: 0.9rem
}

.app-info-table td:first-child {
    color: var(--clr-muted);
    font-weight: 500;
    width: 40%
}

.app-info-table td:last-child {
    color: var(--clr-text);
    font-weight: 600
}

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

.app-dl-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 12px 20px;
    color: var(--clr-text);
    transition: all var(--transition);
    flex: 1;
    min-width: 160px
}

.app-dl-btn:hover {
    background: rgba(254, 175, 17, 0.08);
    border-color: var(--clr-primary);
    color: var(--clr-primary)
}

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

.app-dl-btn .dl-btn-text small {
    font-size: 0.7rem;
    color: var(--clr-muted)
}

.app-dl-btn .dl-btn-text strong {
    font-size: 0.95rem;
    font-weight: 700
}

.app-dl-btn svg {
    flex-shrink: 0;
    color: var(--clr-muted)
}

.app-dl-btn:hover svg {
    color: var(--clr-primary)
}

.demo-section-inner {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.demo-game-select {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.demo-game-btn {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 10px 18px;
    color: var(--clr-text);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    font-family: 'Outfit', sans-serif
}

.demo-game-btn:hover, .demo-game-btn.active {
    background: rgba(254, 175, 17, 0.1);
    border-color: var(--clr-primary);
    color: var(--clr-primary)
}

.demo-iframe-wrap {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: var(--radius-lg);
    border: 2px solid var(--clr-border);
    background: #000
}

.demo-iframe-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none
}

.demo-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(254, 175, 17, 0.1), rgba(211, 81, 13, 0.08));
    border: 1px solid rgba(254, 175, 17, 0.25);
    border-radius: var(--radius-lg);
    padding: 22px 28px;
    gap: 16px;
    flex-wrap: wrap
}

.demo-cta-text h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px
}

.demo-cta-text p {
    font-size: 0.875rem;
    color: var(--clr-muted)
}

.review-block {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 40px 44px
}

.review-author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--clr-border)
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 800;
    color: #111;
    flex-shrink: 0
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px
}

.author-info p {
    font-size: 0.82rem;
    color: var(--clr-muted);
    margin-bottom: 6px
}

.author-info a {
    font-size: 0.8rem;
    color: var(--clr-secondary)
}

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

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

.review-content h2 {
    font-size: 1.5rem
}

.review-content h3 {
    font-size: 1.25rem
}

.review-content h4 {
    font-size: 1.05rem
}

.review-content p {
    margin-bottom: 16px;
    font-size: 0.95rem
}

.review-content ul, .review-content ol {
    margin: 12px 0 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 6px
}

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

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

.review-content li {
    font-size: 0.93rem;
    line-height: 1.65
}

.review-content a {
    color: var(--clr-secondary);
    text-decoration: underline;
    text-underline-offset: 3px
}

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

.review-content table th {
    background: rgba(254, 175, 17, 0.1);
    color: var(--clr-primary);
    padding: 10px 14px;
    text-align: left;
    font-size: 0.85rem
}

.review-content table td {
    padding: 10px 14px;
    border-top: 1px solid var(--clr-border);
    font-size: 0.88rem;
    text-align: left
}

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

.review-content em, .review-content i {
    color: var(--clr-muted)
}

.review-content blockquote {
    border-left: 3px solid var(--clr-primary);
    padding: 12px 20px;
    background: rgba(254, 175, 17, 0.06);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 16px 0
}

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

.security-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 20px
}

.security-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 26px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all var(--transition)
}

.security-card:hover {
    border-color: rgba(254, 175, 17, 0.3);
    transform: translateY(-2px)
}

.security-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(254, 175, 17, 0.15), rgba(211, 81, 13, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-primary)
}

.security-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff
}

.security-card p {
    font-size: 0.85rem;
    color: var(--clr-muted);
    line-height: 1.6
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px
}

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

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
    text-align: left;
    font-family: 'Outfit', sans-serif;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    transition: background var(--transition)
}

.faq-question:hover {
    background: rgba(254, 175, 17, 0.05)
}

.faq-question.open {
    color: var(--clr-primary)
}

.faq-icon {
    flex-shrink: 0;
    transition: transform var(--transition);
    color: var(--clr-muted)
}

.faq-question.open .faq-icon {
    transform: rotate(180deg);
    color: var(--clr-primary)
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 22px
}

.faq-answer.open {
    max-height: 400px;
    padding: 0 22px 18px
}

.faq-answer p {
    font-size: 0.9rem;
    color: var(--clr-muted);
    line-height: 1.7
}

.site-footer {
    background: var(--clr-header);
    border-top: 2px solid var(--clr-border);
    padding: 56px 0 0
}

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

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

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

.footer-desc {
    font-size: 0.82rem;
    color: var(--clr-muted);
    line-height: 1.65;
    margin-bottom: 16px
}

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

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: var(--clr-bg);
    border: 1px solid var(--clr-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-muted);
    transition: all var(--transition)
}

.footer-social a:hover {
    background: var(--clr-primary);
    color: #111;
    border-color: var(--clr-primary)
}

.footer-nav-cols {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 24px
}

.footer-nav-col h4 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--clr-muted);
    margin-bottom: 14px
}

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

.footer-nav-col ul li a {
    font-size: 0.85rem;
    color: var(--clr-muted);
    transition: color var(--transition)
}

.footer-nav-col ul li a:hover {
    color: var(--clr-primary)
}

.footer-logos {
    padding: 28px 0;
    border-bottom: 1px solid var(--clr-border);
    display: flex;
    flex-direction: column;
    gap: 20px
}

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

.footer-logos-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--clr-muted);
    min-width: 110px;
    flex-shrink: 0
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--clr-bg);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 5px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--clr-muted);
    white-space: nowrap
}

.footer-badge svg {
    flex-shrink: 0
}

.footer-age-badge {
    background: var(--clr-secondary);
    color: #fff;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800
}

.footer-bottom {
    padding: 20px 0
}

.footer-copyright {
    font-size: 0.78rem;
    color: var(--clr-muted);
    line-height: 1.7;
    text-align: center
}

.footer-copyright a {
    color: var(--clr-muted);
    text-decoration: underline;
    text-underline-offset: 2px
}

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

.promo-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1)
}

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

.promo-widget-inner {
    background: linear-gradient(135deg, #1f2028 0%, #23242f 100%);
    border-top: 2px solid var(--clr-primary);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    box-shadow: 0 -4px 32px rgba(0, 0, 0, 0.5)
}

.promo-text {
    font-size: 0.9rem;
    color: var(--clr-muted)
}

.promo-text strong {
    color: #fff
}

.promo-code-wrap {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--clr-bg);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    overflow: hidden
}

.promo-code {
    padding: 9px 16px;
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--clr-primary);
    letter-spacing: 1.5px;
    font-variant-numeric: tabular-nums
}

.promo-copy-btn {
    background: rgba(254, 175, 17, 0.12);
    border: none;
    border-left: 1px solid var(--clr-border);
    padding: 9px 12px;
    cursor: pointer;
    color: var(--clr-primary);
    display: flex;
    align-items: center;
    transition: background var(--transition)
}

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

.promo-widget-close {
    position: absolute;
    top: -14px;
    right: 16px;
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--clr-muted);
    transition: all var(--transition);
    font-size: 14px
}

.promo-widget-close:hover {
    background: var(--clr-secondary);
    color: #fff;
    border-color: var(--clr-secondary)
}

@media (max-width: 1024px) {
    .tournaments-grid {
        grid-template-columns:repeat(2, 1fr)
    }

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

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

    .footer-nav-cols {
        grid-template-columns:repeat(2, 1fr)
    }
}

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

    .burger {
        display: flex
    }

    .hero-slide {
        height: 380px
    }

    .hero-title {
        font-size: 1.7rem
    }

    .hero-content {
        padding: 0 20px
    }

    .tournaments-grid {
        display: none
    }

    .tournaments-slider-wrap {
        display: block
    }

    .security-grid {
        grid-template-columns:1fr
    }

    .review-block {
        padding: 24px 20px
    }

    .demo-cta {
        flex-direction: column
    }

    .footer-nav-cols {
        grid-template-columns:1fr 1fr
    }

    .section {
        padding: 48px 0
    }

    .promo-widget-inner {
        border-radius: 0
    }

    .info-table td:first-child {
        width: auto
    }
}

@media (max-width: 540px) {
    .hero-slide {
        height: 300px
    }

    .hero-title {
        font-size: 1.35rem
    }

    .hero-badge {
        font-size: 0.7rem
    }

    .footer-nav-cols {
        grid-template-columns:1fr
    }

    .app-download-btns {
        flex-direction: column
    }

    .tournaments-track .tournament-card {
        min-width: calc(100vw - 48px)
    }
}

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

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

.wpcf7-form {
    display: none
}

.elementor-hidden {
    visibility: hidden;
    height: 0;
    overflow: hidden;
    position: absolute
}

.wp-caption-text {
    font-size: 0.75rem;
    color: var(--clr-muted);
    margin-top: 4px;
    font-style: italic
}

.screen-reader-text {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden
}

.nb-q8z3m .nb-xt92p, .nb-w5k1j .nb-lp67r {
    color: transparent;
    font-size: 0;
    line-height: 0;
    height: 0;
    pointer-events: none;
    display: none
}
