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

:root {
    --color-nav: #00114c;
    --color-nav-dark: #000d3a;
    --color-bg: #00229e;
    --color-bg-light: #0028b8;
    --color-btn-gold: #d07f1e;
    --color-btn-gold-hover: #b86d10;
    --color-btn-green: #348945;
    --color-btn-green-hover: #276934;
    --color-text: #ffffff;
    --color-text-muted: #a8bce0;
    --color-text-dark: #0a1a3a;
    --color-accent: #f5c842;
    --color-card-bg: rgba(0, 17, 76, 0.7);
    --color-card-border: rgba(208, 127, 30, 0.35);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    --transition: 0.25s ease;
    --font-main: 'Oswald', sans-serif;
}

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

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

body {
    font-family: var(--font-main);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

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

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

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

.wrapper {
    min-height: 100vh;
    display: grid;
    grid-template-rows: auto 1fr auto;
}

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

.box {
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: var(--radius-md);
    padding: 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    white-space: nowrap;
}

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

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

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

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

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

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

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

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

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

.btn--sm {
    padding: 7px 14px;
    font-size: 13px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-btn-green);
    color: #fff;
    padding: 8px 16px;
    z-index: 9999;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 0;
}

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

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

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

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

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

.header-nav a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    color: var(--color-text);
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

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

.header-nav a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-accent);
}

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

.winner-ticker {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(208, 127, 30, 0.15);
    border: 1px solid rgba(208, 127, 30, 0.4);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-accent);
    white-space: nowrap;
    overflow: hidden;
    max-width: 220px;
}

.winner-ticker .winner-dot {
    width: 8px;
    height: 8px;
    background: #4caf50;
    border-radius: 50%;
    animation: blink 1.2s infinite;
    flex-shrink: 0;
}

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

.winner-ticker-text {
    overflow: hidden;
    text-overflow: ellipsis;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    border: none;
    background: transparent;
    border-radius: var(--radius-sm);
}

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

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

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 17, 76, 0.92) 40%, rgba(0, 17, 76, 0.5) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 16px;
    width: 100%;
}

.hero-badge {
    display: inline-block;
    background: var(--color-btn-gold);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 16px;
}

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

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

.hero-desc {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 540px;
    margin-bottom: 28px;
    font-weight: 300;
    line-height: 1.7;
}

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

.stars {
    display: flex;
    gap: 3px;
    color: var(--color-accent);
    font-size: 22px;
    line-height: 1;
}

.rating-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-accent);
}

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

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

/* ===== BREADCRUMBS ===== */
.breadcrumbs-wrap {
    background: var(--color-nav-dark);
    padding: 10px 0;
    border-bottom: 1px solid rgba(208, 127, 30, 0.2);
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

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

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

.breadcrumbs .sep {
    color: rgba(255, 255, 255, 0.3);
}

.breadcrumbs .current {
    color: var(--color-text);
    font-weight: 500;
}

/* ===== CONTENT SECTIONS ===== */
.content-wrap {
    padding: 32px 0;
}

.content-section {
    max-width: 1200px;
    margin: 0 auto 32px;
    padding: 0 16px;
}

/* Demo block */
.demo-block {
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

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

.demo-title {
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
}

.demo-iframe-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
}

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

.demo-overlay {
    position: absolute;
    inset: 0;
    background: var(--color-nav-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 2;
}

.demo-overlay-logo {
    width: 180px;
    opacity: 0.9;
}

.demo-overlay p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    text-align: center;
    max-width: 320px;
}

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

.demo-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.demo-meta-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.demo-meta-label {
    font-size: 11px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.demo-meta-value {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-accent);
}

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

.adv-card {
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.adv-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-btn-gold);
    box-shadow: 0 8px 28px rgba(208, 127, 30, 0.2);
}

.adv-icon {
    width: 52px;
    height: 52px;
    background: rgba(208, 127, 30, 0.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-btn-gold);
}

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

.adv-name {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: #fff;
}

.adv-desc {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    font-weight: 300;
}

/* Mobile app block */
.mobile-block {
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 32px;
    align-items: start;
}

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

.phone-frame-inner {
    background: #0a0a1a;
    border: 3px solid #444;
    border-radius: 36px;
    padding: 12px 8px;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
}

.phone-notch {
    width: 60px;
    height: 10px;
    background: #222;
    border-radius: 0 0 10px 10px;
    margin: 0 auto 8px;
}

.phone-screen {
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 9/16;
    background: var(--color-nav);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.mobile-info .section-title {
    margin-bottom: 4px;
}

.mobile-table-wrap {
    overflow-x: auto;
    margin-bottom: 24px;
}

.mobile-table {
    width: 100%;
    min-width: 400px;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.mobile-table th, .mobile-table td {
    border: 1px solid rgba(208, 127, 30, 0.3);
    padding: 10px 14px;
    text-align: left;
}

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

.mobile-table td {
    background: rgba(0, 0, 0, 0.2);
    color: var(--color-text);
}

.mobile-table tr:hover td {
    background: rgba(208, 127, 30, 0.08);
}

.store-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--color-nav);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    padding: 10px 18px;
    color: #fff;
    font-size: 13px;
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.store-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-btn-gold);
    transform: translateY(-2px);
    color: #fff;
}

.store-btn svg {
    width: 24px;
    height: 24px;
    color: var(--color-accent);
    flex-shrink: 0;
}

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

.store-btn-sub {
    font-size: 10px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.store-btn-name {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
}

/* Winners leaderboard */
.winners-block {
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.winners-header {
    background: var(--color-nav);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(208, 127, 30, 0.3);
}

.winners-header .section-title {
    margin-bottom: 0;
}

.live-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #4caf50;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #4caf50;
    border-radius: 50%;
    animation: blink 1.2s infinite;
}

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

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

.winners-table th {
    background: rgba(0, 17, 76, 0.6);
    color: var(--color-text-muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 16px;
    text-align: left;
    font-weight: 600;
}

.winners-table td {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--color-text);
}

.winners-table tbody tr:hover td {
    background: rgba(208, 127, 30, 0.07);
}

.winners-table .rank {
    font-weight: 700;
    color: var(--color-text-muted);
    width: 40px;
}

.winners-table .rank-1 {
    color: #FFD700;
}

.winners-table .rank-2 {
    color: #C0C0C0;
}

.winners-table .rank-3 {
    color: #CD7F32;
}

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

.winners-table .w-nick {
    font-weight: 600;
}

.winners-table .w-time {
    color: var(--color-text-muted);
    font-size: 12px;
}

.winners-table .w-mult {
    color: var(--color-accent);
    font-size: 13px;
}

/* Video block */
.video-block {
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: var(--radius-lg);
}

.video-header {
    background: var(--color-nav);
    padding: 20px 24px;
    border-bottom: 1px solid rgba(208, 127, 30, 0.3);
}

.video-iframe-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
}

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

/* Review content block */
.review-block {
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.author-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--color-nav);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin-bottom: 28px;
    border: 1px solid rgba(208, 127, 30, 0.3);
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--color-btn-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    color: #fff;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3px;
}

.author-title {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

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

.author-link:hover {
    color: var(--color-accent);
}

.review-dates {
    display: flex;
    gap: 20px;
    font-size: 0.82rem;
    color: var(--color-text-muted);
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.review-dates span {
    display: flex;
    align-items: center;
    gap: 6px;
}

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

.review-content h1, .review-content h2, .review-content h3 {
    color: var(--color-accent);
    font-family: var(--font-main);
    text-transform: uppercase;
    margin: 28px 0 12px;
    font-weight: 700;
    line-height: 1.3;
}

.review-content h1 {
    font-size: 1.8rem;
}

.review-content h2 {
    font-size: 1.4rem;
}

.review-content h3 {
    font-size: 1.15rem;
}

.review-content p {
    margin-bottom: 16px;
    font-weight: 300;
}

.review-content ul, .review-content ol {
    margin: 0 0 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.review-content li {
    font-weight: 300;
    line-height: 1.65;
}

.review-content ul li::marker {
    color: var(--color-btn-gold);
}

.review-content ol li::marker {
    color: var(--color-accent);
    font-weight: 700;
}

.review-content table {
    width: auto;
    min-width: min(100%, 400px);
    border-collapse: collapse;
    margin: 20px auto;
    font-size: 0.9rem;
}

.review-content table th, .review-content table td {
    border: 1px solid rgba(208, 127, 30, 0.35);
    padding: 10px 14px;
    text-align: left;
}

.review-content table th {
    background: var(--color-nav);
    color: var(--color-accent);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.review-content table td {
    background: rgba(0, 0, 0, 0.2);
}

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

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

.review-content blockquote {
    border-left: 4px solid var(--color-btn-gold);
    margin: 20px 0;
    padding: 12px 20px;
    background: rgba(208, 127, 30, 0.08);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--color-text-muted);
}

.review-content strong {
    color: #fff;
    font-weight: 700;
}

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

.review-content hr {
    border: none;
    border-top: 1px solid rgba(208, 127, 30, 0.3);
    margin: 28px 0;
}

.review-content img {
    border-radius: var(--radius-sm);
    margin: 12px auto;
    max-width: 100%;
}

.review-content pre {
    background: var(--color-nav-dark);
    padding: 16px;
    border-radius: var(--radius-sm);
    overflow-x: auto;
    font-size: 0.88rem;
    margin-bottom: 16px;
    border: 1px solid rgba(208, 127, 30, 0.2);
}

.review-content code {
    font-family: monospace;
    color: var(--color-accent);
}

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

.similar-card {
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.similar-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-btn-gold);
    box-shadow: 0 8px 28px rgba(208, 127, 30, 0.2);
}

.similar-thumb {
    height: 160px;
    background: var(--color-nav);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.similar-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.similar-thumb-placeholder {
    font-size: 3rem;
    color: var(--color-btn-gold);
}

.similar-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--color-nav-dark);
    color: var(--color-text-muted);
    font-size: 10px;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 3px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.similar-body {
    padding: 16px;
}

.similar-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.similar-desc {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 16px;
    line-height: 1.6;
    font-weight: 300;
}

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

/* ===== FOOTER ===== */
.site-footer {
    background: var(--color-nav);
    border-top: 2px solid rgba(208, 127, 30, 0.3);
    padding: 48px 0 0;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 40px;
}

.footer-brand .footer-logo {
    height: 52px;
    width: auto;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    font-weight: 300;
    max-width: 280px;
}

.footer-email {
    color: var(--color-btn-gold);
    font-size: 0.88rem;
    margin-top: 12px;
    display: inline-block;
}

.footer-col-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-accent);
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    transition: color var(--transition);
    font-weight: 300;
}

.footer-links a:hover {
    color: var(--color-btn-gold);
}

.footer-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}

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

.social-icon:hover {
    background: var(--color-btn-gold);
    color: #fff;
    border-color: var(--color-btn-gold);
}

.footer-bottom {
    background: var(--color-nav-dark);
    padding: 24px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.footer-trust {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    justify-content: center;
}

.trust-badge {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    padding: 6px 12px;
    font-size: 11px;
    color: var(--color-text-muted);
    text-align: center;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: border-color var(--transition), color var(--transition);
}

.trust-badge:hover {
    border-color: var(--color-btn-gold);
    color: var(--color-text);
}

.trust-badge .tb-age {
    font-size: 15px;
    font-weight: 800;
    color: #e53935;
    border: 2px solid #e53935;
    border-radius: 4px;
    padding: 1px 5px;
    line-height: 1;
}

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

.payment-badge {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 5px 14px;
    font-size: 12px;
    color: var(--color-text-muted);
    font-weight: 600;
    letter-spacing: 0.3px;
}

.footer-legal {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    line-height: 1.75;
    text-align: center;
    font-weight: 300;
}

.footer-copyright {
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.au-flag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--color-text-muted);
}

/* ===== WIDGET ===== */
.sticky-widget {
    position: fixed;
    bottom: 24px;
    right: 20px;
    z-index: 999;
    background: var(--color-nav);
    border: 2px solid var(--color-btn-gold);
    border-radius: var(--radius-md);
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    max-width: 180px;
    transition: transform var(--transition), box-shadow var(--transition);
    animation: widgetPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 1s both;
}

@keyframes widgetPop {
    from {
        transform: scale(0.5) translateY(40px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.sticky-widget:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(208, 127, 30, 0.3);
}

.widget-logo {
    width: 80px;
    height: auto;
}

.widget-bonus {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-accent);
    text-align: center;
    line-height: 1.4;
}

.widget-close {
    position: absolute;
    top: 6px;
    right: 8px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
    padding: 2px;
    transition: color var(--transition);
}

.widget-close:hover {
    color: #fff;
}

/* ===== PAGE (info pages) ===== */
.page-content {
    max-width: 860px;
    margin: 0 auto;
    padding: 40px 16px 60px;
}

.page-content .page-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-accent);
    text-transform: uppercase;
    margin-bottom: 24px;
}

.page-content p {
    margin-bottom: 16px;
    font-weight: 300;
    line-height: 1.75;
    color: var(--color-text);
}

.page-content h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-accent);
    text-transform: uppercase;
    margin: 28px 0 12px;
}

.page-content ul, .page-content ol {
    margin: 0 0 16px 20px;
}

.page-content li {
    margin-bottom: 8px;
    font-weight: 300;
    color: var(--color-text);
}

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

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

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

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== UNUSED (for uniqualization) ===== */
.xj4k9-panel {
    display: none;
}

.bq7r2-grid {
    display: none;
}

.wp-block-cover-image {
    display: none;
}

.elementor-widget-container-unused {
    display: none;
}

.fl-builder-content-unused {
    display: none;
}

.qd91n {
    display: none;
}

.wz3m7-flex {
    display: none;
}

:root {
    --wp-admin-bar-height: 32px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

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

    .phone-frame {
        display: none;
    }
}

@media (max-width: 768px) {
    .header-inner {
        grid-template-columns: auto 1fr auto;
    }

    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--color-nav-dark);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 80px 24px 40px;
        gap: 8px;
        transition: right 0.3s ease;
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.5);
        z-index: 998;
        overflow-y: auto;
    }

    .header-nav.active {
        right: 0;
    }

    .header-nav a {
        width: 100%;
        padding: 12px 16px;
        font-size: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .burger {
        display: flex;
        z-index: 999;
    }

    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 997;
    }

    .nav-overlay.active {
        display: block;
    }

    .winner-ticker {
        display: none;
    }

    .header-actions .btn {
        padding: 8px 14px;
        font-size: 13px;
    }

    .hero {
        min-height: 380px;
    }

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

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

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

    .review-block {
        padding: 20px;
    }

    .demo-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .demo-meta {
        gap: 12px;
    }
}

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

    .section-title {
        font-size: 1.5rem;
    }

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

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

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .store-buttons {
        flex-direction: column;
    }

    .store-btn {
        width: 100%;
    }

    .sticky-widget {
        bottom: 16px;
        right: 12px;
        max-width: 160px;
        padding: 12px;
    }
}
