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

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

:root {
    --clr-bg: #0b0f19;
    --clr-nav: #141821;
    --clr-red: #ff2e63;
    --clr-green: #22c55e;
    --clr-text: #e8eaf0;
    --clr-muted: #8b92a5;
    --clr-border: #1f2535;
    --clr-card: #151c2c;
    --clr-card2: #0f1521;
    --radius: 12px;
    --radius-sm: 8px;
    --sp: 8px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.65;
    font-size: 15px;
    overflow-x: hidden;
}

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

a:hover {
    opacity: .85;
}

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

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

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

.content-wrap {
    flex: 1;
}

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

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
    height: 68px;
}

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

.logo-link img {
    height: 36px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -.3px;
}

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

.header-nav a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--clr-muted);
    font-size: 13.5px;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    transition: color .2s, background .2s;
    white-space: nowrap;
}

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

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

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

.online-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--clr-muted);
    white-space: nowrap;
}

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

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1
    }
    50% {
        opacity: .4
    }
}

.lang-dropdown {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 6px 10px;
    color: var(--clr-text);
    font-size: 13px;
    cursor: pointer;
    transition: background .2s;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, .12);
}

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

.lang-list {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: var(--clr-nav);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    min-width: 130px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .5);
    display: none;
    z-index: 200;
}

.lang-list.open {
    display: block;
}

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

.lang-list a:hover {
    background: rgba(255, 255, 255, .07);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: inherit;
    font-weight: 600;
    font-size: 13.5px;
    padding: 9px 18px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform .15s, opacity .2s, box-shadow .2s;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-1px);
    opacity: .92;
}

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

.btn-demo {
    background: rgba(255, 46, 99, .15);
    color: var(--clr-red);
    border: 1px solid rgba(255, 46, 99, .35);
}

.btn-demo:hover {
    background: rgba(255, 46, 99, .25);
}

.btn-play {
    background: var(--clr-green);
    color: #0a1a0a;
    box-shadow: 0 4px 14px rgba(34, 197, 94, .35);
}

.btn-play:hover {
    box-shadow: 0 6px 20px rgba(34, 197, 94, .5);
}

.btn-red {
    background: var(--clr-red);
    color: #fff;
    box-shadow: 0 4px 14px rgba(255, 46, 99, .35);
}

.btn-red:hover {
    box-shadow: 0 6px 20px rgba(255, 46, 99, .5);
}

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

.btn-outline:hover {
    border-color: var(--clr-muted);
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--clr-border);
}

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

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

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

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

.mobile-menu {
    display: none;
    position: fixed;
    inset: 68px 0 0 0;
    background: var(--clr-nav);
    z-index: 999;
    flex-direction: column;
    padding: 20px 16px;
    border-top: 1px solid var(--clr-border);
    overflow-y: auto;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--clr-text);
    font-size: 15px;
    font-weight: 500;
    padding: 13px 12px;
    border-radius: var(--radius-sm);
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    transition: background .15s;
}

.mobile-menu a:hover {
    background: rgba(255, 255, 255, .06);
}

.mobile-menu a svg {
    width: 18px;
    height: 18px;
}

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

.mobile-menu-btns .btn {
    flex: 1;
    justify-content: center;
}

/* =====================  ===================== */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0b0f19 0%, #0f1829 50%, #0b1520 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('/aviatrix-banner.jpg') center/cover no-repeat;
    opacity: .3;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(11, 15, 25, .95) 40%, rgba(11, 15, 25, .5) 100%);
}

.hero-inner {
    position: relative;
    z-index: 1;
    padding: 80px 0;
    max-width: 620px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 46, 99, .15);
    border: 1px solid rgba(255, 46, 99, .3);
    color: var(--clr-red);
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 20px;
    letter-spacing: .5px;
    text-transform: uppercase;
}

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

.hero h1 {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 16px;
}

.hero h1 span {
    color: var(--clr-red);
}

.hero-desc {
    font-size: 16px;
    color: var(--clr-muted);
    margin-bottom: 32px;
    line-height: 1.7;
    max-width: 480px;
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.hero-btns .btn {
    font-size: 15px;
    padding: 12px 28px;
}

.hero-stats {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.hero-stat-val {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}

.hero-stat-lbl {
    font-size: 12px;
    color: var(--clr-muted);
}

/* ===================== SECTION COMMONS ===================== */
.section {
    padding: 64px 0;
}

.section-sm {
    padding: 40px 0;
}

.section-title {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.section-sub {
    font-size: 14px;
    color: var(--clr-muted);
    margin-bottom: 32px;
}

.section-head {
    margin-bottom: 32px;
}

/* ===================== CASINO CARDS ===================== */
.casino-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.casino-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 20px;
    display: grid;
    grid-template-columns: 40px 100px 1fr auto;
    gap: 16px;
    align-items: center;
    transition: border-color .2s, box-shadow .2s;
    position: relative;
    overflow: hidden;
}

.casino-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, .015) 0%, transparent 60%);
    pointer-events: none;
}

.casino-card:hover {
    border-color: rgba(255, 46, 99, .3);
    box-shadow: 0 4px 24px rgba(0, 0, 0, .3);
}

.casino-card.top-3 {
    border-color: rgba(255, 46, 99, .25);
    background: linear-gradient(135deg, #1a1628 0%, #151c2c 100%);
}

.casino-card.top-1 {
    border-color: rgba(255, 215, 0, .3);
}

.casino-card.top-1::after {
    content: 'ТОП #1';
    position: absolute;
    top: 12px;
    right: -26px;
    background: linear-gradient(90deg, #ffd700, #ffb300);
    color: #000;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 36px;
    transform: rotate(45deg);
    letter-spacing: .5px;
}

.casino-num {
    font-size: 22px;
    font-weight: 700;
    color: var(--clr-muted);
    text-align: center;
    line-height: 1;
}

.casino-card.top-1 .casino-num {
    color: #ffd700;
}

.casino-card.top-2 .casino-num {
    color: #c0c0c0;
}

.casino-card.top-3 .casino-num {
    color: #cd7f32;
}

.casino-logo-wrap {
    width: 100px;
    height: 60px;
    background: rgba(255, 255, 255, .06);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.casino-logo-wrap img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

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

.casino-name-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.casino-name {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.casino-flag {
    font-size: 16px;
}

.casino-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
}

.stars {
    color: #ffd700;
    font-size: 13px;
}

.rating-val {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}

.casino-bonus {
    display: inline-block;
    background: rgba(34, 197, 94, .12);
    border: 1px solid rgba(34, 197, 94, .3);
    color: var(--clr-green);
    font-size: 13px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.casino-pros {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}

.pro-tag {
    font-size: 11.5px;
    color: var(--clr-muted);
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--clr-border);
    padding: 3px 8px;
    border-radius: 4px;
}

.casino-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12px;
    color: var(--clr-muted);
}

.casino-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.casino-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
    flex-shrink: 0;
}

.casino-actions .btn {
    font-size: 13px;
    padding: 9px 16px;
}

.load-more-wrap {
    text-align: center;
    margin-top: 24px;
}

/* =====================  ===================== */
.winners-table-wrap {
    overflow-x: auto;
}

.winners-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 400px;
}

.winners-table th {
    background: var(--clr-card);
    color: var(--clr-muted);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--clr-border);
}

.winners-table td {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .04);
    font-size: 14px;
}

.winners-table tr:hover td {
    background: rgba(255, 255, 255, .025);
}

.winners-table .rank {
    font-weight: 700;
    color: var(--clr-muted);
}

.winners-table .rank.gold {
    color: #ffd700;
}

.winners-table .rank.silver {
    color: #c0c0c0;
}

.winners-table .rank.bronze {
    color: #cd7f32;
}

.winners-table .win-amount {
    font-weight: 700;
    color: var(--clr-green);
}

.winners-table .multiplier {
    color: var(--clr-red);
    font-weight: 600;
}

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

.app-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.app-table-wrap {
    overflow-x: auto;
}

.app-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
}

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

.app-table th {
    background: var(--clr-card2);
    color: var(--clr-muted);
    font-weight: 600;
    width: 40%;
}

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

.app-table tr:last-child th, .app-table tr:last-child td {
    border-bottom: none;
}

.app-download {
    margin-top: 24px;
}

.app-download h3 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 14px;
}

.download-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-download {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 12px 18px;
    color: var(--clr-text);
    font-size: 14px;
    font-weight: 500;
    transition: background .2s, border-color .2s;
    text-decoration: none;
}

.btn-download:hover {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .2);
    color: var(--clr-text);
}

.btn-download svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

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

.btn-download-text span:first-child {
    font-size: 11px;
    color: var(--clr-muted);
}

.btn-download-text span:last-child {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

.demo-block {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
}

.demo-header {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--clr-border);
    background: var(--clr-card2);
}

.demo-header h2 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.demo-iframe-wrap {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #000;
}

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

.demo-footer {
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--clr-card2);
    border-top: 1px solid var(--clr-border);
}

.demo-info {
    font-size: 13px;
    color: var(--clr-muted);
}

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

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

.faq-item.open {
    border-color: rgba(255, 46, 99, .25);
}

.faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    background: none;
    border: none;
    color: #fff;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: background .2s;
}

.faq-q:hover {
    background: rgba(255, 255, 255, .04);
}

.faq-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255, 46, 99, .15);
    color: var(--clr-red);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
    font-weight: 300;
    transition: transform .25s, background .2s;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--clr-red);
    color: #fff;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .25s ease;
}

.faq-a-inner {
    padding: 0 20px 18px;
    font-size: 14px;
    color: var(--clr-muted);
    line-height: 1.75;
}

.faq-item.open .faq-a {
    max-height: 500px;
}

.content-box {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 32px;
}

.content-box h2 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 24px 0 12px;
}

.content-box h2:first-child {
    margin-top: 0;
}

.content-box h3 {
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    margin: 20px 0 10px;
}

.content-box p {
    font-size: 15px;
    color: var(--clr-muted);
    line-height: 1.75;
    margin-bottom: 14px;
}

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

.content-box li {
    font-size: 15px;
    color: var(--clr-muted);
    line-height: 1.7;
    margin-bottom: 6px;
}

.content-box table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
}

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

.content-box table th {
    background: var(--clr-card2);
    color: var(--clr-muted);
    font-weight: 600;
}

.content-box table td {
    color: var(--clr-text);
}

.content-box a {
    color: var(--clr-red);
}

.content-box strong {
    color: var(--clr-text);
}

.author-box {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.author-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff2e63, #ff6b9e);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

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

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

.author-role {
    font-size: 12.5px;
    color: var(--clr-green);
    font-weight: 600;
    margin-bottom: 8px;
}

.author-bio {
    font-size: 13.5px;
    color: var(--clr-muted);
    line-height: 1.65;
}

.author-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--clr-red);
}

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

/* =====================  ===================== */
.site-footer {
    background: var(--clr-nav);
    border-top: 1px solid var(--clr-border);
    margin-top: auto;
}

.footer-main {
    padding: 48px 0 32px;
}

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

.footer-brand .logo-text {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    display: block;
}

.footer-brand p {
    font-size: 13px;
    color: var(--clr-muted);
    line-height: 1.65;
    margin-bottom: 16px;
}

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

.footer-col a, .footer-col span {
    display: block;
    font-size: 13.5px;
    color: var(--clr-muted);
    padding: 4px 0;
    transition: color .2s;
}

.footer-col a:hover {
    color: var(--clr-text);
}

.footer-logos {
    margin-top: 24px;
}

.footer-logos h5 {
    font-size: 11.5px;
    color: var(--clr-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 10px;
}

.logo-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.logo-badge {
    background: rgba(255, 255, 255, .07);
    border: 1px solid var(--clr-border);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 600;
    color: var(--clr-muted);
    letter-spacing: .3px;
}

.footer-bottom {
    border-top: 1px solid var(--clr-border);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-copy {
    font-size: 12.5px;
    color: var(--clr-muted);
}

.footer-legal {
    font-size: 12px;
    color: rgba(139, 146, 165, .6);
    max-width: 500px;
}


.tech-content {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 40px;
    margin: 40px 0;
}

.tech-content h1 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
}

.tech-content h2 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 28px 0 12px;
}

.tech-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--clr-text);
    margin: 20px 0 8px;
}

.tech-content p {
    font-size: 15px;
    color: var(--clr-muted);
    line-height: 1.75;
    margin-bottom: 14px;
}

.tech-content ul, .tech-content ol {
    padding-left: 22px;
    margin-bottom: 14px;
}

.tech-content li {
    font-size: 15px;
    color: var(--clr-muted);
    line-height: 1.7;
    margin-bottom: 6px;
}

.tech-content a {
    color: var(--clr-red);
}

/* =====================  ===================== */
.breadcrumb {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--clr-muted);
}

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

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

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

/* =====================  ===================== */
.badge-new {
    background: var(--clr-red);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 4px;
    letter-spacing: .4px;
}

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

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

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

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

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

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

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

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

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

.wp-block-group {
    display: block;
}

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

.wp-block-column {
    flex: 1;
    min-width: 240px;
}

.entry-content {
    display: block;
}

.has-large-font-size {
    font-size: 2em;
}

.has-medium-font-size {
    font-size: 1.25em;
}

.aligncenter {
    margin: 0 auto;
    display: block;
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

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

.sticky {
    position: relative;
}

.updated {
    display: none;
}

.bypostauthor {
    display: block;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.gallery-item {
    flex: 1;
    min-width: 200px;
}

#wpadminbar {
    display: none !important;
}

.pxr-a9f2 {
    display: none;
}

.lx72-bqk {
    visibility: hidden;
    height: 0;
    overflow: hidden;
}

#xm-9142-tracker {
    position: absolute;
    left: -9999px;
}

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

    .casino-card {
        grid-template-columns: 36px 90px 1fr;
    }

    .casino-actions {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: flex-end;
    }

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

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

    .burger {
        display: flex;
    }

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

    .online-badge {
        display: none;
    }

    .casino-card {
        grid-template-columns: 30px 80px 1fr;
        padding: 14px;
    }

    .casino-actions {
        grid-column: 1/-1;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .casino-meta {
        display: none;
    }

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

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

    .hero-btns .btn {
        flex: 1;
        justify-content: center;
    }

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

    .tech-content {
        padding: 24px 16px;
    }

    .content-box {
        padding: 20px 16px;
    }

    .app-block {
        padding: 20px 16px;
    }

    .demo-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .demo-footer {
        flex-direction: column;
        gap: 12px;
    }

    .widget-inner {
        flex-wrap: wrap;
    }
}

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

    .casino-logo-wrap {
        width: 80px;
        height: 48px;
    }

    .casino-num {
        display: none;
    }

    .hero {
        min-height: 420px;
    }

    .hero-inner {
        padding: 50px 0;
    }

    .hero-stats {
        gap: 16px;
    }
}

/* =====================  ===================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.fade-up {
    animation: fadeInUp .5s ease both;
}

.fade-in {
    animation: fadeIn .4s ease both;
}

.casino-card {
    animation: fadeInUp .4s ease both;
}

.casino-card:nth-child(1) {
    animation-delay: .05s;
}

.casino-card:nth-child(2) {
    animation-delay: .1s;
}

.casino-card:nth-child(3) {
    animation-delay: .15s;
}

.casino-card:nth-child(4) {
    animation-delay: .2s;
}

.casino-card:nth-child(5) {
    animation-delay: .25s;
}

.poklnnd {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    padding: 32px;
    background: rgba(15, 21, 33, 0.95);
    border: 1px solid rgba(255, 46, 99, 0.18);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.poklnnd section,
.poklnnd .content-box,
.poklnnd .tech-content {
    padding: 24px;
    margin-bottom: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
}

.poklnnd h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 24px;
    overflow-wrap: break-word;
}

.poklnnd h2 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    line-height: 1.3;
    color: #ff4f7b;
    margin: 32px 0 16px;
    overflow-wrap: break-word;
}

.poklnnd h3 {
    font-size: 1.2rem;
    line-height: 1.4;
    color: #ffffff;
    margin-bottom: 14px;
    overflow-wrap: break-word;
}

.poklnnd p,
.poklnnd li {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(232, 234, 240, 0.9);
    overflow-wrap: anywhere;
    word-break: break-word;
}

.poklnnd ul,
.poklnnd ol {
    margin: 18px 0;
    padding-left: 22px;
}

.poklnnd a {
    color: #ff5f87;
    text-decoration: underline;
    text-underline-offset: 3px;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.poklnnd a:hover {
    color: #ffffff;
}

.poklnnd img,
.poklnnd iframe,
.poklnnd video {
    max-width: 100%;
    border-radius: 16px;
}

.poklnnd table {
    width: 100%;
    min-width: 700px;
    border-collapse: collapse;
}

.poklnnd table th,
.poklnnd table td {
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
}

.poklnnd table th {
    background: rgba(255, 46, 99, 0.12);
    color: #ff5f87;
}

.poklnnd table td {
    color: rgba(232, 234, 240, 0.88);
}

.poklnnd pre,
.poklnnd code {
    max-width: 100%;
    overflow-x: auto;
}

.poklnnd blockquote {
    padding: 18px 20px;
    border-left: 4px solid #ff2e63;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    margin: 24px 0;
}

@media (max-width: 768px) {
    .poklnnd {
        margin: 20px 12px;
        padding: 18px;
        border-radius: 18px;
    }

    .poklnnd section,
    .poklnnd .content-box,
    .poklnnd .tech-content {
        padding: 18px;
        border-radius: 14px;
    }

    .poklnnd h1 {
        font-size: 1.8rem;
    }

    .poklnnd h2 {
        font-size: 1.35rem;
    }

    .poklnnd p,
    .poklnnd li {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .poklnnd table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .poklnnd table::-webkit-scrollbar {
        height: 6px;
    }

    .poklnnd table::-webkit-scrollbar-thumb {
        background: #ff2e63;
        border-radius: 20px;
    }

    .poklnnd iframe {
        min-height: 240px;
    }
}

@media (max-width: 480px) {
    .poklnnd {
        margin: 16px 8px;
        padding: 14px;
    }

    .poklnnd section,
    .poklnnd .content-box,
    .poklnnd .tech-content {
        padding: 14px;
    }

    .poklnnd h1 {
        font-size: 1.55rem;
    }

    .poklnnd h2 {
        font-size: 1.2rem;
    }

    .poklnnd p,
    .poklnnd li,
    .poklnnd a {
        font-size: 0.92rem;
    }
}