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

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

:root {
    --clr-bg: #101010;
    --clr-header: #1a1b1d;
    --clr-surface: #1e1f22;
    --clr-surface2: #252628;
    --clr-border: #2e2f33;
    --clr-green: #29a90a;
    --clr-green-hover: #22930a;
    --clr-black-btn: #000000;
    --clr-text: #e8e9eb;
    --clr-text-muted: #9a9ba0;
    --clr-text-link: #4db8ff;
    --clr-accent: #f0c040;
    --clr-jackpot1: #f0c040;
    --clr-jackpot2: #c0c0c0;
    --clr-jackpot3: #cd7f32;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --shadow: 0 4px 24px rgba(0, 0, 0, .45);
    --transition: .22s ease;
}

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

body {
    font-family: 'Roboto', sans-serif;
    background: var(--clr-bg);
    color: var(--clr-text);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

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

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

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

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

h1 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(1.3rem, 3vw, 1.9rem);
    margin-bottom: .8rem;
}

h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin-bottom: .6rem;
}

p {
    margin-bottom: 1rem;
}

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

li {
    margin-bottom: .4rem;
}

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

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

.box {
    border-radius: var(--radius-lg);
}

.section {
    padding: 48px 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: .92rem;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all var(--transition);
    white-space: nowrap;
    line-height: 1.2;
}

.btn--green {
    background: var(--clr-green);
    color: #fff;
    box-shadow: 0 2px 12px rgba(41, 169, 10, .35);
}

.btn--green:hover {
    background: var(--clr-green-hover);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 18px rgba(41, 169, 10, .5);
}

.btn--black {
    background: var(--clr-black-btn);
    color: #fff;
    border: 1px solid #333;
}

.btn--black:hover {
    background: #111;
    color: #fff;
    transform: translateY(-1px);
}

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

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

.btn--sm {
    padding: 7px 14px;
    font-size: .82rem;
}

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

.btn--pulse {
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(41, 169, 10, .5)
    }
    50% {
        box-shadow: 0 0 0 10px rgba(41, 169, 10, 0)
    }
}

.site-header {
    background: var(--clr-header);
    position: sticky;
    top: 0;
    z-index: 900;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .5);
    border-bottom: 1px solid var(--clr-border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    flex-wrap: nowrap;
}

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

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

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

.header-nav a:hover, .header-nav a.active {
    color: var(--clr-green);
    background: rgba(41, 169, 10, .1);
}

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

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

.lang-picker {
    position: relative;
}

.lang-picker__btn {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    color: var(--clr-text);
    border-radius: var(--radius-sm);
    padding: 7px 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: .85rem;
    font-family: inherit;
    transition: all var(--transition);
}

.lang-picker__btn:hover {
    border-color: var(--clr-green);
}

.lang-picker__dropdown {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    min-width: 130px;
    box-shadow: var(--shadow);
    z-index: 100;
    overflow: hidden;
    display: none;
}

.lang-picker__dropdown.open {
    display: block;
    animation: fadeDown .18s ease;
}

.lang-picker__dropdown a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    color: var(--clr-text);
    font-size: .88rem;
    transition: background var(--transition);
}

.lang-picker__dropdown a:hover {
    background: var(--clr-surface2);
    color: var(--clr-green);
}

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

.burger span {
    display: block;
    width: 24px;
    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);
}

.hero {
    background: var(--clr-header);
    position: relative;
    overflow: hidden;
    padding: 0;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background-image: url('/img/aviator-banner.png');
    background-size: cover;
    background-position: center;
    opacity: .18;
    z-index: 0;
}

.hero__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 24px;
    padding: 56px 16px;
    text-align: center;
}

.hero__title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    color: #fff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, .7);
}

.hero__title span {
    color: var(--clr-green);
}

.hero__sub {
    color: var(--clr-text-muted);
    font-size: 1.1rem;
    max-width: 560px;
}

.hero__ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero__demo-wrap {
    width: 100%;
    max-width: 820px;
}

.hero__iframe-box {
    background: #000;
    border-radius: var(--radius-lg);
    aspect-ratio: 16/9;
    border: 2px solid var(--clr-border);
    box-shadow: var(--shadow);
}

.hero__iframe-box iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.breadcrumbs {
    padding: 12px 0;
    background: var(--clr-surface);
    border-bottom: 1px solid var(--clr-border);
}

.breadcrumbs__list {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: .85rem;
}

.breadcrumbs__list li + li::before {
    content: '›';
    color: var(--clr-text-muted);
    margin-right: 4px;
}

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

.breadcrumbs__list a:hover {
    color: var(--clr-green);
}

.breadcrumbs__list li:last-child {
    color: var(--clr-text);
}

.toc {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    margin-bottom: 36px;
}

.toc__title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.toc__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc__grid li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    background: var(--clr-surface2);
    border-radius: var(--radius-sm);
    color: var(--clr-text);
    font-size: .9rem;
    font-weight: 500;
    border: 1px solid var(--clr-border);
    transition: all var(--transition);
}

.toc__grid li a:hover {
    border-color: var(--clr-green);
    color: var(--clr-green);
    background: rgba(41, 169, 10, .08);
}

.toc__grid li a svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--clr-green);
}

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

.demo-section__inner {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 24px;
    align-items: start;
}

.demo-iframe-wrap {
    background: #000;
    border-radius: var(--radius-lg);
    border: 2px solid var(--clr-border);
}

.demo-iframe-wrap iframe {
    width: 100%;
    aspect-ratio: 16/10;
    border: none;
    display: block;
}

.demo-cta {
    text-align: center;
    padding: 18px;
    background: var(--clr-surface);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.game-details {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.game-details__title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.game-details__table {
    width: 100%;
    border-collapse: collapse;
}

.game-details__table tr {
    border-bottom: 1px solid var(--clr-border);
}

.game-details__table tr:last-child {
    border-bottom: none;
}

.game-details__table td {
    padding: 9px 4px;
    font-size: .88rem;
    vertical-align: top;
}

.game-details__table td:first-child {
    color: var(--clr-text-muted);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 140px;
    padding-right: 12px;
}

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

.game-details__table td svg {
    width: 14px;
    height: 14px;
    color: var(--clr-green);
    flex-shrink: 0;
}

.jackpots {
    margin-bottom: 36px;
}

.jackpots__title {
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 28px;
}

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

.jackpot-card {
    background: var(--clr-surface);
    border: 2px solid;
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition);
}

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

.jackpot-card--gold {
    border-color: var(--clr-jackpot1);
    box-shadow: 0 0 30px rgba(240, 192, 64, .2);
}

.jackpot-card--silver {
    border-color: var(--clr-jackpot2);
    box-shadow: 0 0 30px rgba(192, 192, 192, .15);
}

.jackpot-card--bronze {
    border-color: var(--clr-jackpot3);
    box-shadow: 0 0 30px rgba(205, 127, 50, .15);
}

.jackpot-card__badge {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.jackpot-card--gold .jackpot-card__badge {
    background: rgba(240, 192, 64, .15);
    color: var(--clr-jackpot1);
}

.jackpot-card--silver .jackpot-card__badge {
    background: rgba(192, 192, 192, .15);
    color: var(--clr-jackpot2);
}

.jackpot-card--bronze .jackpot-card__badge {
    background: rgba(205, 127, 50, .15);
    color: var(--clr-jackpot3);
}

.jackpot-card__amount {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 4px;
}

.jackpot-card--gold .jackpot-card__amount {
    color: var(--clr-jackpot1);
}

.jackpot-card--silver .jackpot-card__amount {
    color: var(--clr-jackpot2);
}

.jackpot-card--bronze .jackpot-card__amount {
    color: var(--clr-jackpot3);
}

.jackpot-card__label {
    font-size: .78rem;
    color: var(--clr-text-muted);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.jackpot-card__players {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid var(--clr-border);
    padding-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.jackpot-card__players li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: .83rem;
}

.jackpot-card__players .player-nick {
    color: var(--clr-text-muted);
}

.jackpot-card__players .player-win {
    font-weight: 600;
    color: #fff;
}

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

.video-section__title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.video-wrap {
    background: #000;
    border-radius: var(--radius-lg);
    border: 2px solid var(--clr-border);
    aspect-ratio: 16/9;
}

.video-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.strategies {
    margin-bottom: 36px;
}

.strategies__title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.strategy-card {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
}

.strategy-card:hover {
    border-color: var(--clr-green);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(41, 169, 10, .15);
}

.strategy-card__img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.strategy-card__body {
    padding: 18px;
}

.strategy-card__name {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.strategy-card__desc {
    font-size: .87rem;
    color: var(--clr-text-muted);
    line-height: 1.55;
    margin-bottom: 14px;
}

.content-block {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 32px 36px;
    margin-bottom: 36px;
}

.content-block h2 {
    color: #fff;
    margin-top: 1.6rem;
    margin-bottom: .8rem;
    padding-bottom: .4rem;
    border-bottom: 1px solid var(--clr-border);
}

.content-block h3 {
    color: var(--clr-text);
    margin-top: 1.3rem;
    margin-bottom: .6rem;
}

.content-block h4 {
    color: var(--clr-text-muted);
    margin-top: 1rem;
    margin-bottom: .5rem;
}

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

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

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

.content-block ul, .content-block ol {
    color: var(--clr-text);
}

.content-block li {
    line-height: 1.7;
}

.content-block table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.2rem 0;
    font-size: .92rem;
}

.content-block table th {
    background: var(--clr-surface2);
    color: #fff;
    padding: 10px 14px;
    text-align: left;
    border: 1px solid var(--clr-border);
    font-weight: 600;
}

.content-block table td {
    padding: 9px 14px;
    border: 1px solid var(--clr-border);
    color: var(--clr-text);
}

.content-block table tr:nth-child(even) td {
    background: rgba(255, 255, 255, .03);
}

.content-block blockquote {
    border-left: 3px solid var(--clr-green);
    padding: 10px 18px;
    background: rgba(41, 169, 10, .06);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 1rem 0;
    color: var(--clr-text-muted);
    font-style: italic;
}

.content-block img {
    border-radius: var(--radius-md);
    margin: 1rem 0;
    max-width: 100%;
}

.author-box {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    margin-bottom: 36px;
}

.author-box__inner {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

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

.author-box__info {
    flex: 1;
}

.author-box__name {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.author-box__title {
    font-size: .88rem;
    color: var(--clr-green);
    font-weight: 600;
    margin-bottom: 6px;
}

.author-box__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: .82rem;
    color: var(--clr-text-muted);
    margin-bottom: 10px;
}

.author-box__meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

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

.author-box__bio {
    font-size: .9rem;
    color: var(--clr-text-muted);
    line-height: 1.65;
    margin-bottom: 12px;
}

.author-box__socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.author-box__socials a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: var(--radius-sm);
    font-size: .82rem;
    font-weight: 500;
    background: var(--clr-surface2);
    border: 1px solid var(--clr-border);
    color: var(--clr-text);
    transition: all var(--transition);
}

.author-box__socials a:hover {
    border-color: var(--clr-green);
    color: var(--clr-green);
}

.author-box__socials a svg {
    width: 14px;
    height: 14px;
}

.author-box__dates {
    font-size: .78rem;
    color: var(--clr-text-muted);
    margin-top: 12px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.similar-games {
    margin-bottom: 36px;
}

.similar-games__title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.similar-game-card {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    transition: all var(--transition);
}

.similar-game-card:hover {
    border-color: var(--clr-green);
    transform: translateY(-3px);
}

.similar-game-card__logo {
    width: 72px;
    height: 72px;
    object-fit: contain;
    border-radius: var(--radius-md);
    background: #000;
    padding: 6px;
}

.similar-game-card__name {
    font-weight: 700;
    font-size: 1rem;
}

.similar-game-card__desc {
    font-size: .84rem;
    color: var(--clr-text-muted);
    line-height: 1.55;
}

.similar-game-card__actions {
    display: flex;
    gap: 8px;
    margin-top: auto;
}

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

.section-block__title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--clr-border);
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-block__title svg {
    color: var(--clr-green);
}

.site-footer {
    background: var(--clr-header);
    border-top: 1px solid var(--clr-border);
    padding: 48px 0 24px;
    margin-top: auto;
}

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

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

.footer-desc {
    font-size: .85rem;
    color: var(--clr-text-muted);
    line-height: 1.65;
}

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

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

.footer-nav-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

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

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

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

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

.footer-logos-row__label {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--clr-text-muted);
    min-width: 90px;
}

.footer-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    font-size: .78rem;
    font-weight: 600;
    color: var(--clr-text-muted);
    transition: all var(--transition);
}

.footer-trust-badge:hover {
    border-color: var(--clr-green);
    color: var(--clr-text);
}

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

.footer-payment-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 12px;
    border-radius: var(--radius-sm);
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    font-size: .82rem;
    font-weight: 700;
    color: var(--clr-text);
}

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

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

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

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

.footer-legal {
    font-size: .78rem;
    color: var(--clr-text-muted);
    line-height: 1.7;
    margin-bottom: 12px;
}

.footer-copyright {
    font-size: .8rem;
    color: var(--clr-text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

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

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

.flag-au {
    font-size: 1.1rem;
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #c0392b;
    color: #fff;
    font-size: .72rem;
    font-weight: 900;
    flex-shrink: 0;
}

.casino-widget {
    position: fixed;
    bottom: 24px;
    right: 20px;
    z-index: 800;
}

.casino-widget__toggle {
    background: var(--clr-green);
    color: #fff;
    border: none;
    border-radius: var(--radius-lg) var(--radius-lg) var(--radius-sm) var(--radius-sm);
    padding: 10px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
    font-size: .88rem;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(41, 169, 10, .45);
    transition: all var(--transition);
    width: 100%;
    justify-content: space-between;
}

.casino-widget__toggle:hover {
    background: var(--clr-green-hover);
}

.casino-widget__toggle svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition);
}

.casino-widget__toggle.collapsed svg {
    transform: rotate(180deg);
}

.casino-widget__panel {
    background: var(--clr-header);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    padding: 16px;
    width: 280px;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, .5);
    transition: all var(--transition);
    overflow: hidden;
}

.casino-widget__panel.hidden {
    max-height: 0;
    padding: 0 16px;
    border-color: transparent;
}

.widget-casino-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background: var(--clr-surface);
    border-radius: var(--radius-md);
    margin-bottom: 8px;
    border: 1px solid var(--clr-border);
    transition: all var(--transition);
}

.widget-casino-card:last-child {
    margin-bottom: 0;
}

.widget-casino-card:hover {
    border-color: var(--clr-green);
}

.widget-casino-card__rank {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--clr-green);
    color: #fff;
    font-size: .72rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.widget-casino-card__name {
    flex: 1;
    font-size: .88rem;
    font-weight: 600;
    color: #fff;
}

.widget-casino-card__bonus {
    font-size: .72rem;
    color: var(--clr-green);
}

.faq {
    margin-bottom: 36px;
}

.faq__title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.faq__item {
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    margin-bottom: 8px;
    overflow: hidden;
}

.faq__question {
    width: 100%;
    background: var(--clr-surface);
    border: none;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
    font-family: inherit;
    font-size: .95rem;
    font-weight: 600;
    color: #fff;
    text-align: left;
    transition: background var(--transition);
}

.faq__question:hover {
    background: var(--clr-surface2);
}

.faq__question svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: transform var(--transition);
    color: var(--clr-green);
}

.faq__question.open svg {
    transform: rotate(45deg);
}

.faq__answer {
    background: var(--clr-surface);
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease, padding .3s ease;
}

.faq__answer.open {
    max-height: 400px;
    padding: 14px 20px;
}

.faq__answer p {
    font-size: .9rem;
    color: var(--clr-text-muted);
    line-height: 1.7;
    margin: 0;
}

.overflow-x {
    overflow-x: auto;
}

table.styled-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 480px;
}

table.styled-table th {
    background: var(--clr-surface);
    padding: 11px 14px;
    text-align: left;
    border: 1px solid var(--clr-border);
    font-size: .88rem;
    color: var(--clr-text-muted);
    font-weight: 600;
    white-space: nowrap;
}

table.styled-table td {
    padding: 10px 14px;
    border: 1px solid var(--clr-border);
    font-size: .9rem;
}

table.styled-table tr:nth-child(even) td {
    background: rgba(255, 255, 255, .02);
}

table.styled-table td:first-child {
    font-weight: 500;
}

.tag {
    display: inline-block;
    padding: 3px 9px;
    border-radius: 20px;
    font-size: .75rem;
    font-weight: 600;
    background: rgba(41, 169, 10, .12);
    color: var(--clr-green);
    border: 1px solid rgba(41, 169, 10, .3);
}

.badge-rtp {
    background: rgba(41, 169, 10, .1);
    color: var(--clr-green);
    border: 1px solid rgba(41, 169, 10, .25);
    padding: 2px 8px;
    border-radius: 20px;
    font-size: .78rem;
    font-weight: 700;
}

.info-page-content {
    max-width: 760px;
    margin: 0 auto;
    padding: 48px 0;
}

.info-page-content h1 {
    margin-bottom: 1.5rem;
}

.info-page-content h2 {
    margin-top: 2rem;
    margin-bottom: .8rem;
}

.info-page-content p {
    color: var(--clr-text-muted);
}

.info-page-content ul {
    color: var(--clr-text-muted);
}

.info-page-content a {
    color: var(--clr-green);
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-8px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

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

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

@keyframes countUp {
    from {
        opacity: 0;
        transform: scale(.85)
    }
    to {
        opacity: 1;
        transform: scale(1)
    }
}

.fade-in {
    animation: fadeIn .5s ease forwards;
}

.slide-up {
    animation: slideUp .5s ease forwards;
}

.count-animate {
    animation: countUp .6s ease forwards;
}

[data-x3f2] {
    display: none;
}

.wp-block-spacer {
    height: 1px;
}

.elementor-hidden {
    visibility: hidden;
}

.wpcf7-hidden {
    display: none;
}

.yoast-seo-meta-tag {
    display: none;
}

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

@media (max-width: 1024px) {
    .demo-section__inner {
        grid-template-columns: 1fr;
    }

    .game-details {
        margin-top: 0;
    }

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

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

    .jackpots__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }
}

@media (max-width: 768px) {
    .header-nav {
        display: none;
        position: fixed;
        top: 61px;
        left: 0;
        right: 0;
        background: var(--clr-header);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px;
        border-bottom: 1px solid var(--clr-border);
        z-index: 850;
        max-height: calc(100vh - 61px);
        overflow-y: auto;
    }

    .header-nav.open {
        display: flex;
        animation: fadeDown .2s ease;
    }

    .header-nav a {
        padding: 12px 16px;
        font-size: .95rem;
        border-bottom: 1px solid var(--clr-border);
        border-radius: 0;
    }

    .burger {
        display: flex;
    }

    .header-actions .btn--lg {
        padding: 9px 16px;
        font-size: .85rem;
    }

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

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

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

    .author-box__inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

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

    .casino-widget__panel {
        width: 260px;
    }

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

    .demo-section__inner {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 480px) {
    .strategies__grid, .similar-games__grid {
        grid-template-columns: 1fr;
    }

    .hero__ctas {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
    }

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

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

    .jackpot-card__amount {
        font-size: 1.6rem;
    }

    .casino-widget {
        bottom: 12px;
        right: 10px;
    }

    .casino-widget__panel {
        width: calc(100vw - 20px);
    }
}
