@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

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

html {
    scroll-behavior: smooth;
    background: #2d1401
}

body {
    font-family: 'Open Sans', sans-serif;
    background: #2d1401;
    color: #f0e6d3;
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden
}

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

a {
    color: #f5c842;
    text-decoration: none;
    transition: color .25s
}

a:hover {
    color: #fff
}

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

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

.box {
    border-radius: 12px
}

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

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

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

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

p {
    margin-bottom: .9rem;
    line-height: 1.7
}

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

li {
    margin-bottom: .4rem
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 8px;
    font-family: 'Open Sans', sans-serif;
    font-size: .95rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: transform .2s, box-shadow .2s, filter .2s;
    text-decoration: none;
    white-space: nowrap;
    line-height: 1.2
}

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

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

.btn--green {
    background: #448d17;
    color: #fff
}

.btn--blue {
    background: #062d4a;
    color: #f5c842
}

.btn--gold {
    background: linear-gradient(135deg, #c67200, #f5a500);
    color: #fff
}

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

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

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

.section-title h2 {
    color: #f5c842;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .5)
}

.section-title p {
    color: #c9b89a;
    max-width: 640px;
    margin: 0 auto
}

.xf8k2 {
    display: none
}

.q9r3m {
    visibility: hidden;
    position: absolute;
    width: 1px;
    height: 1px
}

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

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

.header-logo {
    flex-shrink: 0
}

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

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

.header-nav a {
    color: #fff;
    font-weight: 600;
    font-size: .88rem;
    padding: 6px 10px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background .2s
}

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

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

.header-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0
}

.btn--signin {
    background: #062d4a;
    color: #f5c842;
    padding: 8px 16px;
    font-size: .85rem
}

.btn--signup {
    background: #448d17;
    color: #fff;
    padding: 8px 16px;
    font-size: .85rem
}

.btn--bonus-h {
    background: linear-gradient(135deg, #f5c842, #e0a800);
    color: #1a0a00;
    padding: 8px 16px;
    font-size: .85rem
}

.winner-ticker {
    background: rgba(0, 0, 0, .25);
    border-radius: 6px;
    padding: 4px 12px;
    font-size: .78rem;
    color: #ffe0a0;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    overflow: hidden;
    flex-shrink: 0
}

.winner-ticker .tick-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #44dd22;
    animation: pulse-dot 1.5s infinite;
    flex-shrink: 0
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1)
    }
    50% {
        opacity: .5;
        transform: scale(.7)
    }
}

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

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform .3s, opacity .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)
}

.mobile-header-actions {
    display: none
}

/* === HERO === */
.hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #1a0800
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/img/banner-book.png');
    background-size: cover;
    background-position: center top;
    opacity: .45
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(45, 20, 1, .92) 40%, rgba(45, 20, 1, .4) 100%)
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 16px;
    width: 100%
}

.hero-text {
    flex: 1;
    max-width: 560px
}

.hero-text .badge {
    display: inline-block;
    background: #c67200;
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: .5px
}

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

.hero-text p {
    color: #d4bfa0;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    max-width: 480px
}

.hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.hero-stats {
    display: flex;
    gap: 20px;
    margin-top: 1.5rem;
    flex-wrap: wrap
}

.hero-stat {
    text-align: center
}

.hero-stat .val {
    font-size: 1.3rem;
    font-weight: 800;
    color: #f5c842;
    display: block
}

.hero-stat .lbl {
    font-size: .75rem;
    color: #a89070;
    text-transform: uppercase;
    letter-spacing: .5px
}

.hero-img {
    flex-shrink: 0;
    width: 280px
}

.hero-img img {
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, .6);
    animation: hero-float 4s ease-in-out infinite
}

@keyframes hero-float {
    0%, 100% {
        transform: translateY(0)
    }
    50% {
        transform: translateY(-12px)
    }
}

/* === SECTIONS === */
.section {
    padding: 64px 0
}

.section--dark {
    background: #1f0d00
}

.section--mid {
    background: #251100
}

/* === DEMO BLOCK === */
.demo-block {
    background: #1a0800;
    border: 2px solid #c67200;
    border-radius: 16px;
    margin: 0 auto;
    max-width: 900px
}

.demo-frame {
    width: 100%;
    height: 540px;
    border: none;
    display: block;
    background: #000
}

.demo-footer {
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #0f0500;
    gap: 12px;
    flex-wrap: wrap
}

.demo-info {
    color: #a89070;
    font-size: .85rem
}

.demo-info strong {
    color: #f5c842
}

/* === ADVANTAGES === */
.adv-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center
}

.adv-tile {
    background: #1f0d00;
    border: 1px solid #3d2010;
    border-radius: 14px;
    padding: 24px 20px;
    flex: 1 1 200px;
    max-width: 240px;
    text-align: center;
    transition: border-color .25s, transform .25s
}

.adv-tile:hover {
    border-color: #c67200;
    transform: translateY(-4px)
}

.adv-tile .adv-icon {
    width: 52px;
    height: 52px;
    background: rgba(198, 114, 0, .15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    color: #c67200
}

.adv-tile .adv-icon svg {
    width: 26px;
    height: 26px
}

.adv-tile h3 {
    font-size: 1rem;
    color: #f5c842;
    margin-bottom: 6px
}

.adv-tile p {
    font-size: .85rem;
    color: #b0957a;
    margin: 0
}

/* === MOBILE BLOCK === */
.mobile-block {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center
}

.phone-frame {
    position: relative;
    width: 220px;
    flex-shrink: 0
}

.phone-frame .phone-shell {
    width: 220px;
    height: 440px;
    background: #1a0800;
    border: 3px solid #c67200;
    border-radius: 32px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, .6)
}

.phone-frame .phone-shell::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: #c67200;
    border-radius: 3px;
    z-index: 2
}

.phone-frame .phone-screen {
    position: absolute;
    inset: 30px 6px 6px;
    background: #000;
    border-radius: 24px;
    overflow: hidden
}

.phone-frame .phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.mobile-info {
    flex: 1;
    min-width: 260px
}

.mobile-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.2rem;
    font-size: .9rem
}

.mobile-table th, .mobile-table td {
    border: 1px solid #3d2010;
    padding: 10px 14px;
    text-align: left
}

.mobile-table th {
    background: #c67200;
    color: #fff;
    font-weight: 700
}

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

.mobile-table td {
    color: #d4bfa0
}

.app-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #062d4a;
    color: #f5c842;
    border-radius: 10px;
    padding: 10px 16px;
    font-size: .85rem;
    font-weight: 700;
    border: 1px solid #0d4a7a;
    transition: background .2s, transform .2s
}

.app-btn:hover {
    background: #0a3e68;
    transform: translateY(-2px);
    color: #f5c842
}

.app-btn svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0
}

/* === REVIEWS === */
.reviews-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2.5rem
}

.review-card {
    background: #1f0d00;
    border: 1px solid #3d2010;
    border-radius: 14px;
    padding: 22px;
    flex: 1 1 280px;
    max-width: 360px
}

.review-card-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #c67200;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    color: #fff;
    flex-shrink: 0;
    overflow: hidden
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.review-name {
    font-weight: 700;
    color: #f5e6c8;
    font-size: .95rem
}

.review-stars {
    color: #f5c842;
    font-size: 1.1rem;
    letter-spacing: 2px
}

.review-text {
    color: #c9b89a;
    font-size: .88rem;
    line-height: 1.65
}

.review-date {
    font-size: .75rem;
    color: #7a6040;
    margin-top: 8px
}

.review-form {
    background: #1a0800;
    border: 2px solid #3d2010;
    border-radius: 16px;
    padding: 28px 24px;
    max-width: 560px;
    margin: 0 auto
}

.review-form h3 {
    color: #f5c842;
    margin-bottom: 1.2rem;
    font-size: 1.1rem
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 1rem
}

.form-group label {
    font-size: .85rem;
    color: #a89070;
    font-weight: 600
}

.form-group input, .form-group textarea {
    background: #0f0500;
    border: 1.5px solid #3d2010;
    border-radius: 8px;
    color: #f0e6d3;
    font-family: 'Open Sans', sans-serif;
    font-size: .9rem;
    padding: 10px 14px;
    outline: none;
    transition: border-color .2s
}

.form-group input:focus, .form-group textarea:focus {
    border-color: #c67200
}

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

.form-success {
    display: none;
    background: #1a3a0a;
    border: 1.5px solid #448d17;
    border-radius: 8px;
    padding: 14px 18px;
    color: #88dd44;
    font-size: .9rem;
    margin-top: 12px;
    align-items: center;
    gap: 8px
}

.form-success.show {
    display: flex
}

/* === STRATEGIES === */
.strat-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center
}

.strat-card {
    background: #1f0d00;
    border: 1px solid #3d2010;
    border-radius: 14px;
    overflow: hidden;
    flex: 1 1 280px;
    max-width: 360px;
    transition: border-color .25s, transform .25s;
    display: flex;
    flex-direction: column
}

.strat-card:hover {
    border-color: #c67200;
    transform: translateY(-4px)
}

.strat-card-img {
    height: 160px;
    overflow: hidden;
    background: #0f0500;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative
}

.strat-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s
}

.strat-card:hover .strat-card-img img {
    transform: scale(1.05)
}

.strat-card-body {
    padding: 18px;
    flex: 1;
    display: flex;
    flex-direction: column
}

.strat-card-body h3 {
    color: #f5c842;
    font-size: 1rem;
    margin-bottom: 6px
}

.strat-card-body p {
    font-size: .85rem;
    color: #b0957a;
    flex: 1;
    margin-bottom: 14px
}

.strat-num {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #c67200;
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    font-weight: 800
}

/* === CONTENT / REVIEW === */
.content-block {
    background: #1f0d00;
    border: 1.5px solid #3d2010;
    border-radius: 16px;
    padding: 32px 36px
}

.content-block .author-box {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #150800;
    border-radius: 10px;
    padding: 14px 18px;
    margin-bottom: 1.5rem;
    border: 1px solid #3d2010
}

.author-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 2px solid #c67200;
    overflow: hidden;
    flex-shrink: 0
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.author-info {
    flex: 1
}

.author-info .author-name {
    font-weight: 700;
    color: #f5e6c8;
    font-size: .95rem
}

.author-info .author-title {
    font-size: .78rem;
    color: #a89070
}

.author-info .author-links a {
    font-size: .78rem;
    color: #f5c842;
    margin-right: 8px
}

.content-area h2 {
    color: #f5c842;
    margin: 1.4rem 0 .7rem;
    font-size: 1.3rem
}

.content-area h3 {
    color: #e0c890;
    margin: 1.2rem 0 .6rem;
    font-size: 1.1rem
}

.content-area h4 {
    color: #c9b89a;
    margin: 1rem 0 .5rem
}

.content-area p {
    color: #d4bfa0;
    line-height: 1.75
}

.content-area a {
    color: #f5c842;
    text-decoration: underline
}

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

.content-area li {
    color: #d4bfa0;
    margin-bottom: .4rem
}

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

.content-area table th {
    background: #c67200;
    color: #fff;
    padding: 10px 14px;
    text-align: left;
    font-weight: 700
}

.content-area table td {
    border: 1px solid #3d2010;
    padding: 10px 14px;
    color: #d4bfa0;
    text-align: left
}

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

.content-area blockquote {
    border-left: 4px solid #c67200;
    padding: 12px 18px;
    background: rgba(198, 114, 0, .08);
    border-radius: 0 8px 8px 0;
    margin: 1rem 0;
    color: #c9b89a;
    font-style: italic
}

/* === FAQ === */
.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.faq-item {
    background: #1f0d00;
    border: 1px solid #3d2010;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color .25s
}

.faq-item.open {
    border-color: #c67200
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 22px;
    cursor: pointer;
    color: #f5e6c8;
    font-weight: 600;
    font-size: .95rem;
    user-select: none;
    gap: 10px
}

.faq-question:hover {
    color: #f5c842
}

.faq-icon {
    width: 22px;
    height: 22px;
    border: 2px solid #c67200;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform .3s;
    color: #c67200
}

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

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

.faq-answer-inner {
    padding: 0 22px 16px;
    color: #c9b89a;
    font-size: .9rem;
    line-height: 1.7
}

.faq-item.open .faq-answer {
    max-height: 400px
}

/* === STICKY WIDGET === */
.sticky-widget {
    position: fixed;
    bottom: 24px;
    right: 20px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: widget-in .6s ease forwards
}

@keyframes widget-in {
    from {
        opacity: 0;
        transform: translateX(80px)
    }
    to {
        opacity: 1;
        transform: translateX(0)
    }
}

.sticky-widget-inner {
    background: linear-gradient(145deg, #c67200, #8b4c00);
    border-radius: 16px;
    padding: 14px 16px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, .5);
    text-align: center;
    width: 160px
}

.sticky-widget-logo {
    width: 70px;
    height: auto;
    margin: 0 auto 8px;
    border-radius: 8px
}

.sticky-widget-bonus {
    font-size: .72rem;
    color: #ffe0a0;
    margin-bottom: 8px;
    font-weight: 600;
    line-height: 1.4
}

.sticky-widget-close {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 22px;
    height: 22px;
    background: #1a0800;
    border: 1.5px solid #c67200;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c67200;
    font-size: .8rem;
    line-height: 1
}

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

.sticky-widget-wrap {
    position: relative;
    display: inline-block
}

/* === FOOTER === */
.site-footer {
    background: #c67200;
    margin-top: auto;
    padding: 40px 0 20px
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px
}

.footer-top {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 28px;
    align-items: flex-start
}

.footer-logo-col {
    flex: 0 0 160px
}

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

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

.footer-nav-col h4 {
    color: #fff;
    font-size: .85rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: .5px
}

.footer-nav-col a {
    display: block;
    color: #ffe8c0;
    font-size: .85rem;
    margin-bottom: 6px;
    transition: color .2s
}

.footer-nav-col a:hover {
    color: #fff
}

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

.footer-trust-col h4 {
    color: #fff;
    font-size: .85rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: .5px
}

.trust-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center
}

.trust-badge {
    background: rgba(255, 255, 255, .15);
    border-radius: 8px;
    padding: 6px 10px;
    font-size: .72rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap
}

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

.footer-payments {
    margin-bottom: 20px
}

.footer-payments h4 {
    color: #fff;
    font-size: .85rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: .5px
}

.payment-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center
}

.payment-badge {
    background: rgba(255, 255, 255, .15);
    border-radius: 6px;
    padding: 6px 14px;
    font-size: .75rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: .5px
}

.footer-social {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap
}

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

.social-link:hover {
    background: rgba(255, 255, 255, .3);
    transform: scale(1.1);
    color: #fff
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .2);
    padding-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: space-between;
    align-items: flex-start
}

.footer-legal {
    flex: 1;
    font-size: .75rem;
    color: rgba(255, 255, 255, .8);
    line-height: 1.6;
    min-width: 240px
}

.footer-legal a {
    color: #ffe8c0
}

.footer-copyright {
    font-size: .75rem;
    color: rgba(255, 255, 255, .7);
    text-align: right
}

.footer-flags {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px
}

.au-flag {
    width: 28px;
    height: 19px;
    border-radius: 2px;
    overflow: hidden;
    display: inline-block;
    flex-shrink: 0
}

.provider-logo {
    height: 28px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: .8
}

.age-badge {
    background: rgba(0, 0, 0, .3);
    border-radius: 6px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    font-weight: 900;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .4)
}

/* === SCROLL TO TOP === */
.scroll-top {
    position: fixed;
    bottom: 24px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: #c67200;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .4);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s, transform .2s;
    z-index: 998;
    border: none;
    color: #fff
}

.scroll-top.visible {
    opacity: 1;
    pointer-events: all
}

.scroll-top:hover {
    transform: scale(1.1)
}

.scroll-top svg {
    width: 18px;
    height: 18px
}

/* === BREADCRUMB === */
.breadcrumb {
    padding: 12px 0;
    font-size: .82rem;
    color: #a89070;
    display: flex;
    align-items: center;
    gap: 6px
}

.breadcrumb a {
    color: #c67200
}

.breadcrumb span {
    color: #5a3a1a
}

/* === MOBILE OVERLAY NAV === */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    z-index: 998;
    opacity: 0;
    transition: opacity .3s
}

.nav-overlay.show {
    display: block;
    opacity: 1
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100%;
    background: #1a0800;
    z-index: 999;
    transition: right .35s ease;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    padding: 80px 20px 30px;
    gap: 4px
}

.mobile-nav.open {
    right: 0
}

.mobile-nav a {
    color: #f0e6d3;
    font-weight: 600;
    padding: 12px 14px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background .2s;
    border-bottom: 1px solid rgba(255, 255, 255, .05)
}

.mobile-nav a:hover {
    background: rgba(198, 114, 0, .25);
    color: #f5c842
}

.mobile-nav a svg {
    width: 18px;
    height: 18px;
    color: #c67200;
    flex-shrink: 0
}

.mobile-nav-buttons {
    display: flex;
    gap: 8px;
    margin-top: 16px;
    flex-direction: column
}

.mobile-nav-close {
    position: absolute;
    top: 18px;
    right: 18px;
    background: none;
    border: none;
    color: #f0e6d3;
    cursor: pointer;
    padding: 6px
}

.mobile-nav-close svg {
    width: 22px;
    height: 22px
}

/* Responsive */
@media (max-width: 1024px) {
    .header-nav a span {
        display: none
    }

    .header-nav a {
        padding: 6px 8px
    }
}

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

    .burger {
        display: flex
    }

    .winner-ticker {
        display: none
    }

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

    .hero-img {
        display: none
    }

    .hero-inner {
        flex-direction: column
    }

    .hero-text {
        max-width: 100%
    }

    .mobile-block {
        flex-direction: column
    }

    .demo-frame {
        height: 340px
    }

    .footer-top {
        flex-direction: column;
        gap: 20px
    }

    .footer-copyright {
        text-align: left
    }

    .content-block {
        padding: 20px 16px
    }

    .strat-card {
        flex: 1 1 260px
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 400px
    }

    .section {
        padding: 40px 0
    }

    .adv-tile {
        flex: 1 1 44%
    }

    .app-btns {
        flex-direction: column
    }

    .hero-stats {
        gap: 12px
    }

    .demo-frame {
        height: 280px
    }
}

/* WP-compat ghost elements */
.wp-block-group {
    display: block
}

.wp-block-image {
    max-width: 100%
}

.entry-content {
    display: block
}

.wp-site-blocks {
    display: block
}

.elementor-section {
    display: block
}

.elementor-widget-wrap {
    display: flex;
    flex-wrap: wrap
}

.yoast-seo-hidden {
    display: none
}
