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

:root {
    --clr-header: #343a6c;
    --clr-footer: #343a6c;
    --clr-bg: #0e112b;
    --clr-bg2: #141736;
    --clr-bg3: #1a1f42;
    --clr-primary: #1abd8c;
    --clr-primary-h: #15a87c;
    --clr-secondary: #848cc9;
    --clr-secondary-h: #6e77b8;
    --clr-text: #e8eaf6;
    --clr-text-muted: #9fa3c8;
    --clr-border: rgba(132, 140, 201, 0.2);
    --clr-card: #1a1f42;
    --clr-card2: #1f2450;
    --radius: 12px;
    --radius-sm: 8px;
    --transition: 0.25s ease;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
    --shadow-card: 0 2px 16px rgba(0, 0, 0, 0.4);
}

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

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

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

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

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

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

ul {
    list-style: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.section-sub {
    color: var(--clr-text-muted);
    font-size: 15px;
    margin-bottom: 40px;
}

.section-head {
    text-align: center;
    margin-bottom: 40px;
}

.tag {
    display: inline-block;
    background: rgba(26, 189, 140, 0.15);
    color: var(--clr-primary);
    border: 1px solid rgba(26, 189, 140, 0.3);
    border-radius: 50px;
    padding: 4px 14px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

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

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

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

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

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

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

.header-nav a:hover, .header-nav a.active {
    background: rgba(132, 140, 201, 0.2);
    color: #fff;
}

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

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

.header-status {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(26, 189, 140, 0.1);
    border: 1px solid rgba(26, 189, 140, 0.2);
    border-radius: 50px;
    padding: 6px 14px;
    font-size: 12px;
    color: var(--clr-text-muted);
    white-space: nowrap;
}

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

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(26, 189, 140, 0.5);
    }
    50% {
        opacity: 0.8;
        box-shadow: 0 0 0 4px rgba(26, 189, 140, 0);
    }
}

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

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

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

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

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

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

/* ======== HERO SLIDER ======== */
.hero-slider {
    position: relative;
    overflow: hidden;
    height: 520px;
}

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

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

.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 8s ease;
}

.hero-slide.active .hero-slide-bg {
    transform: scale(1);
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(14, 17, 43, 0.92) 0%, rgba(14, 17, 43, 0.7) 50%, rgba(14, 17, 43, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 40px;
    animation: fadeInUp 0.7s ease;
}

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

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

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

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

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

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

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

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    border: none;
    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(52, 58, 108, 0.8);
    border: 1px solid rgba(132, 140, 201, 0.3);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background var(--transition);
}

.hero-arrow:hover {
    background: var(--clr-primary);
}

.hero-arrow--prev {
    left: 20px;
}

.hero-arrow--next {
    right: 20px;
}

/* ======== BREADCRUMBS ======== */
.breadcrumbs {
    background: var(--clr-bg2);
    border-bottom: 1px solid var(--clr-border);
    padding: 12px 0;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 13px;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M9 5l7 7-7 7'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.5;
}

.breadcrumb-list a {
    color: var(--clr-text-muted);
    font-weight: 500;
}

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

.breadcrumb-list li:last-child a,
.breadcrumb-list li:last-child span {
    color: var(--clr-primary);
    font-weight: 600;
    cursor: default;
}

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

.section--alt {
    background: var(--clr-bg2);
}

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

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

.adv-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.adv-card:hover {
    transform: translateY(-6px);
    border-color: rgba(26, 189, 140, 0.4);
    box-shadow: 0 8px 32px rgba(26, 189, 140, 0.1);
}

.adv-icon {
    width: 56px;
    height: 56px;
    background: rgba(26, 189, 140, 0.12);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--clr-primary);
}

.adv-title {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

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

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

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

.tournament-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.tournament-card-img {
    height: 160px;
    background: linear-gradient(135deg, #1a1f42 0%, #343a6c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.tournament-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(26, 31, 66, 0.9) 100%);
}

.t-icon {
    color: var(--clr-primary);
    position: relative;
    z-index: 1;
}

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

.tournament-name {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

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

.tournament-prize {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(26, 189, 140, 0.08);
    border: 1px solid rgba(26, 189, 140, 0.2);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
}

.prize-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--clr-text-muted);
}

.prize-amount {
    font-size: 20px;
    font-weight: 800;
    color: var(--clr-primary);
}

.tournament-timer {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.timer-block {
    text-align: center;
    background: var(--clr-bg);
    border-radius: var(--radius-sm);
    padding: 8px 12px;
    min-width: 52px;
}

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

.timer-lbl {
    font-size: 10px;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    margin-top: 4px;
}

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

/* ======== APP INFO ======== */
.app-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

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

.app-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.app-table th, .app-table td {
    padding: 12px 16px;
    text-align: left;
    border: 1px solid var(--clr-border);
}

.app-table th {
    background: var(--clr-bg3);
    color: var(--clr-text-muted);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.app-table td {
    background: var(--clr-card);
    color: var(--clr-text);
}

.app-table tr:hover td {
    background: var(--clr-card2);
}

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

.app-dl-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 28px;
}

.dl-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--clr-card2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 14px 20px;
    color: #fff;
    transition: all var(--transition);
    text-decoration: none;
}

.dl-btn:hover {
    background: var(--clr-primary);
    border-color: var(--clr-primary);
    color: #fff;
    transform: translateX(4px);
}

.dl-btn-icon {
    flex-shrink: 0;
    color: inherit;
}

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

.dl-btn-small {
    font-size: 11px;
    opacity: 0.75;
}

.dl-btn-big {
    font-size: 16px;
    font-weight: 700;
}

.app-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.app-mockup {
    width: 200px;
    height: 360px;
    background: var(--clr-bg3);
    border: 2px solid var(--clr-border);
    border-radius: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.app-mockup::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: var(--clr-border);
    border-radius: 3px;
}

.app-mockup-icon {
    color: var(--clr-primary);
}

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

.app-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 800;
    color: #fff;
}

.app-rating-stars {
    color: #f59e0b;
    font-size: 18px;
}

/* ======== SLOT MINI-GAME ======== */
.slot-machine {
    max-width: 460px;
    margin: 0 auto;
    background: var(--clr-card);
    border: 2px solid var(--clr-border);
    border-radius: 24px;
    padding: 36px 32px;
    text-align: center;
    box-shadow: var(--shadow);
}

.slot-title-wrap {
    margin-bottom: 28px;
}

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

.reel-wrap {
    width: 90px;
    height: 90px;
    background: var(--clr-bg);
    border: 2px solid var(--clr-border);
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    position: relative;
}

.reel-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.1s linear;
    line-height: 1;
}

.reel-inner.spinning {
    animation: reelSpin 0.2s steps(1) infinite;
}

@keyframes reelSpin {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-100%);
    }
}

.slot-result {
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.slot-win-msg {
    font-size: 18px;
    font-weight: 700;
    color: var(--clr-primary);
    animation: fadeInUp 0.4s ease;
}

.slot-lose-msg {
    font-size: 15px;
    color: var(--clr-text-muted);
    animation: fadeInUp 0.4s ease;
}

.slot-overlay {
    display: none;
    position: absolute;
    inset: 0;
    background: rgba(26, 189, 140, 0.15);
    border-radius: 12px;
    animation: flash 0.4s ease;
}

.reel-wrap.win .slot-overlay {
    display: block;
}

@keyframes flash {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}

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

.content-block h1,
.content-block h2,
.content-block h3,
.content-block h4,
.content-block h5,
.content-block h6 {
    color: #fff;
    font-weight: 700;
    margin-top: 28px;
    margin-bottom: 12px;
    line-height: 1.3;
}

.content-block h1 {
    font-size: clamp(22px, 3vw, 30px);
    margin-top: 0;
}

.content-block h2 {
    font-size: clamp(18px, 2.5vw, 24px);
}

.content-block h3 {
    font-size: clamp(16px, 2vw, 20px);
}

.content-block h4 {
    font-size: 17px;
}

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

.content-block ul,
.content-block ol {
    padding-left: 20px;
    margin-bottom: 16px;
}

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

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

.content-block li {
    color: var(--clr-text);
    margin-bottom: 8px;
    line-height: 1.6;
}

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

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

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

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

.content-block blockquote {
    border-left: 4px solid var(--clr-primary);
    padding: 12px 20px;
    background: rgba(26, 189, 140, 0.07);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 20px 0;
    color: var(--clr-text-muted);
    font-style: italic;
}

.content-block table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    overflow-x: auto;
    display: block;
}

.content-block table th,
.content-block table td {
    padding: 10px 14px;
    text-align: left;
    border: 1px solid var(--clr-border);
}

.content-block table th {
    background: var(--clr-bg3);
    color: var(--clr-text-muted);
    font-weight: 600;
    font-size: 13px;
}

.content-block table td {
    background: var(--clr-bg2);
    color: var(--clr-text);
    font-size: 14px;
}

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

/* ======== RESPONSIBLE GAMING ======== */
.resp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.resp-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 20px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    transition: border-color var(--transition);
}

.resp-card:hover {
    border-color: rgba(132, 140, 201, 0.4);
}

.resp-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: rgba(132, 140, 201, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-secondary);
}

.resp-info h4 {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.resp-info p {
    font-size: 12px;
    color: var(--clr-text-muted);
    line-height: 1.5;
    margin: 0;
}

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

.resp-link {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 10px 16px;
    color: var(--clr-text-muted);
    font-size: 13px;
    font-weight: 600;
    transition: all var(--transition);
}

.resp-link:hover {
    background: rgba(132, 140, 201, 0.15);
    border-color: var(--clr-secondary);
    color: var(--clr-secondary);
}

/* ======== REVIEWS ======== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.review-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform var(--transition), border-color var(--transition);
}

.review-card:hover {
    transform: translateY(-4px);
    border-color: rgba(26, 189, 140, 0.3);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 14px;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--clr-border);
}

.review-meta {
    flex: 1;
}

.review-name {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}

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

.review-stars {
    display: flex;
    gap: 3px;
}

.review-stars svg {
    color: #f59e0b;
}

.review-text {
    font-size: 14px;
    color: var(--clr-text-muted);
    line-height: 1.65;
}

.review-form-wrap {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 32px;
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

.form-input, .form-textarea {
    background: var(--clr-bg);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    color: var(--clr-text);
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 14px;
    transition: border-color var(--transition), box-shadow var(--transition);
    width: 100%;
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--clr-secondary);
    box-shadow: 0 0 0 3px rgba(132, 140, 201, 0.15);
}

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

.form-success {
    display: none;
    text-align: center;
    padding: 24px;
    background: rgba(26, 189, 140, 0.1);
    border: 1px solid rgba(26, 189, 140, 0.3);
    border-radius: var(--radius);
    color: var(--clr-primary);
    font-weight: 600;
    font-size: 15px;
    animation: fadeInUp 0.4s ease;
}

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

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

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

.author-role {
    display: inline-block;
    background: rgba(26, 189, 140, 0.12);
    color: var(--clr-primary);
    border: 1px solid rgba(26, 189, 140, 0.25);
    border-radius: 50px;
    padding: 3px 14px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 14px;
}

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

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

.author-link {
    display: flex;
    align-items: center;
    gap: 7px;
    background: var(--clr-bg3);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 7px 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--clr-text-muted);
    transition: all var(--transition);
}

.author-link:hover {
    border-color: var(--clr-secondary);
    color: var(--clr-secondary);
}

.author-dates {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

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

.author-date-item strong {
    color: var(--clr-text);
    font-weight: 600;
}

/* ======== FOOTER ======== */
.site-footer {
    background: var(--clr-footer);
    border-top: 1px solid rgba(132, 140, 201, 0.2);
    padding: 56px 0 32px;
}

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

.footer-logo-wrap {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.footer-logo {
    height: 40px;
    width: auto;
    border-radius: 8px;
}

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

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

.footer-social {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(232, 234, 246, 0.7);
    transition: all var(--transition);
}

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

.footer-email {
    font-size: 13px;
    color: var(--clr-secondary);
    display: flex;
    align-items: center;
    gap: 7px;
}

.footer-col-title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.footer-links a {
    font-size: 13px;
    color: rgba(232, 234, 246, 0.65);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: #fff;
}

.footer-divider {
    height: 1px;
    background: rgba(132, 140, 201, 0.15);
    margin: 32px 0;
}

.footer-badges-section {
    margin-bottom: 28px;
}

.footer-badges-title {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--clr-text-muted);
    margin-bottom: 14px;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 7px 12px;
    font-size: 12px;
    color: rgba(232, 234, 246, 0.7);
    font-weight: 600;
}

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

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 24px;
    border-top: 1px solid rgba(132, 140, 201, 0.1);
}

.footer-copy {
    font-size: 12px;
    color: rgba(232, 234, 246, 0.45);
}

.footer-legal {
    font-size: 12px;
    color: rgba(232, 234, 246, 0.4);
    max-width: 600px;
    line-height: 1.5;
}

.footer-18 {
    width: 32px;
    height: 32px;
    border: 2px solid rgba(132, 140, 201, 0.4);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    color: rgba(232, 234, 246, 0.5);
    flex-shrink: 0;
}

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

.provider-tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 11px;
    color: rgba(232, 234, 246, 0.55);
    font-weight: 600;
}

/* ======== PROMO WIDGET ======== */
.promo-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: linear-gradient(135deg, #1a1f42 0%, #343a6c 100%);
    border-top: 2px solid var(--clr-primary);
    padding: 14px 20px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5);
}

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

.promo-widget-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.promo-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--clr-primary);
    white-space: nowrap;
}

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

.promo-code {
    padding: 8px 16px;
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 2px;
}

.promo-copy {
    background: none;
    border: none;
    border-left: 1px dashed var(--clr-primary);
    padding: 8px 12px;
    color: var(--clr-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: background var(--transition);
}

.promo-copy:hover {
    background: rgba(26, 189, 140, 0.15);
}

.promo-copy-done {
    display: none;
}

.promo-text {
    font-size: 13px;
    color: rgba(232, 234, 246, 0.75);
    white-space: nowrap;
}

.promo-close {
    background: none;
    border: none;
    color: rgba(232, 234, 246, 0.5);
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
    flex-shrink: 0;
    transition: color var(--transition);
}

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

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

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

    .app-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .header-inner {
        grid-template-columns: auto 1fr auto;
    }

    .header-nav {
        display: none;
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--clr-header);
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 4px;
        overflow-y: auto;
        z-index: 999;
    }

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

    .header-nav a {
        width: 100%;
        padding: 12px 16px;
        font-size: 15px;
        border-radius: 10px;
    }

    .header-actions {
        gap: 8px;
    }

    .header-status {
        display: none;
    }

    .btn--lg {
        padding: 12px 24px;
        font-size: 14px;
    }

    .burger {
        display: flex;
    }

    .hero-slider {
        height: 420px;
    }

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

    .hero-title {
        font-size: 28px;
    }

    .hero-desc {
        font-size: 14px;
    }

    .tournaments-wrap {
        display: none;
    }

    .tournaments-mobile {
        display: block;
    }

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

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

    .author-avatar {
        margin: 0 auto;
    }

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

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

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .section {
        padding: 48px 0;
    }

    .advantages-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

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

    .promo-text {
        display: none;
    }

    .content-block {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 380px;
    }

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


    .slot-reels {
        gap: 6px;
    }

    .reel-wrap {
        width: 74px;
        height: 74px;
        font-size: 36px;
    }
}

.tournaments-mobile {
    display: none;
    position: relative;
}

.t-mobile-slider {
    overflow: hidden;
}

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

.t-mobile-track .tournament-card {
    min-width: calc(100vw - 60px);
    margin-right: 16px;
}

.t-mobile-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

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

.t-mobile-dot.active {
    background: var(--clr-primary);
    width: 20px;
    border-radius: 4px;
}

/* ======== MISC / WP COMPAT CLASSES ======== */
.wp-block-group {
    display: block;
}

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

.entry-content {
    display: block;
}

.aligncenter {
    text-align: center;
}

.alignleft {
    float: left;
    margin-right: 16px;
}

.wp-caption {
    display: inline-block;
}

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

.elementor-section {
    display: block;
}

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

.woocommerce-page {
    display: block;
}

.widget_area {
    display: block;
}

.yoast-breadcrumb {
    display: inline;
}

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

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

.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--clr-border), transparent);
    margin: 0;
}

.info-page-wrap {
    max-width: 860px;
    margin: 0 auto;
}

.info-page-wrap h1 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--clr-text);
    margin-bottom: 24px;
    line-height: 1.3;
}

.info-page-wrap h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--clr-text);
    margin: 32px 0 12px;
    border-left: 3px solid var(--clr-primary);
    padding-left: 14px;
}

.info-page-wrap p {
    color: var(--clr-text-muted);
    line-height: 1.7;
    margin-bottom: 14px;
}

.info-page-wrap ul, .info-page-wrap ol {
    color: var(--clr-text-muted);
    line-height: 1.7;
    margin: 0 0 18px 20px;
}

.info-page-wrap ul li, .info-page-wrap ol li {
    margin-bottom: 7px;
}

.info-page-wrap a {
    color: var(--clr-secondary);
    text-decoration: underline;
}

.info-page-wrap a:hover {
    color: var(--clr-primary);
}

.info-page-wrap table {
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0 24px;
    background: var(--clr-card);
    border-radius: var(--radius);
    overflow: hidden;
}

.info-page-wrap table th, .info-page-wrap table td {
    padding: 12px 16px;
    text-align: left;
    font-size: 14px;
    border: 1px solid var(--clr-border);
}

.info-page-wrap table th {
    background: var(--clr-header);
    color: var(--clr-text);
    font-weight: 700;
}

.info-page-wrap table td {
    color: var(--clr-text-muted);
}

.info-page-wrap table tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.02);
}

.info-page-wrap form {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 28px;
    margin: 20px 0;
}

.page-template-info .site-header {
    position: sticky;
}

.page-template-info .hero-area {
    display: none;
}

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

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

.container {
    width: 100%;
}

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

.hero-content,
.section,
.section-head,
.advantages-grid,
.adv-card,
.tournaments-wrap,
.tournaments-mobile,
.tournament-card,
.tournament-card-body,
.app-layout,
.app-table-wrap,
.app-dl-btns,
.app-visual,
.slot-machine,
.content-block,
.resp-grid,
.resp-card,
.reviews-grid,
.review-card,
.review-form-wrap,
.author-card,
.footer-grid,
.promo-widget,
.promo-widget-inner,
.info-page-wrap {
    min-width: 0;
    max-width: 100%;
}

.hero-title,
.hero-desc,
.section-title,
.section-sub,
.adv-title,
.adv-text,
.tournament-name,
.tournament-desc,
.prize-amount,
.dl-btn-small,
.dl-btn-big,
.content-block p,
.content-block li,
.content-block a,
.resp-info p,
.review-text,
.author-bio,
.footer-desc,
.footer-legal,
.promo-label,
.promo-text,
.info-page-wrap p,
.info-page-wrap li,
.info-page-wrap a {
    overflow-wrap: anywhere;
    word-break: break-word;
}

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

.content-block table,
.info-page-wrap table,
.app-table {
    max-width: 100%;
}

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

    .header-inner {
        gap: 14px;
    }

    .header-nav a {
        padding: 7px 9px;
        font-size: 12px;
    }

    .hero-content {
        max-width: 580px;
    }

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

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

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

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

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

    .site-header {
        position: sticky;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 99999;
    }

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

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

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

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

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

    .header-status {
        display: none;
    }

    .burger {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        padding: 7px;
        flex-shrink: 0;
    }

    .header-nav {
        display: none;
        position: fixed;
        top: 62px;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: calc(100dvh - 62px);
        padding: 16px 14px 30px;
        background: var(--clr-header);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 6px;
        overflow-y: auto;
        z-index: 99998;
    }

    .header-nav.open,
    .header-nav.active,
    .header-nav.is-open {
        display: flex;
    }

    .header-nav a {
        display: flex;
        width: 100%;
        min-height: 48px;
        padding: 12px 14px;
        font-size: 14px;
        border: 1px solid rgba(255, 255, 255, .08);
        background: rgba(255, 255, 255, .05);
        border-radius: 10px;
    }

    .hero-slider {
        width: 100%;
        height: auto;
        min-height: 440px;
    }

    .hero-slides {
        min-height: 440px;
    }

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

    .hero-slide-bg {
        background-position: center;
    }

    .hero-slide-overlay {
        background: linear-gradient(180deg, rgba(14, 17, 43, .22) 0%, rgba(14, 17, 43, .78) 52%, rgba(14, 17, 43, .98) 100%);
    }

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

    .hero-content {
        width: 100%;
        max-width: 100%;
        padding: 70px 38px 58px;
    }

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

    .hero-title {
        font-size: 30px;
        line-height: 1.14;
    }

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

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

    .hero-actions .btn {
        width: 100%;
        min-width: 0;
        white-space: normal;
        text-align: center;
    }

    .hero-arrow {
        width: 32px;
        height: 32px;
    }

    .hero-arrow--prev {
        left: 6px;
    }

    .hero-arrow--next {
        right: 6px;
    }

    .hero-dots {
        bottom: 14px;
    }

    .breadcrumbs {
        overflow: hidden;
    }

    .breadcrumb-list {
        flex-wrap: nowrap;
        width: 100%;
        overflow-x: auto;
        padding-bottom: 4px;
        scrollbar-width: none;
    }

    .breadcrumb-list::-webkit-scrollbar {
        display: none;
    }

    .breadcrumb-list li {
        flex: 0 0 auto;
        white-space: nowrap;
    }

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

    .section-head {
        width: 100%;
        margin-bottom: 28px;
    }

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

    .section-sub {
        max-width: 100%;
        margin-bottom: 0;
        font-size: 14px;
        line-height: 1.6;
    }

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

    .adv-card {
        width: 100%;
        padding: 20px 15px;
    }

    .adv-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 12px;
    }

    .tournaments-wrap {
        display: grid;
        grid-template-columns:1fr;
        gap: 16px;
    }

    .tournaments-mobile {
        display: none;
    }

    .tournament-card {
        width: 100%;
    }

    .tournament-card-img {
        height: 140px;
    }

    .tournament-card-body {
        width: 100%;
        padding: 17px 15px;
    }

    .tournament-prize {
        gap: 12px;
    }

    .tournament-timer {
        display: grid;
        grid-template-columns:repeat(4, minmax(0, 1fr));
        width: 100%;
        gap: 6px;
    }

    .timer-block {
        width: 100%;
        min-width: 0;
        padding: 8px 4px;
    }

    .timer-val {
        font-size: 20px;
    }

    .timer-lbl {
        font-size: 9px;
    }

    .tournament-card-body .btn {
        width: 100%;
    }

    .app-layout {
        grid-template-columns:1fr;
        width: 100%;
        gap: 28px;
    }

    .app-layout > * {
        width: 100%;
        min-width: 0;
    }

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

    .app-table {
        width: 100%;
        min-width: 560px;
    }

    .app-table th,
    .app-table td {
        padding: 10px 12px;
    }

    .app-dl-btns {
        width: 100%;
        margin-top: 18px;
    }

    .dl-btn {
        width: 100%;
        min-width: 0;
        padding: 13px 15px;
    }

    .dl-btn-text {
        min-width: 0;
    }

    .app-visual {
        width: 100%;
    }

    .app-mockup {
        width: min(200px, 70vw);
        height: 350px;
    }

    .slot-machine {
        width: 100%;
        max-width: 480px;
        padding: 26px 18px;
        border-radius: 18px;
    }

    .slot-reels {
        width: 100%;
        gap: 8px;
    }

    .reel-wrap {
        flex: 1 1 0;
        width: auto;
        max-width: 90px;
        min-width: 0;
        aspect-ratio: 1/1;
        height: auto;
        font-size: 38px;
    }

    .slot-machine .btn {
        max-width: 100%;
        white-space: normal;
    }

    .content-block {
        width: 100%;
        max-width: 100%;
        padding: 22px 17px;
        overflow: hidden;
    }

    .content-block h1 {
        font-size: 25px;
    }

    .content-block h2 {
        font-size: 21px;
    }

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

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

    .content-block ul,
    .content-block ol {
        padding-left: 19px;
    }

    .content-block blockquote {
        padding: 12px 14px;
        margin: 16px 0;
    }

    .content-block table {
        display: block;
        width: 100%;
        max-width: 100%;
        min-width: 560px;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .content-block table th,
    .content-block table td {
        padding: 9px 11px;
        font-size: 12px;
    }

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

    .resp-card {
        width: 100%;
        padding: 16px 14px;
    }

    .resp-info {
        min-width: 0;
    }

    .resp-links {
        display: grid;
        grid-template-columns:repeat(2, minmax(0, 1fr));
        width: 100%;
        gap: 8px;
    }

    .resp-link {
        width: 100%;
        min-width: 0;
        padding: 10px 11px;
    }

    .reviews-grid {
        grid-template-columns:1fr;
        gap: 14px;
        margin-bottom: 28px;
    }

    .review-card {
        width: 100%;
        padding: 18px 15px;
    }

    .review-header {
        width: 100%;
        min-width: 0;
    }

    .review-meta {
        min-width: 0;
    }

    .review-form-wrap {
        width: 100%;
        padding: 22px 16px;
    }

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

    .author-card {
        grid-template-columns:1fr;
        width: 100%;
        padding: 22px 17px;
        gap: 18px;
        text-align: center;
    }

    .author-avatar {
        width: 88px;
        height: 88px;
        margin: 0 auto;
    }

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

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

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

    .footer-badges,
    .footer-providers {
        gap: 8px;
    }

    .footer-badge,
    .provider-tag {
        white-space: normal;
    }

    .promo-widget {
        left: 8px;
        right: 8px;
        bottom: max(8px, env(safe-area-inset-bottom));
        width: auto;
        padding: 13px 12px;
        border: 1px solid var(--clr-primary);
        border-radius: 14px;
        max-height: calc(100dvh - 16px);
        overflow-y: auto;
    }

    .promo-widget-inner {
        display: grid;
        grid-template-columns:1fr;
        width: 100%;
        gap: 10px;
        justify-items: stretch;
    }

    .promo-label,
    .promo-text {
        white-space: normal;
        text-align: center;
    }

    .promo-code-wrap {
        width: 100%;
        justify-content: space-between;
    }

    .promo-code {
        min-width: 0;
        overflow-wrap: anywhere;
    }

    .promo-widget .btn {
        width: 100%;
    }

    .promo-close {
        position: absolute;
        top: 7px;
        right: 7px;
    }

    .info-page-wrap {
        width: 100%;
        max-width: 100%;
    }

    .info-page-wrap form {
        width: 100%;
        padding: 20px 16px;
    }

    .info-page-wrap table {
        display: block;
        width: 100%;
        max-width: 100%;
        min-width: 560px;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }
}

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

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

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

    .header-nav {
        top: 58px;
        height: calc(100dvh - 58px);
        padding-left: 10px;
        padding-right: 10px;
    }


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

    .hero-slider,
    .hero-slides,
    .hero-slide {
        min-height: 420px;
    }

    .hero-content {
        padding: 64px 34px 52px;
    }

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

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

    .section {
        padding: 36px 0;
    }

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

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

    .adv-card {
        display: grid;
        grid-template-columns:auto minmax(0, 1fr);
        column-gap: 13px;
        row-gap: 4px;
        align-items: center;
        text-align: left;
        padding: 16px 14px;
    }

    .adv-icon {
        grid-row: 1 / span 2;
        margin: 0;
    }

    .tournament-card-img {
        height: 125px;
    }

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

    .prize-amount {
        font-size: 18px;
    }

    .timer-val {
        font-size: 18px;
    }

    .app-table {
        min-width: 500px;
    }

    .app-mockup {
        width: 180px;
        height: 320px;
    }

    .slot-machine {
        padding: 22px 12px;
    }

    .slot-reels {
        gap: 5px;
    }

    .reel-wrap {
        max-width: 76px;
        font-size: 33px;
    }

    .content-block {
        padding: 18px 12px;
    }

    .content-block h1 {
        font-size: 23px;
    }

    .content-block h2 {
        font-size: 20px;
    }

    .content-block table,
    .info-page-wrap table {
        min-width: 500px;
    }

    .resp-links {
        grid-template-columns:1fr;
    }

    .review-card {
        padding: 16px 12px;
    }

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

    .review-avatar {
        width: 42px;
        height: 42px;
    }

    .author-card {
        padding: 18px 13px;
    }

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

    .footer-bottom {
        align-items: center;
        text-align: center;
    }

    .promo-widget {
        left: 6px;
        right: 6px;
        padding: 12px 10px;
    }
}

html,
body {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    display: block;
}

.wrapper,
#page-wrapper,
main,
header,
footer,
.hero-area,
.hero-slider,
.hero-slides,
.hero-slide,
.breadcrumbs,
.section,
.section--alt,
.section--dark {
    width: 100%;
    min-width: 0;
    max-width: 100%;
}

.wrapper,
#page-wrapper {
    margin: 0;
    padding: 0;
    overflow: visible;
}

.container {
    width: 100%;
    min-width: 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.hero-slide .container,
.breadcrumbs .container,
.section .container,
.site-header .container,
.site-footer .container {
    width: 100%;
}

.hero-content,
.section-head,
.advantages-grid,
.adv-card,
.tournaments-wrap,
.tournament-card,
.tournament-card-body,
.app-layout,
.app-table-wrap,
.slot-machine,
.content-block,
.resp-grid,
.resp-card,
.reviews-grid,
.review-card,
.review-form-wrap,
.author-card,
.footer-grid {
    width: 100%;
    min-width: 0;
    max-width: 100%;
}

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

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

    .wrapper,
    #page-wrapper {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
    }

    .container {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        margin: 0;
        padding-left: 14px;
        padding-right: 14px;
    }

    .site-header {
        width: 100%;
        left: 0;
        right: 0;
    }

    .header-inner {
        width: 100%;
        min-width: 0;
    }

    .hero-area,
    .hero-slider,
    .hero-slides,
    .hero-slide {
        width: 100%;
        min-width: 0;
        max-width: 100%;
    }

    .hero-slider {
        overflow: hidden;
    }

    .hero-slides {
        display: flex;
    }

    .hero-slide {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        padding-left: 36px;
        padding-right: 36px;
    }

    .breadcrumbs {
        width: 100%;
        overflow: visible;
    }

    .breadcrumb-list {
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
    }

    .section {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        overflow: visible;
    }

    .advantages-grid {
        display: grid;
        grid-template-columns:1fr;
        width: 100%;
        gap: 12px;
    }

    .adv-card {
        width: 100%;
        min-width: 0;
        max-width: 100%;
    }

    .tournaments-wrap {
        display: grid;
        grid-template-columns:1fr;
        width: 100%;
    }

    .tournament-card {
        width: 100%;
        min-width: 0;
        max-width: 100%;
    }

    .app-layout {
        display: grid;
        grid-template-columns:1fr;
        width: 100%;
    }

    .content-block {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        overflow: visible;
    }

    .content-block table {
        display: block;
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
    }

    .resp-grid,
    .reviews-grid,
    .footer-grid {
        display: grid;
        grid-template-columns:1fr;
        width: 100%;
    }

    .promo-widget {
        position: fixed;
        left: 8px;
        right: 8px;
        bottom: 8px;
        width: auto;
        max-width: none;
        min-width: 0;
        margin: 0;
        overflow: visible;
    }

    .promo-widget-inner {
        width: 100%;
        max-width: 100%;
    }
}

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

    .hero-content {
        padding-left: 34px;
        padding-right: 34px;
    }

    .adv-card,
    .tournament-card,
    .content-block,
    .resp-card,
    .review-card,
    .author-card {
        width: 100%;
        max-width: 100%;
    }
}