:root {
    --clr-primary: #372873;
    --clr-primary-light: #4a3a96;
    --clr-bg: #1e1450;
    --clr-bg2: #251a6a;
    --clr-btn-main: #ffce1c;
    --clr-btn-main-hover: #e6b800;
    --clr-btn-sec: #196d8f;
    --clr-btn-sec-hover: #125270;
    --clr-text: #e8e4ff;
    --clr-text-muted: #a89ecf;
    --clr-border: #3d3082;
    --clr-gold: #ffce1c;
    --clr-green: #1db954;
    --clr-red: #e34c4c;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 24px rgba(0, 0, 0, .45);
    --transition: .25s ease
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--clr-bg);
    color: var(--clr-text);
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.6
}

body {
    min-height: 100vh;
    overflow-x: hidden
}

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

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

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

h1, h2, h3, h4, h5, h6 {
    line-height: 1.25;
    color: #fff;
    font-weight: 700
}

h1 {
    font-size: clamp(1.6rem, 4vw, 2.6rem)
}

h2 {
    font-size: clamp(1.3rem, 3vw, 2rem);
    margin-bottom: 1.2rem
}

h3 {
    font-size: 1.15rem;
    margin-bottom: .6rem
}

p {
    margin-bottom: 1rem
}

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

li {
    margin-bottom: .35rem
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.2rem auto;
    font-size: .95rem
}

table th, table td {
    border: 1px solid var(--clr-border);
    padding: .65rem .9rem;
    text-align: left
}

table th {
    background: var(--clr-primary);
    color: #fff
}

table tr:nth-child(even) {
    background: rgba(55, 40, 115, .35)
}

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

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

.section-gap {
    padding: 4rem 0
}

.section-gap--sm {
    padding: 2.5rem 0
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .6rem 1.3rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: .92rem;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    white-space: nowrap;
    line-height: 1.3
}

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

.btn--main {
    background: var(--clr-btn-main);
    color: #1a1040
}

.btn--main:hover {
    background: var(--clr-btn-main-hover);
    color: #1a1040
}

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

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

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

.btn--ghost:hover {
    background: var(--clr-btn-main);
    color: #1a1040
}

.btn--lg {
    padding: .85rem 2rem;
    font-size: 1.05rem
}

.btn--sm {
    padding: .4rem .9rem;
    font-size: .82rem
}

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

.site-header {
    background: var(--clr-primary);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .5)
}

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

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

.header-nav {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    list-style: none;
    padding: 0;
    margin: 0
}

.header-nav a {
    color: var(--clr-text);
    font-weight: 500;
    font-size: .9rem;
    display: flex;
    align-items: center;
    gap: .35rem;
    padding: .3rem .2rem;
    border-bottom: 2px solid transparent;
    transition: color var(--transition), border-color var(--transition)
}

.header-nav a:hover, .header-nav a.active {
    color: var(--clr-btn-main);
    border-bottom-color: var(--clr-btn-main)
}

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

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

.online-count {
    font-size: .78rem;
    color: var(--clr-text-muted);
    white-space: nowrap
}

.online-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    background: var(--clr-green);
    border-radius: 50%;
    margin-right: 4px;
    animation: blink 1.4s infinite
}

@keyframes blink {
    0%, 100% {
        opacity: 1
    }
    50% {
        opacity: .3
    }
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: .4rem;
    z-index: 1100
}

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

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

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

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

.hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: url('/img/hero-bet.png') center/cover no-repeat
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 20, 80, .92) 40%, rgba(30, 20, 80, .55));
    z-index: 1
}

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

.hero-text h1 {
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .6)
}

.hero-text p {
    color: var(--clr-text);
    font-size: 1.05rem;
    margin-bottom: 1.6rem;
    max-width: 520px
}

.hero-btns {
    display: flex;
    gap: .8rem;
    flex-wrap: wrap
}

.bonus-tile {
    background: linear-gradient(135deg, var(--clr-primary-light), var(--clr-primary));
    border: 2px solid var(--clr-btn-main);
    border-radius: var(--radius);
    padding: 1.8rem 1.5rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .5);
    animation: floatUp 3.5s ease-in-out infinite
}

@keyframes floatUp {
    0%, 100% {
        transform: translateY(0)
    }
    50% {
        transform: translateY(-8px)
    }
}

.bonus-tile__tag {
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    color: var(--clr-btn-main);
    text-transform: uppercase;
    margin-bottom: .5rem
}

.bonus-tile__amount {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--clr-btn-main);
    line-height: 1
}

.bonus-tile__desc {
    font-size: .88rem;
    color: var(--clr-text);
    margin: 0.4rem 0 1.2rem
}

.bonus-tile__extra {
    font-size: .82rem;
    color: var(--clr-text-muted);
    margin-bottom: 1.2rem
}

.block-card {
    background: var(--clr-bg2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow)
}

.block-card + .block-card {
    margin-top: 1.5rem
}

.pros-cons {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 1.5rem
}

.pros-cons__col {
    background: var(--clr-bg2);
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 1px solid var(--clr-border)
}

.pros-cons__col--pros {
    border-top: 3px solid var(--clr-green)
}

.pros-cons__col--cons {
    border-top: 3px solid var(--clr-red)
}

.pros-cons__title {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: .04em
}

.pros-cons__title--pros {
    color: var(--clr-green)
}

.pros-cons__title--cons {
    color: var(--clr-red)
}

.pros-cons__list {
    list-style: none;
    padding: 0;
    margin: 0
}

.pros-cons__list li {
    display: flex;
    gap: .6rem;
    padding: .5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    font-size: .92rem;
    align-items: flex-start
}

.pros-cons__list li:last-child {
    border-bottom: none
}

.pros-cons__list li::before {
    content: '';
    display: block;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px
}

.pros-cons__col--pros .pros-cons__list li::before {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='10' fill='%231db954'/%3E%3Cpath d='M5 10l4 4 6-7' stroke='%23fff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") center/contain no-repeat
}

.pros-cons__col--cons .pros-cons__list li::before {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='10' fill='%23e34c4c'/%3E%3Cpath d='M6 6l8 8M14 6l-8 8' stroke='%23fff' stroke-width='2.2' stroke-linecap='round' fill='none'/%3E%3C/svg%3E") center/contain no-repeat
}

.games-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 1.2rem
}

.game-card {
    background: var(--clr-primary);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 1.4rem 1.2rem;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
    cursor: pointer
}

.game-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .5)
}

.game-card__logo {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-sm);
    margin: 0 auto .9rem;
    background: var(--clr-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden
}

.game-card__logo img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.game-card__name {
    font-weight: 700;
    font-size: .95rem;
    margin-bottom: .8rem;
    color: #fff
}

.game-card__provider {
    font-size: .78rem;
    color: var(--clr-text-muted);
    margin-bottom: 1rem
}

.demo-block {
    background: var(--clr-bg2);
    border-radius: var(--radius);
    padding: 2rem;
    border: 1px solid var(--clr-border)
}

.demo-selector {
    display: flex;
    gap: .8rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem
}

.demo-selector button {
    background: var(--clr-primary);
    border: 1px solid var(--clr-border);
    color: var(--clr-text);
    border-radius: var(--radius-sm);
    padding: .45rem 1rem;
    font-size: .88rem;
    cursor: pointer;
    transition: background var(--transition), border-color var(--transition)
}

.demo-selector button.active, .demo-selector button:hover {
    background: var(--clr-btn-main);
    color: #1a1040;
    border-color: var(--clr-btn-main);
    font-weight: 700
}

.demo-frame {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: var(--radius-sm);
    background: #000;
    margin-bottom: 1.2rem
}

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

.demo-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap
}

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

.review-content {
    background: var(--clr-bg2);
    border-radius: var(--radius);
    padding: 2rem 2rem 1.5rem;
    border: 1px solid var(--clr-border)
}

.review-content h2, .review-content h3, .review-content h4 {
    color: var(--clr-btn-main);
    margin: 1.4rem 0 .6rem
}

.review-content h2:first-child, .review-content h3:first-child {
    margin-top: 0
}

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

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

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

.review-content ul, .review-content ol {
    padding-left: 1.5rem;
    margin: .5rem 0 1rem
}

.review-content li {
    color: var(--clr-text);
    margin-bottom: .4rem;
    line-height: 1.6
}

.review-content table {
    margin: 1rem 0
}

.review-content table th {
    background: var(--clr-primary)
}

.review-content table td, .review-content table th {
    border-color: var(--clr-border)
}

.review-content strong, .review-content b {
    color: #fff
}

.review-content blockquote {
    border-left: 3px solid var(--clr-btn-main);
    padding: .6rem 1rem;
    margin: 1rem 0;
    background: rgba(55, 40, 115, .3);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--clr-text-muted)
}

.steps-grid {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
    counter-reset: steps
}

.step-card {
    background: var(--clr-primary);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 1.5rem 1.3rem;
    position: relative;
    counter-increment: steps;
    transition: transform var(--transition)
}

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

.step-card::before {
    content: counter(steps);
    position: absolute;
    top: -14px;
    left: 1.3rem;
    width: 30px;
    height: 30px;
    background: var(--clr-btn-main);
    color: #1a1040;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: .9rem;
    line-height: 30px;
    text-align: center
}

.step-card__icon {
    width: 44px;
    height: 44px;
    margin-bottom: .8rem;
    color: var(--clr-btn-main)
}

.step-card h3 {
    color: #fff;
    font-size: .95rem;
    margin-bottom: .4rem
}

.step-card p {
    font-size: .87rem;
    color: var(--clr-text-muted);
    margin: 0
}

.rg-block {
    background: linear-gradient(135deg, rgba(55, 40, 115, .8), rgba(25, 109, 143, .35));
    border: 1px solid var(--clr-btn-sec);
    border-radius: var(--radius);
    padding: 2rem;
    position: relative;
    overflow: hidden
}

.rg-block::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(25, 109, 143, .15)
}

.rg-block h2 {
    color: var(--clr-btn-main)
}

.rg-block p {
    color: var(--clr-text)
}

.rg-links {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
    margin-top: 1.2rem
}

.rg-links a {
    background: rgba(25, 109, 143, .25);
    border: 1px solid var(--clr-btn-sec);
    color: var(--clr-text);
    padding: .45rem 1rem;
    border-radius: var(--radius-sm);
    font-size: .87rem;
    transition: background var(--transition)
}

.rg-links a:hover {
    background: var(--clr-btn-sec);
    color: #fff
}

.rg-18 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 2px solid var(--clr-btn-sec);
    border-radius: 50%;
    font-weight: 900;
    font-size: 1rem;
    color: var(--clr-btn-sec);
    flex-shrink: 0
}

.reviews-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 1.2rem
}

.review-card {
    background: var(--clr-bg2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 1.4rem;
    transition: transform var(--transition)
}

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

.review-card__header {
    display: flex;
    align-items: center;
    gap: .8rem;
    margin-bottom: .9rem
}

.review-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--clr-btn-main)
}

.review-card__meta {
    flex: 1
}

.review-card__name {
    font-weight: 700;
    color: #fff;
    font-size: .9rem
}

.review-card__date {
    font-size: .75rem;
    color: var(--clr-text-muted)
}

.review-card__stars {
    color: var(--clr-btn-main);
    font-size: 1rem;
    margin-bottom: .6rem;
    display: flex;
    gap: 2px
}

.review-card__text {
    font-size: .88rem;
    color: var(--clr-text);
    line-height: 1.6
}

.review-form {
    background: var(--clr-bg2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 2rem;
    margin-top: 2rem
}

.form-group {
    margin-bottom: 1.2rem
}

.form-group label {
    display: block;
    margin-bottom: .4rem;
    font-size: .88rem;
    font-weight: 600;
    color: var(--clr-text)
}

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    background: rgba(255, 255, 255, .07);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: .65rem .9rem;
    color: #fff;
    font-family: inherit;
    font-size: .92rem;
    transition: border-color var(--transition)
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none;
    border-color: var(--clr-btn-sec);
    background: rgba(255, 255, 255, .1)
}

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

.form-success {
    background: rgba(29, 185, 84, .15);
    border: 1px solid var(--clr-green);
    color: var(--clr-green);
    border-radius: var(--radius-sm);
    padding: 1rem 1.2rem;
    display: none;
    font-weight: 600
}

.form-success.visible {
    display: block
}

.author-card {
    background: var(--clr-bg2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 2rem;
    display: grid;
    grid-template-columns:auto 1fr;
    gap: 1.5rem;
    align-items: start
}

.author-card__photo {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--clr-btn-main)
}

.author-card__name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .2rem
}

.author-card__role {
    font-size: .85rem;
    color: var(--clr-btn-sec);
    font-weight: 600;
    margin-bottom: .7rem
}

.author-card__bio {
    font-size: .9rem;
    color: var(--clr-text);
    line-height: 1.65
}

.author-card__links {
    display: flex;
    gap: .6rem;
    flex-wrap: wrap;
    margin-top: .9rem
}

.author-card__links a {
    background: rgba(25, 109, 143, .2);
    border: 1px solid var(--clr-btn-sec);
    color: var(--clr-text);
    padding: .35rem .8rem;
    border-radius: var(--radius-sm);
    font-size: .8rem;
    transition: background var(--transition)
}

.author-card__links a:hover {
    background: var(--clr-btn-sec);
    color: #fff
}

.author-card__dates {
    font-size: .78rem;
    color: var(--clr-text-muted);
    margin-top: .7rem;
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap
}

.site-footer {
    background: var(--clr-primary);
    padding: 3rem 0 1.5rem;
    border-top: 1px solid var(--clr-border)
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns:auto 1fr;
    gap: 2rem
}

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

.footer-flag {
    width: 28px;
    height: 20px;
    border-radius: 2px;
    overflow: hidden;
    display: inline-block
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem .9rem;
    margin-bottom: 1.2rem
}

.footer-nav a {
    color: var(--clr-text-muted);
    font-size: .85rem;
    transition: color var(--transition)
}

.footer-nav a:hover {
    color: var(--clr-btn-main)
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
    margin-bottom: 1.2rem;
    align-items: center
}

.footer-badge {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 6px;
    padding: .35rem .75rem;
    font-size: .78rem;
    color: var(--clr-text-muted);
    display: flex;
    align-items: center;
    gap: .4rem
}

.footer-payments {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    margin-bottom: 1.2rem;
    align-items: center
}

.footer-payment-icon {
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 6px;
    padding: .3rem .6rem;
    font-size: .8rem;
    color: #fff;
    font-weight: 600
}

.footer-legal {
    font-size: .78rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
    border-top: 1px solid var(--clr-border);
    padding-top: 1.2rem;
    margin-top: 1.5rem
}

.footer-legal a {
    color: var(--clr-text-muted)
}

.footer-legal a:hover {
    color: var(--clr-btn-main)
}

.footer-social {
    display: flex;
    gap: .6rem;
    margin-top: .8rem
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, .1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-text);
    transition: background var(--transition)
}

.footer-social a:hover {
    background: var(--clr-btn-sec)
}

.footer-copyright {
    font-size: .82rem;
    color: var(--clr-text-muted);
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--clr-border);
    text-align: center
}

.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: var(--clr-primary);
    border-top: 2px solid var(--clr-btn-main);
    padding: .7rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, .5)
}

.sticky-widget__text {
    font-size: .88rem;
    color: #fff;
    font-weight: 600
}

.sticky-widget__bonus {
    color: var(--clr-btn-main);
    font-weight: 900
}

.sticky-widget__close {
    background: none;
    border: none;
    color: var(--clr-text-muted);
    cursor: pointer;
    font-size: 1.2rem;
    padding: .2rem .4rem;
    line-height: 1;
    margin-left: auto
}

.sticky-widget a {
    text-decoration: none
}

body {
    padding-bottom: 64px
}

.section-title {
    text-align: center;
    margin-bottom: 2.5rem
}

.section-title h2 {
    position: relative;
    display: inline-block;
    padding-bottom: .7rem
}

.section-title h2::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 60px;
    height: 3px;
    background: var(--clr-btn-main);
    border-radius: 2px
}

.section-title p {
    color: var(--clr-text-muted);
    margin-top: .6rem;
    font-size: .95rem
}

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

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

.games-slider-wrap {
    position: relative;
    overflow: hidden
}

.games-slider {
    display: flex;
    gap: 1.2rem;
    transition: transform .35s ease
}

.games-slider-nav {
    display: none;
    justify-content: center;
    gap: .8rem;
    margin-top: 1rem
}

.slider-btn {
    background: var(--clr-primary);
    border: 1px solid var(--clr-border);
    color: #fff;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--transition)
}

.slider-btn:hover {
    background: var(--clr-btn-main);
    color: #1a1040
}

.info-page-content {
    background: var(--clr-bg2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 2rem;
    margin: 2rem 0
}

.info-page-content h1, .info-page-content h2, .info-page-content h3 {
    color: var(--clr-btn-main);
    margin-bottom: .6rem
}

.info-page-content p, .info-page-content li {
    color: var(--clr-text);
    line-height: 1.7
}

.wc-page-wrap {
    max-width: 860px;
    margin: 0 auto;
    padding: 2rem 1rem 4rem
}

.xb3q {
    display: none !important
}

.r7m2k {
    visibility: hidden;
    position: absolute;
    left: -9999px
}

.mq9j {
    height: 0;
    overflow: hidden
}

@media (max-width: 900px) {
    .pros-cons {
        grid-template-columns:1fr
    }

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

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

    .bonus-tile {
        max-width: 340px;
        margin: 0 auto
    }

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

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

    .author-card__photo {
        width: 80px;
        height: 80px
    }
}

@media (max-width: 768px) {
    .header-nav {
        display: none;
        position: fixed;
        inset: 0;
        top: 64px;
        background: var(--clr-primary);
        flex-direction: column;
        padding: 1.5rem;
        gap: 0;
        z-index: 999;
        overflow-y: auto
    }

    .header-nav.open {
        display: flex
    }

    .header-nav a {
        padding: .85rem .5rem;
        border-bottom: 1px solid var(--clr-border);
        font-size: 1rem;
        width: 100%
    }

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

    .burger {
        display: flex
    }

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

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

    .games-slider-nav {
        display: flex
    }

    .games-grid {
        display: none
    }

    .games-slider-wrap .games-slider {
        display: flex
    }

    .games-slider-wrap {
        display: block
    }
}

@media (max-width: 520px) {
    .reviews-grid {
        grid-template-columns:1fr
    }

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

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

    .hero {
        min-height: 440px
    }

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

    .sticky-widget {
        flex-wrap: wrap;
        gap: .5rem;
        padding: .6rem .8rem
    }
}

.wp-content-img {
    display: block;
    max-width: 100%
}

.wp-caption {
    text-align: center;
    font-size: .82rem;
    color: var(--clr-text-muted)
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto
}

.size-full {
    max-width: 100%
}

.elementor-hidden {
    display: none
}

.entry-meta-info {
    font-size: .78rem;
    color: var(--clr-text-muted)
}

.woocommerce-error, .woocommerce-info, .woocommerce-message {
    padding: .8rem 1rem;
    margin-bottom: 1rem;
    border-radius: 4px
}
