@import url('https://fonts.googleapis.com/css2?family=Lilita+One&family=Open+Sans:wght@400;600;700&display=swap');

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

:root {
    --c-header: #956925;
    --c-header-dark: #7a5520;
    --c-btn-gold: #db941b;
    --c-btn-green: #1f7209;
    --c-btn-green-hover: #278a0a;
    --c-bg: #605327;
    --c-bg-dark: #4a3e1c;
    --c-bg-card: #4e4220;
    --c-bg-card2: #3d3318;
    --c-text: #f5e9c8;
    --c-text-muted: #c9b47a;
    --c-accent: #f0a830;
    --c-gold: #f0c040;
    --c-border: #7a6030;
    --c-footer: #3a2d10;
    --radius: 10px;
    --shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
}

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

body {
    font-family: 'Open Sans', sans-serif;
    background: var(--c-bg);
    color: var(--c-text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Lilita One', sans-serif;
    line-height: 1.25;
    color: var(--c-gold);
}

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

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

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

p {
    margin-bottom: 0.9em;
}

a {
    color: var(--c-accent);
    text-decoration: none;
    transition: color 0.2s;
}

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

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

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

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: 8px;
    font-family: 'Lilita One', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.15s, filter 0.15s;
    letter-spacing: 0.03em;
    white-space: nowrap;
}

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

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

.btn--gold {
    background: linear-gradient(135deg, #e8a020, #db941b);
    color: #1a0e00;
}

.btn--green {
    background: linear-gradient(135deg, #2a9a0a, #1f7209);
    color: #fff;
}

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

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

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

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

.btn--block {
    width: 100%;
}

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

.xr9a2 {
    display: none;
}

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

.qm31z {
    opacity: 0;
    pointer-events: none;
    position: absolute;
}

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

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

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

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

.header-nav a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 7px 12px;
    border-radius: 6px;
    color: #fff8ec;
    font-size: 0.88rem;
    font-weight: 600;
    transition: background 0.2s, color 0.2s;
}

.header-nav a:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--c-gold);
}

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

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

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

.lang-picker {
    position: relative;
}

.lang-picker-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff8ec;
    padding: 6px 11px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: background 0.2s;
}

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

.lang-dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 6px);
    background: var(--c-header-dark);
    border: 1px solid var(--c-border);
    border-radius: 8px;
    min-width: 130px;
    overflow: hidden;
    z-index: 200;
    box-shadow: var(--shadow);
}

.lang-dropdown a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    color: #fff8ec;
    font-size: 0.85rem;
}

.lang-dropdown a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.lang-picker.open .lang-dropdown {
    display: block;
}

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

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff8ec;
    border-radius: 2px;
    transition: all 0.3s;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ======================== HERO ======================== */
.hero-section {
    position: relative;
    overflow: hidden;
    background: url('/images/banner.png') center/cover no-repeat;
    min-height: 420px;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(74, 47, 10, 0.85) 0%, rgba(40, 28, 8, 0.7) 100%);
}

.hero-inner {
    position: relative;
    z-index: 1;
    padding: 56px 0;
    text-align: center;
}

.hero-inner h1 {
    color: var(--c-gold);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
    margin-bottom: 0.4em;
}

.hero-inner p {
    color: var(--c-text);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 1.5em;
}

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

main {
    flex: 1;
}

.section {
    padding: 52px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 1.8em;
}

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

.section-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--c-accent);
    border-radius: 2px;
    margin: 8px auto 0;
}

/* game + details grid */
.game-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: start;
}

@media (max-width: 800px) {
    .game-layout {
        grid-template-columns: 1fr;
    }
}

.iframe-wrap {
    background: #1a0e00;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 2px solid var(--c-border);
}

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

.iframe-cta {
    display: flex;
    gap: 10px;
    padding: 14px;
    background: var(--c-bg-dark);
}

.game-details-card {
    background: var(--c-bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--c-border);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.game-details-card h3 {
    background: var(--c-header);
    color: var(--c-gold);
    padding: 14px 18px;
    font-size: 1.1rem;
}

.details-table {
    width: 100%;
    border-collapse: collapse;
}

.details-table tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.04);
}

.details-table td {
    padding: 9px 14px;
    font-size: 0.88rem;
    border-bottom: 1px solid var(--c-border);
}

.details-table td:first-child {
    color: var(--c-text-muted);
    width: 48%;
    display: flex;
    align-items: center;
    gap: 7px;
}

.details-table td:last-child {
    color: var(--c-text);
    font-weight: 600;
}

.details-table tr:last-child td {
    border-bottom: none;
}

.det-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    opacity: 0.85;
}

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

.adv-card {
    background: var(--c-bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--c-border);
    padding: 24px 20px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: var(--shadow);
}

.adv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.5);
}

.adv-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 14px;
}

.adv-card h4 {
    color: var(--c-accent);
    margin-bottom: 0.4em;
    font-size: 1rem;
}

.adv-card p {
    font-size: 0.85rem;
    color: var(--c-text-muted);
    margin: 0;
}

/* jackpots */
.jackpots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 22px;
}

.jackpot-card {
    background: var(--c-bg-card2);
    border-radius: var(--radius);
    border: 2px solid var(--c-border);
    padding: 22px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.jackpot-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top, rgba(240, 168, 48, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.jackpot-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--c-text-muted);
    margin-bottom: 4px;
}

.jackpot-name {
    font-family: 'Lilita One', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.jackpot-card.mini .jackpot-name {
    color: #8ecff0;
}

.jackpot-card.minor .jackpot-name {
    color: #90e890;
}

.jackpot-card.major .jackpot-name {
    color: #f0c840;
}

.jackpot-card.grand .jackpot-name {
    color: #f08030;
}

.jackpot-card.royal .jackpot-name {
    color: #e060e0;
}

.jackpot-amount {
    font-family: 'Lilita One', sans-serif;
    font-size: 2.2rem;
    color: var(--c-gold);
    text-shadow: 0 0 18px rgba(240, 168, 48, 0.6);
    margin-bottom: 14px;
    display: block;
}

.jackpot-players {
    list-style: none;
}

.jackpot-players li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.82rem;
}

.jackpot-players li:last-child {
    border-bottom: none;
}

.jp-rank {
    color: var(--c-accent);
    font-weight: 700;
    width: 24px;
}

.jp-nick {
    color: var(--c-text-muted);
}

.jp-win {
    color: var(--c-gold);
    font-weight: 700;
}

/* screenshots */
.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
}

.screenshot-item {
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow);
    border: 2px solid var(--c-border);
    transition: transform 0.2s, border-color 0.2s;
}

.screenshot-item:hover {
    transform: scale(1.03);
    border-color: var(--c-accent);
}

.screenshot-item img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

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

.slider-track {
    display: flex;
    transition: transform 0.35s ease;
}

.slider-track .screenshot-item {
    flex: 0 0 90%;
    scroll-snap-align: start;
    margin-right: 12px;
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 14px;
}

.slider-btn {
    background: var(--c-header);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.slider-btn:hover {
    background: var(--c-btn-gold);
}

@media (max-width: 640px) {
    .screenshots-grid {
        display: none;
    }

    .slider-wrap {
        display: block;
    }
}

/* review content */
.review-block {
    background: var(--c-bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--c-border);
    padding: 32px 28px;
    box-shadow: var(--shadow);
}

.review-block h2, .review-block h3 {
    color: var(--c-gold);
}

.review-block p {
    color: var(--c-text);
    line-height: 1.75;
    margin-bottom: 1em;
}

.review-block ul, .review-block ol {
    padding-left: 1.6em;
    margin-bottom: 1em;
    color: var(--c-text);
}

.review-block li {
    margin-bottom: 0.4em;
    line-height: 1.65;
}

.review-block a {
    color: var(--c-accent);
}

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

.review-block table th, .review-block table td {
    padding: 9px 14px;
    text-align: left;
    border: 1px solid var(--c-border);
    font-size: 0.9rem;
}

.review-block table th {
    background: var(--c-header);
    color: var(--c-gold);
}

.review-block table tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.04);
}

.review-block strong {
    color: var(--c-accent);
}

.review-block em {
    color: var(--c-text-muted);
}

.author-box {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: var(--c-bg-card2);
    border-radius: var(--radius);
    border: 1px solid var(--c-border);
    padding: 20px 22px;
    margin-bottom: 24px;
}

.author-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--c-accent);
    flex-shrink: 0;
}

.author-info h4 {
    color: var(--c-accent);
    margin-bottom: 4px;
    font-size: 1rem;
}

.author-info p {
    font-size: 0.83rem;
    color: var(--c-text-muted);
    margin: 0;
}

.author-info a {
    color: var(--c-btn-gold);
    font-size: 0.82rem;
}

/* FAQ */
.faq-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--c-bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--c-border);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 16px 20px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--c-text);
    font-size: 0.97rem;
    font-weight: 600;
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--c-accent);
}

.faq-chevron {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s;
    color: var(--c-accent);
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 20px 16px;
    color: var(--c-text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

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

/* similar games */
.similar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.sim-card {
    background: var(--c-bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--c-border);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.2s;
}

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

.sim-card img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.sim-card-body {
    padding: 14px;
}

.sim-card-body h4 {
    color: var(--c-accent);
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.sim-card-body p {
    font-size: 0.8rem;
    color: var(--c-text-muted);
    margin-bottom: 12px;
    line-height: 1.5;
}

.sim-card-btns {
    display: flex;
    gap: 8px;
}

.sim-card-btns .btn {
    flex: 1;
    font-size: 0.78rem;
    padding: 7px 8px;
}

/* ======================== FOOTER ======================== */
.site-footer {
    background: var(--c-footer);
    border-top: 2px solid var(--c-border);
    padding: 48px 0 24px;
    margin-top: auto;
}

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

.footer-brand img {
    height: 44px;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 0.82rem;
    color: var(--c-text-muted);
    line-height: 1.6;
}

.footer-nav h4, .footer-contact h4 {
    color: var(--c-accent);
    font-size: 0.9rem;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

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

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

.footer-nav a:hover {
    color: var(--c-accent);
}

.footer-contact p {
    font-size: 0.85rem;
    color: var(--c-text-muted);
    margin-bottom: 6px;
}

.footer-contact a {
    color: var(--c-accent);
}

.footer-logos-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.footer-logos-row img {
    height: 28px;
    opacity: 0.75;
    filter: brightness(0) invert(1);
    transition: opacity 0.2s;
}

.footer-logos-row img:hover {
    opacity: 1;
}

.trust-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}

.trust-badge {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 0.72rem;
    color: #fff8ec;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

.trust-badge svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff8ec;
    transition: background 0.2s, color 0.2s;
}

.social-link:hover {
    background: var(--c-accent);
    color: #1a0e00;
}

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

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

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

.footer-flag {
    font-size: 1.6rem;
}

.legal-text {
    font-size: 0.73rem;
    color: rgba(197, 172, 110, 0.55);
    line-height: 1.55;
    margin-top: 10px;
}

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

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

/* ======================== WIDGET ======================== */
.casino-widget {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 900;
    display: flex;
    flex-direction: column;
    width: 280px;
    transition: width 0.3s ease;
}

.casino-widget.collapsed {
    width: 40px;
}

.widget-toggle {
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 72px;
    background: var(--c-header);
    border-radius: 8px 0 0 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: -3px 0 14px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--c-border);
    border-right: none;
}

.widget-toggle svg {
    width: 20px;
    height: 20px;
    color: #fff8ec;
    transition: transform 0.3s;
}

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

.widget-inner {
    background: var(--c-bg-card2);
    border: 1px solid var(--c-border);
    border-radius: 10px 0 0 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: opacity 0.3s, transform 0.3s;
}

.casino-widget.collapsed .widget-inner {
    opacity: 0;
    pointer-events: none;
    transform: translateX(20px);
}

.widget-header {
    background: var(--c-header);
    padding: 10px 14px;
    font-family: 'Lilita One', sans-serif;
    font-size: 0.9rem;
    color: var(--c-gold);
}

.widget-list {
    list-style: none;
}

.widget-casino {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.w-rank {
    font-family: 'Lilita One', sans-serif;
    color: var(--c-accent);
    font-size: 1.2rem;
    width: 22px;
    flex-shrink: 0;
}

.w-info {
    flex: 1;
}

.w-info strong {
    display: block;
    color: var(--c-text);
    font-size: 0.82rem;
}

.w-info span {
    font-size: 0.72rem;
    color: var(--c-text-muted);
}

.w-btn {
    font-size: 0.72rem;
    padding: 5px 10px;
    border-radius: 6px;
}

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

/* ========================  ======================== */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

.lightbox.open {
    display: flex;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 88vh;
    border-radius: 8px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.8);
}

.lightbox-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

@media (max-width: 900px) {
    .burger {
        display: flex;
    }

    .header-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--c-header-dark);
        flex-direction: column;
        align-items: stretch;
        padding: 12px 16px;
        gap: 4px;
        border-bottom: 2px solid var(--c-border);
        z-index: 999;
    }

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

    .header-nav a {
        padding: 10px 14px;
    }

    .site-header {
        position: relative;
    }

    .header-inner {
        flex-wrap: nowrap;
    }
}

@media (max-width: 600px) {
    .header-cta .btn--lg {
        padding: 9px 14px;
        font-size: 0.85rem;
    }

    .section {
        padding: 36px 0;
    }

    .iframe-wrap iframe {
        height: 300px;
    }
}

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

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

.breadcrumb {
    font-size: 0.8rem;
    color: var(--c-text-muted);
    margin-bottom: 18px;
}

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

.breadcrumb span {
    color: var(--c-accent);
}

.rtp-bar {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    height: 6px;
    margin-top: 4px;
    overflow: hidden;
}

.rtp-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #1f7209, #74d614);
    border-radius: 4px;
    width: 96.5%;
}

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

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

.entry-content {
    display: block;
}

.elementor-section {
    display: block;
}

.info-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.info-page h1 {
    margin-bottom: 1em;
}

.info-page h2 {
    color: var(--c-accent);
    margin: 1.5em 0 0.5em;
    font-size: 1.2rem;
}

.info-page p, .info-page li {
    color: var(--c-text);
    line-height: 1.75;
    margin-bottom: 0.8em;
}

.info-page ul, .info-page ol {
    padding-left: 1.6em;
    margin-bottom: 1em;
}

.info-page a {
    color: var(--c-accent);
}

.table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
