:root {
    --color-bg: #553622;
    --color-header: #543622;
    --color-footer: #3a2315;
    --color-gold: #CB8E01;
    --color-gold-light: #e5a50a;
    --color-green: #4E854C;
    --color-green-light: #5a9e58;
    --color-text: #f5e6d0;
    --color-text-muted: #c8a882;
    --color-card: #3e2510;
    --color-card-alt: #4a2e18;
    --color-border: #7a5232;
    --color-border-gold: #CB8E01;
    --color-overlay: rgba(40, 20, 8, 0.85);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.45);
    --shadow-gold: 0 0 20px rgba(203, 142, 1, 0.3);
    --font-heading: 'Cinzel', serif;
    --font-sub: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --transition: 0.28s ease;
}

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

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

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.65;
    min-height: 100vh;
    overflow-x: hidden;
}

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

a:hover {
    color: var(--color-gold-light);
}

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

h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    color: var(--color-gold);
    line-height: 1.25;
    letter-spacing: 0.03em;
}

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

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

h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
}

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

li {
    margin-bottom: 0.35rem;
}

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

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

.box {
    background: var(--color-card);
    border-radius: var(--radius-md);
}

.section-title {
    font-family: var(--font-heading);
    color: var(--color-gold);
    text-align: center;
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    border-radius: 2px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.6rem 1.4rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    white-space: nowrap;
    text-decoration: none;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn--gold {
    background: var(--color-gold);
    color: #1a0e00;
}

.btn--gold:hover {
    background: var(--color-gold-light);
    box-shadow: 0 4px 18px rgba(203, 142, 1, 0.45);
    color: #1a0e00;
}

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

.btn--green:hover {
    background: var(--color-green-light);
    box-shadow: 0 4px 18px rgba(78, 133, 76, 0.45);
}

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

.btn--outline:hover {
    background: var(--color-gold);
    color: #1a0e00;
}

.btn--lg {
    padding: 0.85rem 2rem;
    font-size: 1rem;
    border-radius: var(--radius-md);
}

.btn--sm {
    padding: 0.4rem 0.9rem;
    font-size: 0.8rem;
}

.header-outer {
    background: var(--color-header);
    border-bottom: 2px solid var(--color-border-gold);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.6rem 0;
    flex-wrap: wrap;
}

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

.header-logo img {
    height: 48px;
    width: auto;
    border-radius: 6px;
}

.header-logo span {
    font-family: var(--font-heading);
    color: var(--color-gold);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 0.1rem;
}

.header-nav a {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.8rem;
    color: var(--color-text);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition);
}

.header-nav a:hover {
    background: rgba(203, 142, 1, 0.15);
    color: var(--color-gold);
}

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

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

.online-count {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    color: var(--color-text-muted);
    white-space: nowrap;
}

.online-count .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 6px #4ade80;
    animation: blink 1.6s infinite;
}

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

.lang-dropdown {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 0.4rem 0.7rem;
    color: var(--color-text);
    font-size: 0.82rem;
    cursor: pointer;
    transition: background var(--transition);
}

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

.lang-menu {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 6px);
    background: var(--color-card);
    border: 1px solid var(--color-border-gold);
    border-radius: var(--radius-sm);
    min-width: 140px;
    box-shadow: var(--shadow-card);
    z-index: 200;
    overflow: hidden;
}

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

.lang-menu a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.9rem;
    color: var(--color-text);
    font-size: 0.85rem;
    transition: background var(--transition);
}

.lang-menu a:hover {
    background: rgba(203, 142, 1, 0.18);
    color: var(--color-gold);
}

.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    flex-shrink: 0;
}

.burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-gold);
    border-radius: 2px;
    transition: all 0.3s;
}

.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);
}

.mob-nav {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.75rem 0 0.5rem;
    border-top: 1px solid var(--color-border);
}

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

.mob-nav a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.75rem;
    color: var(--color-text);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}

.mob-nav a:hover {
    background: rgba(203, 142, 1, 0.15);
    color: var(--color-gold);
}

.hero-section {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-bottom: 2.5rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/hero-banner.jpg');
    background-size: cover;
    background-position: center top;
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(40, 20, 5, 0.92) 40%, rgba(40, 20, 5, 0.55) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 620px;
    padding: 3rem 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(203, 142, 1, 0.2);
    border: 1px solid var(--color-gold);
    border-radius: 20px;
    padding: 0.3rem 0.9rem;
    font-size: 0.78rem;
    color: var(--color-gold);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}

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

.hero-desc {
    font-size: 1.05rem;
    color: rgba(245, 230, 208, 0.9);
    margin-bottom: 1.75rem;
    line-height: 1.7;
}

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

.section-block {
    margin: 0 20px 2.5rem;
    background: var(--color-card);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-card);
}

.casino-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.casino-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1rem;
    border-bottom: 1px solid var(--color-border);
    border-radius: 0;
    transition: background var(--transition);
    position: relative;
}

.casino-card:last-child {
    border-bottom: none;
}

.casino-card:hover {
    background: rgba(203, 142, 1, 0.06);
}

.casino-card--top1 {
    background: linear-gradient(90deg, rgba(203, 142, 1, 0.12) 0%, transparent 70%);
    border-left: 3px solid #f5c518;
}

.casino-card--top2 {
    background: linear-gradient(90deg, rgba(180, 180, 180, 0.1) 0%, transparent 70%);
    border-left: 3px solid #c0c0c0;
}

.casino-card--top3 {
    background: linear-gradient(90deg, rgba(180, 100, 30, 0.1) 0%, transparent 70%);
    border-left: 3px solid #cd7f32;
}

.casino-rank {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-text-muted);
    min-width: 36px;
    text-align: center;
    flex-shrink: 0;
}

.casino-card--top1 .casino-rank {
    color: #f5c518;
}

.casino-card--top2 .casino-rank {
    color: #c0c0c0;
}

.casino-card--top3 .casino-rank {
    color: #cd7f32;
}

.casino-logo-wrap {
    width: 72px;
    height: 56px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border);
}

.casino-logo-wrap .casino-logo-text {
    font-family: var(--font-heading);
    font-size: 0.6rem;
    color: var(--color-gold);
    text-align: center;
    line-height: 1.3;
    padding: 4px;
    font-weight: 700;
}

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

.casino-name-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.2rem;
}

.casino-name {
    font-family: var(--font-sub);
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

.country-flag {
    font-size: 1rem;
}

.casino-rating {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    background: rgba(203, 142, 1, 0.18);
    border: 1px solid var(--color-gold);
    border-radius: 4px;
    padding: 0.15rem 0.45rem;
    font-size: 0.8rem;
    color: var(--color-gold);
    font-weight: 700;
}

.casino-bonus {
    font-size: 0.85rem;
    color: var(--color-gold-light);
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.casino-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-bottom: 0.35rem;
}

.casino-meta span {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    padding: 0.15rem 0.45rem;
    border: 1px solid var(--color-border);
}

.casino-advantages {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    margin-bottom: 0.4rem;
}

.adv-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: rgba(78, 133, 76, 0.15);
    border: 1px solid rgba(78, 133, 76, 0.4);
    border-radius: 4px;
    padding: 0.15rem 0.5rem;
    font-size: 0.73rem;
    color: #7bc97a;
}

.casino-btns {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    flex-shrink: 0;
    min-width: 110px;
}

.ajax-load-btn {
    display: flex;
    margin: 1.5rem auto 0;
    min-width: 180px;
}

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

.info-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.info-table th, .info-table td {
    text-align: left;
    padding: 0.7rem 1rem;
    border: 1px solid var(--color-border);
    vertical-align: middle;
}

.info-table th {
    background: rgba(203, 142, 1, 0.15);
    color: var(--color-gold);
    font-family: var(--font-sub);
    font-weight: 600;
    width: 38%;
    white-space: nowrap;
}

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

.info-table tr:nth-child(even) td {
    background: rgba(0, 0, 0, 0.15);
}

.info-table tr:hover td {
    background: rgba(203, 142, 1, 0.07);
}

.winners-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.winner-row {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.75rem 0.5rem;
    border-bottom: 1px solid var(--color-border);
    transition: background var(--transition);
    border-radius: var(--radius-sm);
}

.winner-row:last-child {
    border-bottom: none;
}

.winner-row:hover {
    background: rgba(203, 142, 1, 0.07);
}

.winner-pos {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    min-width: 32px;
    text-align: center;
    color: var(--color-text-muted);
}

.winner-pos.gold {
    color: #f5c518;
}

.winner-pos.silver {
    color: #c0c0c0;
}

.winner-pos.bronze {
    color: #cd7f32;
}

.winner-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gold) 0%, #7a5200 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.winner-nick {
    flex: 1;
    font-weight: 600;
    font-size: 0.9rem;
}

.winner-amount {
    font-family: var(--font-heading);
    color: var(--color-gold);
    font-size: 1rem;
    font-weight: 700;
    white-space: nowrap;
}

.app-section-inner {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

.app-table-wrap {
    flex: 1;
    min-width: 260px;
    overflow-x: auto;
}

.app-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.app-table th, .app-table td {
    text-align: left;
    padding: 0.6rem 0.9rem;
    border: 1px solid var(--color-border);
}

.app-table th {
    background: rgba(203, 142, 1, 0.15);
    color: var(--color-gold);
    font-weight: 600;
    white-space: nowrap;
}

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

.app-table tr:nth-child(even) td {
    background: rgba(0, 0, 0, 0.12);
}

.app-download {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    min-width: 200px;
}

.app-download-title {
    font-family: var(--font-sub);
    color: var(--color-gold);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.75rem 1.1rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text);
    font-size: 0.88rem;
    font-weight: 600;
    transition: background var(--transition), border-color var(--transition);
    cursor: pointer;
    text-decoration: none;
}

.app-btn:hover {
    background: rgba(203, 142, 1, 0.14);
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.app-btn svg {
    flex-shrink: 0;
}

.demo-wrap {
    position: relative;
    border-radius: var(--radius-md);
    border: 2px solid var(--color-border-gold);
    background: #000;
    aspect-ratio: 16/9;
}

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

.demo-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition);
}

.faq-item.open {
    border-color: var(--color-gold);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.04);
    font-weight: 600;
    font-size: 0.95rem;
    transition: background var(--transition);
    user-select: none;
}

.faq-question:hover {
    background: rgba(203, 142, 1, 0.12);
}

.faq-item.open .faq-question {
    background: rgba(203, 142, 1, 0.14);
    color: var(--color-gold);
}

.faq-icon {
    font-size: 1.2rem;
    color: var(--color-gold);
    font-weight: 700;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 1rem 1.25rem;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    border-top: 1px solid var(--color-border);
}

.faq-item.open .faq-answer {
    display: block;
}

.author-block {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    border: 1px solid var(--color-border);
    flex-wrap: wrap;
}

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

.author-info {
    flex: 1;
    min-width: 200px;
}

.author-name {
    font-family: var(--font-sub);
    font-size: 1.15rem;
    color: var(--color-gold);
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.author-role {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}

.author-bio {
    font-size: 0.88rem;
    color: var(--color-text);
    line-height: 1.65;
    margin-bottom: 0.75rem;
}

.author-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.82rem;
    color: var(--color-gold);
    border: 1px solid rgba(203, 142, 1, 0.4);
    border-radius: 4px;
    padding: 0.3rem 0.7rem;
    transition: background var(--transition);
}

.author-link:hover {
    background: rgba(203, 142, 1, 0.14);
}

.footer-outer {
    background: var(--color-footer);
    border-top: 2px solid var(--color-border-gold);
    margin-top: auto;
    padding: 2.5rem 0 1rem;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col {
    flex: 1;
    min-width: 180px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.footer-logo img {
    height: 40px;
    border-radius: 6px;
}

.footer-logo-text {
    font-family: var(--font-heading);
    color: var(--color-gold);
    font-size: 1rem;
    font-weight: 700;
}

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

.footer-col-title {
    font-family: var(--font-sub);
    color: var(--color-gold);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.footer-col nav {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

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

.footer-col nav a:hover {
    color: var(--color-gold);
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 0.5rem;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 0.35rem 0.7rem;
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.footer-payments {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    margin-top: 0.5rem;
}

.payment-badge {
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid var(--color-border);
    border-radius: 5px;
    padding: 0.3rem 0.7rem;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding-top: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    justify-content: space-between;
}

.footer-copyright {
    font-size: 0.78rem;
    color: var(--color-text-muted);
}

.footer-legal {
    font-size: 0.72rem;
    color: var(--color-text-muted);
    max-width: 700px;
    line-height: 1.55;
}

.content-review {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--color-text);
}

.content-review h2 {
    color: var(--color-gold);
    margin: 1.5rem 0 0.75rem;
}

.content-review h3 {
    color: var(--color-gold-light);
    margin: 1.25rem 0 0.5rem;
}

.content-review p {
    margin-bottom: 1rem;
}

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

.content-review li {
    margin-bottom: 0.4rem;
}

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

.content-review table th {
    background: rgba(203, 142, 1, 0.18);
    color: var(--color-gold);
    padding: 0.6rem 0.9rem;
    border: 1px solid var(--color-border);
    text-align: left;
}

.content-review table td {
    padding: 0.55rem 0.9rem;
    border: 1px solid var(--color-border);
    color: var(--color-text);
}

.content-review a {
    color: var(--color-gold);
}

.pros-cons-grid {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.pros-block, .cons-block {
    flex: 1;
    min-width: 220px;
}

.pros-block h4 {
    color: #7bc97a;
    font-family: var(--font-sub);
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.cons-block h4 {
    color: #f87171;
    font-family: var(--font-sub);
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.pros-list li {
    color: var(--color-text);
    font-size: 0.9rem;
}

.pros-list li::before {
    content: "✓ ";
    color: #7bc97a;
    font-weight: 700;
}

.cons-list li {
    color: var(--color-text);
    font-size: 0.9rem;
}

.cons-list li::before {
    content: "✗ ";
    color: #f87171;
    font-weight: 700;
}

.pros-list, .cons-list {
    list-style: none;
    padding-left: 0;
}

.reviews-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.review-card {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 1.1rem 1.25rem;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.review-name {
    font-weight: 700;
    font-size: 0.95rem;
}

.review-stars {
    color: var(--color-gold);
    font-size: 0.9rem;
}

.review-date {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.review-text {
    font-size: 0.88rem;
    color: var(--color-text);
    line-height: 1.65;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    color: var(--color-text-muted);
    padding: 0.75rem 0;
    flex-wrap: wrap;
}

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

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

.breadcrumb .sep {
    color: var(--color-border);
}

.page-main {
    padding: 2rem 0 3rem;
}

.tech-content {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--color-text);
}

.tech-content h2 {
    color: var(--color-gold);
    margin: 1.5rem 0 0.75rem;
    font-size: 1.4rem;
}

.tech-content h3 {
    color: var(--color-gold-light);
    margin: 1.1rem 0 0.5rem;
    font-size: 1.1rem;
}

.tech-content p {
    margin-bottom: 1rem;
}

.tech-content ul, .tech-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.tech-content li {
    margin-bottom: 0.4rem;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

.shimmer {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0%, rgba(203, 142, 1, 0.08) 50%, rgba(255, 255, 255, 0.04) 100%);
    background-size: 200% 100%;
    animation: shimmerAnim 2s infinite;
}

@keyframes shimmerAnim {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.xk38a {
    display: none;
}

.wq92f {
    visibility: hidden;
    height: 0;
    overflow: hidden;
}

.vt11r {
    position: absolute;
    left: -9999px;
}

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

    .burger {
        display: flex;
    }

    .casino-card {
        flex-wrap: wrap;
    }

    .casino-btns {
        flex-direction: row;
        min-width: auto;
        width: 100%;
        margin-top: 0.5rem;
    }

    .casino-btns .btn {
        flex: 1;
    }
}

@media (max-width: 640px) {
    .section-block {
        margin: 0 8px 1.5rem;
        padding: 1.25rem;
    }

    .hero-section {
        min-height: 380px;
    }

    .hero-content {
        padding: 2rem 0;
    }

    .hero-btns {
        flex-direction: column;
    }

    .app-section-inner {
        flex-direction: column;
    }

    .footer-inner {
        gap: 1.5rem;
    }

    .sticky-widget {
        padding: 0.5rem 0.9rem;
    }

    .pros-cons-grid {
        flex-direction: column;
    }
}

@media (max-width: 420px) {
    .header-logo span {
        display: none;
    }

    .casino-meta {
        display: none;
    }
}

.opdjd {
    max-width: 980px;
    margin: 48px auto;
    padding: 40px 36px;
    background: linear-gradient(180deg, var(--color-card), var(--color-card-alt));
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.opdjd h1 {
    font-size: clamp(26px, 4vw, 40px);
    margin-bottom: 20px;
    color: var(--color-gold);
    line-height: 1.25;
}

.opdjd h2 {
    font-size: clamp(20px, 3vw, 26px);
    margin: 30px 0 14px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-gold);
}

.opdjd p {
    font-size: 15px;
    color: var(--color-text);
    line-height: 1.75;
    margin-bottom: 14px;
}

.opdjd ul,
.opdjd ol {
    margin: 14px 0;
    padding-left: 22px;
}

.opdjd li {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 6px;
    line-height: 1.65;
}

.opdjd a {
    color: var(--color-gold);
    font-weight: 600;
    word-break: break-all;
    overflow-wrap: anywhere;
    display: inline-block;
    max-width: 100%;
}

.opdjd strong {
    color: #fff;
}

@media (max-width: 768px) {
    .opdjd {
        margin: 24px 12px;
        padding: 22px 16px;
    }

    .opdjd h1 {
        font-size: 22px;
    }

    .opdjd h2 {
        font-size: 18px;
        margin-top: 24px;
    }

    .opdjd p,
    .opdjd li {
        font-size: 14px;
        line-height: 1.65;
    }
}

@media (max-width: 480px) {
    .opdjd {
        margin: 18px 10px;
        padding: 18px 14px;
    }

    .opdjd h1 {
        font-size: 20px;
    }

    .opdjd h2 {
        font-size: 17px;
    }
}