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

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

:root {
    --clr-nav: #1a2e3d;
    --clr-nav-dark: #12202b;
    --clr-nav-light: #243f55;
    --clr-btn-primary: #bf204a;
    --clr-btn-primary-h: #d9244f;
    --clr-btn-secondary: #f2ffff;
    --clr-accent: #4fc3f7;
    --clr-bg: #81b0f4;
    --clr-bg-light: #a6c8f7;
    --clr-bg-dark: #5d91d8;
    --clr-text-light: #f0f8ff;
    --clr-text-dark: #1a2e3d;
    --clr-text-muted: #b0c4d8;
    --clr-gold: #f4c430;
    --clr-green: #2ecc71;
    --clr-red: #bf204a;
    --clr-card: #1e3448;
    --clr-card-light: #264560;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.35);
    --transition: 0.28s ease;
    --font: 'Oswald', sans-serif;
}

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

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

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

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

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

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

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

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    white-space: nowrap;
    text-decoration: none;
}

.btn--primary {
    background: var(--clr-btn-primary);
    color: #fff;
    border-color: var(--clr-btn-primary);
}

.btn--primary:hover {
    background: var(--clr-btn-primary-h);
    border-color: var(--clr-btn-primary-h);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(191, 32, 74, 0.45);
}

.btn--secondary {
    background: transparent;
    color: var(--clr-btn-secondary);
    border-color: var(--clr-btn-secondary);
}

.btn--secondary:hover {
    background: var(--clr-btn-secondary);
    color: var(--clr-nav);
    transform: translateY(-2px);
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.08);
    color: var(--clr-text-light);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.16);
    color: var(--clr-text-light);
}

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

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

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

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

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

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 10px 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.header-logo {
    flex-shrink: 0;
}

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

.header-logo .logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--clr-accent);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.header-nav {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav-list a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 7px 13px;
    color: var(--clr-text-light);
    font-size: 0.88rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    text-decoration: none;
}

.nav-list a:hover, .nav-list a.active {
    background: var(--clr-nav-light);
    color: var(--clr-accent);
}

.nav-list svg {
    width: 16px;
    height: 16px;
    opacity: 0.8;
}

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

.jackpot-ticker {
    background: linear-gradient(135deg, #0d1f2d, #1e3448);
    border: 1px solid rgba(79, 195, 247, 0.3);
    border-radius: 20px;
    padding: 4px 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--clr-gold);
    font-weight: 600;
}

.jackpot-ticker .jt-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--clr-green);
    animation: blink 1.4s infinite;
}

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

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

.burger-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--clr-text-light);
    border-radius: 2px;
    transition: all var(--transition);
}

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

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

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

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(18, 32, 43, 0.98);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 80px 24px 24px;
}

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

.mobile-menu .nav-list {
    flex-direction: column;
    width: 100%;
}

.mobile-menu .nav-list a {
    font-size: 1.1rem;
    padding: 12px 20px;
}

.mobile-menu .mob-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-top: 16px;
}

.mobile-menu .mob-actions .btn {
    width: 100%;
    justify-content: center;
}

.mobile-close {
    position: absolute;
    top: 18px;
    right: 18px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--clr-text-light);
    font-size: 1.8rem;
    line-height: 1;
}

/* ===== HERO ===== */
.hero-section {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--clr-nav-dark);
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(18, 32, 43, 0.92) 40%, rgba(18, 32, 43, 0.4));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 40px;
    width: 100%;
}

.hero-text {
    max-width: 580px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(191, 32, 74, 0.2);
    border: 1px solid rgba(191, 32, 74, 0.5);
    border-radius: 20px;
    padding: 4px 14px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #f87aa0;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #f87aa0;
    animation: blink 1.4s infinite;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 14px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

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

.hero-desc {
    font-size: 1.05rem;
    color: var(--clr-text-muted);
    margin-bottom: 24px;
    line-height: 1.6;
    font-weight: 300;
}

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

.hero-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars svg {
    width: 20px;
    height: 20px;
    fill: var(--clr-gold);
}

.stars svg.half {
    fill: url(#halfStar);
}

.rating-text {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
}

.rating-score {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--clr-gold);
}

.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: rgba(26, 46, 61, 0.85);
    border: 1px solid rgba(79, 195, 247, 0.2);
    border-radius: var(--radius-md);
    padding: 24px;
    backdrop-filter: blur(8px);
    min-width: 200px;
}

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

.hero-stat .val {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--clr-accent);
    display: block;
}

.hero-stat .lbl {
    font-size: 0.78rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== SECTION TITLES ===== */
.section-wrap {
    padding: 48px 0;
}

.section-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--clr-text-light);
    margin-bottom: 8px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: var(--clr-btn-primary);
    border-radius: 2px;
    margin-top: 6px;
}

.section-subtitle {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
    margin-bottom: 32px;
    font-weight: 300;
}

/* ===== CARD BLOCKS ===== */
.card-block {
    background: var(--clr-card);
    border-radius: var(--radius-md);
    border: 1px solid rgba(79, 195, 247, 0.12);
    padding: 28px;
    box-shadow: var(--shadow);
    margin-bottom: 24px;
}

.card-block--rounded {
    border-radius: var(--radius-lg);
}

/* ===== DEMO BLOCK ===== */
.demo-wrap {
    background: var(--clr-card);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(79, 195, 247, 0.15);
    box-shadow: var(--shadow-lg);
}

.demo-header {
    background: var(--clr-nav);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.demo-header h2 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--clr-text-light);
}

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

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

.demo-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: linear-gradient(135deg, #0d1f2d, #1e3448);
    text-align: center;
    padding: 24px;
}

.demo-placeholder .play-icon {
    width: 72px;
    height: 72px;
    background: var(--clr-btn-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: 0 0 0 0 rgba(191, 32, 74, 0.4);
    animation: pulse 2s infinite;
}

.demo-placeholder .play-icon:hover {
    transform: scale(1.08);
}

.demo-placeholder .play-icon svg {
    width: 32px;
    height: 32px;
    fill: #fff;
    margin-left: 4px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(191, 32, 74, 0.4)
    }
    70% {
        box-shadow: 0 0 0 18px rgba(191, 32, 74, 0)
    }
    100% {
        box-shadow: 0 0 0 0 rgba(191, 32, 74, 0)
    }
}

.demo-footer {
    padding: 20px 24px;
    background: var(--clr-nav-dark);
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* ===== MOBILE BLOCK ===== */
.mobile-block-grid {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 40px;
    align-items: start;
}

.phone-frame {
    position: relative;
    width: 200px;
    margin: 0 auto;
}

.phone-frame .phone-svg-outer {
    width: 100%;
    background: #0d1a24;
    border-radius: 36px;
    padding: 10px;
    border: 3px solid #2a4d6a;
    box-shadow: 0 0 32px rgba(79, 195, 247, 0.15), inset 0 0 16px rgba(0, 0, 0, 0.4);
}

.phone-screen {
    border-radius: 28px;
    overflow: hidden;
    background: #000;
}

.phone-screen img {
    display: block;
    width: 100%;
    aspect-ratio: 9/19;
    object-fit: cover;
}

.phone-notch {
    width: 80px;
    height: 22px;
    background: #0d1a24;
    border-radius: 0 0 16px 16px;
    margin: 0 auto 4px;
    position: relative;
    z-index: 2;
}

.mobile-info .data-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.mobile-info .data-table th,
.mobile-info .data-table td {
    padding: 11px 14px;
    text-align: left;
    border: 1px solid rgba(79, 195, 247, 0.15);
    font-size: 0.9rem;
}

.mobile-info .data-table th {
    background: var(--clr-nav);
    color: var(--clr-accent);
    font-weight: 600;
    width: 40%;
}

.mobile-info .data-table td {
    background: var(--clr-card);
    color: var(--clr-text-light);
}

.mobile-info .data-table tr:nth-child(even) td {
    background: var(--clr-card-light);
}

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

.app-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--clr-nav-light);
    border: 1px solid rgba(79, 195, 247, 0.2);
    border-radius: var(--radius-sm);
    padding: 9px 16px;
    color: var(--clr-text-light);
    font-size: 0.85rem;
    font-weight: 500;
    transition: all var(--transition);
    text-decoration: none;
}

.app-btn:hover {
    background: var(--clr-nav);
    color: var(--clr-accent);
    border-color: var(--clr-accent);
    transform: translateY(-2px);
}

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

/* ===== PROS CONS ===== */
.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.pros-block, .cons-block {
    background: var(--clr-card);
    border-radius: var(--radius-md);
    padding: 24px;
    border: 1px solid rgba(79, 195, 247, 0.12);
}

.pros-block {
    border-top: 3px solid var(--clr-green);
}

.cons-block {
    border-top: 3px solid var(--clr-btn-primary);
}

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

.pc-title svg {
    width: 22px;
    height: 22px;
}

.pros-block .pc-title {
    color: var(--clr-green);
}

.cons-block .pc-title {
    color: var(--clr-btn-primary);
}

.pc-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pc-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--clr-text-light);
    line-height: 1.5;
}

.pc-list li::before {
    content: '';
    display: block;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    margin-top: 2px;
    background-size: 10px;
    background-position: center;
    background-repeat: no-repeat;
}

.pros-block .pc-list li::before {
    background-color: rgba(46, 204, 113, 0.15);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%232ecc71' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.cons-block .pc-list li::before {
    background-color: rgba(191, 32, 74, 0.15);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M3 3l6 6M9 3l-6 6' stroke='%23bf204a' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* ===== LEADERBOARD ===== */
.leaderboard-wrap {
    background: var(--clr-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(79, 195, 247, 0.12);
    box-shadow: var(--shadow);
}

.lb-header {
    background: var(--clr-nav);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.lb-header h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--clr-text-light);
}

.lb-live {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--clr-green);
}

.lb-live::before {
    content: '';
    width: 7px;
    height: 7px;
    background: var(--clr-green);
    border-radius: 50%;
    animation: blink 1.4s infinite;
}

.lb-table {
    width: 100%;
    border-collapse: collapse;
    overflow-x: auto;
    display: block;
}

.lb-table th, .lb-table td {
    padding: 11px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(79, 195, 247, 0.08);
    font-size: 0.88rem;
    white-space: nowrap;
}

.lb-table th {
    background: var(--clr-nav-dark);
    color: var(--clr-accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.78rem;
}

.lb-table td {
    background: var(--clr-card);
    color: var(--clr-text-light);
}

.lb-table tr:nth-child(even) td {
    background: var(--clr-card-light);
}

.lb-table tr:first-child td {
    background: rgba(244, 196, 48, 0.12);
}

.lb-table tr:nth-child(2) td {
    background: rgba(192, 192, 192, 0.08);
}

.lb-table tr:nth-child(3) td {
    background: rgba(205, 127, 50, 0.08);
}

.lb-rank {
    font-weight: 700;
    color: var(--clr-gold);
}

.lb-rank.top1 {
    color: var(--clr-gold);
    font-size: 1rem;
}

.lb-rank.top2 {
    color: #c0c0c0;
}

.lb-rank.top3 {
    color: #cd7f32;
}

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

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

/* ===== STRATEGIES ===== */
.strategies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.strategy-card {
    background: var(--clr-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(79, 195, 247, 0.12);
    transition: all var(--transition);
    box-shadow: var(--shadow);
}

.strategy-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(79, 195, 247, 0.3);
}

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

.strategy-card-body {
    padding: 18px;
}

.strategy-card-body h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--clr-text-light);
    margin-bottom: 8px;
}

.strategy-card-body p {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    margin-bottom: 14px;
    line-height: 1.5;
    font-weight: 300;
}

/* ===== CONTENT REVIEW BLOCK ===== */
.content-review {
    background: var(--clr-card);
    border-radius: var(--radius-lg);
    padding: 36px 40px;
    border: 1px solid rgba(79, 195, 247, 0.12);
    box-shadow: var(--shadow);
}

.content-review h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--clr-text-light);
    margin-bottom: 16px;
}

.content-review h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--clr-accent);
    margin: 20px 0 10px;
}

.content-review h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--clr-text-light);
    margin: 16px 0 8px;
}

.content-review p {
    color: var(--clr-text-muted);
    line-height: 1.7;
    margin-bottom: 14px;
    font-weight: 300;
    font-size: 0.95rem;
}

.content-review ul, .content-review ol {
    padding-left: 22px;
    color: var(--clr-text-muted);
    margin-bottom: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.content-review li {
    line-height: 1.6;
    font-size: 0.95rem;
    font-weight: 300;
}

.content-review a {
    color: var(--clr-accent);
    text-decoration: underline;
}

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

.content-review table th, .content-review table td {
    padding: 10px 14px;
    text-align: left;
    border: 1px solid rgba(79, 195, 247, 0.15);
    font-size: 0.9rem;
}

.content-review table th {
    background: var(--clr-nav);
    color: var(--clr-accent);
}

.content-review table td {
    background: var(--clr-card);
    color: var(--clr-text-light);
}

.content-review blockquote {
    border-left: 3px solid var(--clr-accent);
    padding-left: 16px;
    margin: 16px 0;
    color: var(--clr-text-muted);
    font-style: italic;
}

.content-review strong {
    color: var(--clr-text-light);
    font-weight: 600;
}

/* ===== FAQ ===== */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: var(--clr-card);
    border-radius: var(--radius-md);
    border: 1px solid rgba(79, 195, 247, 0.12);
    overflow: hidden;
    transition: border-color var(--transition);
}

.faq-item:hover {
    border-color: rgba(79, 195, 247, 0.3);
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    text-align: left;
    color: var(--clr-text-light);
    font-family: var(--font);
    font-size: 0.98rem;
    font-weight: 600;
    transition: color var(--transition);
}

.faq-q:hover {
    color: var(--clr-accent);
}

.faq-q svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: transform var(--transition);
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

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

.faq-item.open .faq-q {
    color: var(--clr-accent);
}

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

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

.faq-a-inner {
    padding: 0 22px 18px;
    color: var(--clr-text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    font-weight: 300;
}

.faq-a-inner strong {
    color: var(--clr-text-light);
    font-weight: 500;
}

/* ===== AUTHOR ===== */
.author-block {
    background: var(--clr-card);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid rgba(79, 195, 247, 0.12);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 28px;
    align-items: start;
}

.author-photo {
    position: relative;
    flex-shrink: 0;
}

.author-photo img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--clr-accent);
}

.author-verified {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 24px;
    height: 24px;
    background: var(--clr-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--clr-card);
}

.author-verified svg {
    width: 13px;
    height: 13px;
    fill: none;
    stroke: #fff;
    stroke-width: 2.5;
}

.author-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--clr-text-light);
    margin-bottom: 4px;
}

.author-title {
    font-size: 0.88rem;
    color: var(--clr-accent);
    margin-bottom: 10px;
}

.author-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 14px;
}

.author-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.82rem;
    color: var(--clr-text-muted);
}

.author-meta-item svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.author-bio {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
    font-weight: 300;
}

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

.author-social {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--clr-nav-light);
    border: 1px solid rgba(79, 195, 247, 0.15);
    border-radius: var(--radius-sm);
    padding: 7px 13px;
    color: var(--clr-text-light);
    font-size: 0.82rem;
    text-decoration: none;
    transition: all var(--transition);
}

.author-social:hover {
    background: var(--clr-nav);
    color: var(--clr-accent);
    border-color: var(--clr-accent);
}

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

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

/* ===== FOOTER ===== */
.site-footer {
    background: var(--clr-nav-dark);
    border-top: 1px solid rgba(79, 195, 247, 0.1);
    margin-top: 40px;
}

.footer-top {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 24px 32px;
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 48px;
}

.footer-brand .footer-logo {
    margin-bottom: 14px;
}

.footer-brand .footer-logo img {
    height: 42px;
}

.footer-brand p {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
    font-weight: 300;
}

.footer-brand .footer-email {
    color: var(--clr-accent);
    margin-top: 8px;
    font-size: 0.88rem;
}

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

.footer-col h5 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--clr-text-muted);
    margin-bottom: 14px;
}

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

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

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

.footer-bottom {
    border-top: 1px solid rgba(79, 195, 247, 0.08);
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px;
}

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

.footer-logos-row img {
    height: 30px;
    width: auto;
    filter: brightness(0.7) grayscale(0.3);
    transition: filter var(--transition);
}

.footer-logos-row img:hover {
    filter: brightness(1) grayscale(0);
}

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

.trust-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    padding: 5px 12px;
    font-size: 0.78rem;
    color: var(--clr-text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

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

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

.footer-social {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.footer-social:hover {
    background: var(--clr-btn-primary);
    border-color: var(--clr-btn-primary);
}

.footer-social svg {
    width: 17px;
    height: 17px;
    fill: var(--clr-text-muted);
}

.footer-social:hover svg {
    fill: #fff;
}

.footer-legal {
    font-size: 0.78rem;
    color: var(--clr-text-muted);
    line-height: 1.7;
    font-weight: 300;
    border-top: 1px solid rgba(79, 195, 247, 0.06);
    padding-top: 16px;
}

.footer-legal a {
    color: var(--clr-text-muted);
    text-decoration: underline;
}

.footer-copyright {
    margin-top: 10px;
    font-size: 0.78rem;
    color: rgba(176, 196, 216, 0.5);
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--clr-btn-primary);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.au-flag {
    width: 28px;
    height: 20px;
    border-radius: 3px;
    overflow: hidden;
    flex-shrink: 0;
}

/* ===== STICKY WIDGET ===== */
.bonus-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #0f1e28 0%, #1a2e3d 50%, #0f1e28 100%);
    border-top: 2px solid var(--clr-btn-primary);
    z-index: 900;
    padding: 10px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
}

.bonus-widget-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--clr-text-light);
}

.bonus-widget-text span {
    color: var(--clr-gold);
    font-weight: 700;
}

.bonus-widget-close {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--clr-text-muted);
    font-size: 1.2rem;
    line-height: 1;
    padding: 4px;
    transition: color var(--transition);
}

.bonus-widget-close:hover {
    color: var(--clr-text-light);
}

/* ===== INFO PAGES ===== */
.info-page-content {
    background: var(--clr-card);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin: 32px 0;
    border: 1px solid rgba(79, 195, 247, 0.12);
}

.info-page-content h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--clr-text-light);
    margin-bottom: 24px;
}

.info-page-content h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--clr-accent);
    margin: 24px 0 12px;
}

.info-page-content p {
    color: var(--clr-text-muted);
    line-height: 1.7;
    margin-bottom: 14px;
    font-weight: 300;
    font-size: 0.95rem;
}

.info-page-content ul {
    padding-left: 22px;
    color: var(--clr-text-muted);
    margin-bottom: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.info-page-content li {
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 300;
}

.info-page-content a {
    color: var(--clr-accent);
    text-decoration: underline;
}

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

.info-page-content table th, .info-page-content table td {
    padding: 10px 14px;
    text-align: left;
    border: 1px solid rgba(79, 195, 247, 0.15);
    font-size: 0.9rem;
}

.info-page-content table th {
    background: var(--clr-nav);
    color: var(--clr-accent);
}

.info-page-content table td {
    background: var(--clr-card);
    color: var(--clr-text-light);
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 14px 0;
    font-size: 0.82rem;
    color: var(--clr-text-muted);
    flex-wrap: wrap;
}

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

.breadcrumb span {
    color: rgba(176, 196, 216, 0.4);
}

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

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

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

[data-aos] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* ===== CONTACT FORM & INFO PAGES ===== */
.contact-form {
    max-width: 640px;
    margin-top: 24px;
}

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

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--clr-text-light);
    letter-spacing: 0.3px;
}

.form-group label span {
    color: var(--clr-btn-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--clr-nav-light);
    border: 2px solid rgba(79, 195, 247, 0.25);
    border-radius: var(--radius-sm);
    color: var(--clr-text-light);
    font-family: var(--font);
    font-size: 0.92rem;
    padding: 10px 14px;
    outline: none;
    transition: border-color var(--transition);
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--clr-accent);
}

.form-group select option {
    background: var(--clr-nav);
    color: var(--clr-text-light);
}

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

/* Info page content area */
.content.box .text h2 {
    font-size: 1.25rem;
    margin: 28px 0 10px;
    color: var(--clr-accent);
    border-bottom: 1px solid rgba(79, 195, 247, 0.2);
    padding-bottom: 6px;
}

.content.box .text h3 {
    font-size: 1.05rem;
    margin: 20px 0 8px;
    color: var(--clr-btn-secondary);
}

.content.box .text p {
    margin-bottom: 14px;
    line-height: 1.7;
    color: rgba(240, 248, 255, 0.88);
}

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

.content.box .text li {
    margin-bottom: 7px;
    line-height: 1.6;
    color: rgba(240, 248, 255, 0.85);
}

.content.box .text table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: rgba(26, 46, 61, 0.5);
    border-radius: var(--radius-sm);
    overflow: hidden;
    display: block;
    overflow-x: auto;
}

.content.box .text table thead th {
    background: var(--clr-nav);
    color: var(--clr-accent);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 14px;
    text-align: left;
    border-bottom: 2px solid rgba(79, 195, 247, 0.3);
}

.content.box .text table tbody tr {
    border-bottom: 1px solid rgba(79, 195, 247, 0.1);
}

.content.box .text table tbody tr:last-child {
    border-bottom: none;
}

.content.box .text table th,
.content.box .text table td {
    padding: 10px 14px;
    font-size: 0.88rem;
    vertical-align: top;
    color: rgba(240, 248, 255, 0.87);
}

.content.box .text table th {
    color: var(--clr-text-muted);
    font-weight: 600;
    white-space: nowrap;
}

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

.content.box .text a:hover {
    color: var(--clr-btn-secondary);
}

/* ===== HIDDEN UNUSED STYLES (uniqueness) ===== */
.wpcf7-form {
    display: none;
}

.elementor-widget-container--hidden {
    visibility: hidden;
    overflow: hidden;
    height: 0;
}

.wp-block-freeform.block-library-rich-text__tinymce--hidden {
    display: none;
}

.fusion-builder-row--unused {
    pointer-events: none;
    opacity: 0;
    position: absolute;
}

.entry-meta-unusedx94f {
    font-size: 0;
    position: absolute;
}

.woocommerce-x7b3z {
    width: 0;
    overflow: hidden;
    position: fixed;
    left: -9999px;
}

.vc-row-xqp72 {
    height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.cat-links-x83ms {
    display: none;
}

.genericon-x52kl::before {
    content: '\f100';
    display: none;
}

.a3k7q-wrapper {
    visibility: hidden;
    height: 0;
}

/* ===== TABLES OVERFLOW ===== */
.table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .header-inner {
        grid-template-columns: auto 1fr auto;
    }

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

    .mobile-block-grid {
        grid-template-columns: 1fr;
    }

    .phone-frame {
        margin: 0 auto;
    }
}

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

    .burger-btn {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        display: none;
    }

    .pros-cons-grid {
        grid-template-columns: 1fr;
    }

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

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

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

    .author-block {
        grid-template-columns: 1fr;
    }

    .content-review {
        padding: 24px 20px;
    }

    .section-wrap {
        padding: 32px 0;
    }

    .card-block {
        padding: 20px;
    }

    .bonus-widget {
        padding: 8px 42px 8px 16px;
    }

    .bonus-widget-text {
        font-size: 0.82rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.7rem;
    }

    .header-inner {
        padding: 8px 12px;
    }

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

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

    .faq-q {
        font-size: 0.88rem;
    }
}
