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

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

:root {
    --color-bg: #150587;
    --color-nav: #452271;
    --color-nav-dark: #321855;
    --color-btn-green: #7bdb00;
    --color-btn-green-hover: #63b200;
    --color-btn-red: #d1210d;
    --color-btn-red-hover: #a81a09;
    --color-card: #1e0fa8;
    --color-card-alt: #2a0e6b;
    --color-text: #f0eaff;
    --color-text-muted: #b8a8d8;
    --color-gold: #f5c518;
    --color-gold-dark: #d4a017;
    --color-border: rgba(123, 219, 0, 0.25);
    --color-border-nav: rgba(255, 255, 255, 0.12);
    --font-main: 'Montserrat', sans-serif;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.45);
    --shadow-glow: 0 0 24px rgba(123, 219, 0, 0.35);
    --transition: 0.25s ease;
}

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

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

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

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

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

ul, ol {
    padding-left: 1.4em;
}

li {
    margin-bottom: 0.35em;
}

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

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

.container--wide {
    max-width: 1400px;
}

.box {
    padding: 24px 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.04em;
    padding: 11px 24px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), filter var(--transition);
    text-transform: uppercase;
    white-space: nowrap;
    text-decoration: none;
}

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

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

.btn--green {
    background: var(--color-btn-green);
    color: #0d2800;
    box-shadow: 0 4px 18px rgba(123, 219, 0, 0.4);
}

.btn--green:hover {
    background: var(--color-btn-green-hover);
    box-shadow: var(--shadow-glow);
    color: #0d2800;
}

.btn--red {
    background: var(--color-btn-red);
    color: #fff;
    box-shadow: 0 4px 18px rgba(209, 33, 13, 0.4);
}

.btn--red:hover {
    background: var(--color-btn-red-hover);
    box-shadow: 0 0 24px rgba(209, 33, 13, 0.5);
    color: #fff;
}

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

.btn--outline:hover {
    background: var(--color-btn-green);
    color: #0d2800;
}

.btn--gold {
    background: var(--color-gold);
    color: #1a0a00;
    box-shadow: 0 4px 18px rgba(245, 197, 24, 0.4);
}

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

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

.btn--lg {
    padding: 15px 34px;
    font-size: 1.05rem;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 52px;
    height: 4px;
    background: var(--color-btn-green);
    border-radius: 2px;
    margin-top: 8px;
}

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

.tag {
    display: inline-block;
    background: rgba(123, 219, 0, 0.15);
    color: var(--color-btn-green);
    border: 1px solid rgba(123, 219, 0, 0.3);
    border-radius: 20px;
    padding: 3px 12px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

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

.header-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

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

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

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

.header-nav {
    flex: 1;
}

.header-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}

.header-nav ul li a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--color-text);
    font-size: 0.88rem;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition);
    white-space: nowrap;
}

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

.header-nav ul li a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-btn-green);
}

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

.winner-ticker {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(123, 219, 0, 0.2);
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 0.78rem;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.winner-ticker .winner-amount {
    color: var(--color-gold);
    font-weight: 700;
}

.winner-ticker::before {
    content: '🏆';
    font-size: 0.85rem;
}

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

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

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

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

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

/* ===================== HERO ===================== */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0d0466 0%, #1e0a8a 50%, #150587 100%);
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(21, 5, 135, 0.92) 0%, rgba(21, 5, 135, 0.65) 50%, rgba(21, 5, 135, 0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 0;
    max-width: 640px;
}

.hero-badge {
    margin-bottom: 14px;
}

.hero h1 {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
    text-wrap: balance;
}

.hero h1 span {
    color: var(--color-btn-green);
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    margin-bottom: 28px;
    max-width: 520px;
    line-height: 1.65;
}

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

.hero-tiles {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.hero-tile {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    text-align: center;
    backdrop-filter: blur(6px);
    transition: border-color var(--transition), background var(--transition);
}

.hero-tile:hover {
    border-color: rgba(123, 219, 0, 0.4);
    background: rgba(123, 219, 0, 0.08);
}

.hero-tile-label {
    font-size: 0.72rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
    margin-bottom: 4px;
}

.hero-tile-value {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--color-gold);
}

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

.section--alt {
    background: rgba(0, 0, 0, 0.2);
}

.section--dark {
    background: var(--color-card-alt);
}

/* ===================== DEMO BLOCK ===================== */
.demo-wrap {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.demo-frame-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.demo-frame-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

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

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

.demo-info strong {
    color: #fff;
}

/* ===================== WINNERS TABLE ===================== */
.winners-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
}

.winners-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--color-card);
    border: 2px solid rgba(123, 219, 0, 0.2);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.winners-table th {
    background: var(--color-nav);
    color: var(--color-btn-green);
    font-size: 0.83rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 13px 16px;
    text-align: left;
    border-bottom: 2px solid rgba(123, 219, 0, 0.2);
}

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

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

.winners-table tr:hover td {
    background: rgba(123, 219, 0, 0.05);
}

.winners-table .rank {
    font-weight: 800;
    color: var(--color-text-muted);
}

.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-gold);
    font-weight: 700;
}

.winners-table .win-mult {
    color: var(--color-btn-green);
    font-size: 0.82rem;
}

.winners-table .date-col {
    color: var(--color-text-muted);
    font-size: 0.82rem;
}

/* ===================== SCREENSHOTS SLIDER ===================== */
.slider-wrap {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.slider-track {
    display: flex;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-slide {
    min-width: 100%;
    position: relative;
}

.slider-slide img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-lg);
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}

.slider-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-nav);
    border: 1px solid var(--color-border);
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition), transform var(--transition);
}

.slider-btn:hover {
    background: var(--color-btn-green);
    color: #0d2800;
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 7px;
    align-items: center;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: none;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
}

.slider-dot.active {
    background: var(--color-btn-green);
    transform: scale(1.3);
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.screenshot-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: transform var(--transition);
    cursor: pointer;
}

.screenshot-item:hover {
    transform: scale(1.03);
}

.screenshot-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

/* ===================== STRATEGY CARDS ===================== */
.strategy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.strategy-card {
    background: var(--color-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
}

.strategy-card:hover {
    transform: translateY(-6px);
    border-color: rgba(123, 219, 0, 0.35);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5), 0 0 20px rgba(123, 219, 0, 0.12);
}

.strategy-card-img {
    height: 140px;
    overflow: hidden;
    background: var(--color-nav-dark);
}

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

.strategy-card:hover .strategy-card-img img {
    transform: scale(1.07);
}

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

.strategy-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

.strategy-card-desc {
    font-size: 0.87rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    flex: 1;
}

.strategy-card-footer {
    padding: 0 18px 18px;
}

/* ===================== REVIEW CONTENT ===================== */
.review-block {
    background: var(--color-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 36px 40px;
    box-shadow: var(--shadow-card);
}

.review-block h2 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 14px;
    margin-top: 28px;
}

.review-block h2:first-child {
    margin-top: 0;
}

.review-block h3 {
    color: var(--color-btn-green);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 22px;
}

.review-block h4 {
    color: var(--color-gold);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    margin-top: 18px;
}

.review-block p {
    color: var(--color-text);
    font-size: 0.96rem;
    line-height: 1.75;
    margin-bottom: 14px;
}

.review-block ul, .review-block ol {
    color: var(--color-text);
    font-size: 0.96rem;
    line-height: 1.75;
    margin-bottom: 14px;
    padding-left: 1.6em;
}

.review-block li {
    margin-bottom: 6px;
}

.review-block a {
    color: var(--color-btn-green);
}

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

.review-block table {
    width: 100%;
    border-collapse: collapse;
    margin: 18px auto;
    font-size: 0.9rem;
}

.review-block table th {
    background: var(--color-nav);
    color: var(--color-btn-green);
    padding: 10px 14px;
    text-align: left;
    font-weight: 700;
    border: 2px solid rgba(123, 219, 0, 0.2);
}

.review-block table td {
    padding: 9px 14px;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.review-block table tr:nth-child(even) td {
    background: rgba(0, 0, 0, 0.18);
}

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

.review-block blockquote {
    border-left: 3px solid var(--color-btn-green);
    padding: 12px 20px;
    background: rgba(123, 219, 0, 0.06);
    margin: 18px 0;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--color-text-muted);
}

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

.faq-item {
    background: var(--color-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition);
}

.faq-item.open {
    border-color: rgba(123, 219, 0, 0.3);
}

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

.faq-question:hover {
    color: var(--color-btn-green);
}

.faq-item.open .faq-question {
    color: var(--color-btn-green);
}

.faq-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(123, 219, 0, 0.12);
    border: 1px solid rgba(123, 219, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition), background var(--transition);
}

.faq-icon svg {
    width: 12px;
    height: 12px;
    stroke: var(--color-btn-green);
    transition: transform var(--transition);
}

.faq-item.open .faq-icon {
    background: var(--color-btn-green);
}

.faq-item.open .faq-icon svg {
    stroke: #0d2800;
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1), padding var(--transition);
    padding: 0 20px;
}

.faq-item.open .faq-answer {
    max-height: 600px;
    padding: 0 20px 18px;
}

.faq-answer p {
    color: var(--color-text-muted);
    font-size: 0.91rem;
    line-height: 1.7;
    margin: 0;
}

/* ===================== AUTHOR ===================== */
.author-card {
    background: var(--color-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 30px 32px;
    box-shadow: var(--shadow-card);
    display: flex;
    gap: 28px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.author-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-btn-green);
    flex-shrink: 0;
}

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

.author-name {
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}

.author-title {
    color: var(--color-btn-green);
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.author-location {
    color: var(--color-text-muted);
    font-size: 0.84rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.author-bio {
    color: var(--color-text-muted);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 14px;
}

.author-meta {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.author-meta-item {
    font-size: 0.82rem;
    color: var(--color-text-muted);
}

.author-meta-item strong {
    color: var(--color-text);
}

.author-contacts {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 0.84rem;
    margin-bottom: 12px;
}

.author-contacts a {
    color: var(--color-btn-green);
}

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

.author-social {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--color-nav);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition), transform var(--transition);
}

.author-social:hover {
    background: var(--color-btn-green);
    transform: scale(1.1);
}

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

.author-social:hover svg {
    fill: #0d2800;
}

.author-dates {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-top: 12px;
}

.author-edu {
    font-size: 0.83rem;
    color: var(--color-text-muted);
    margin-top: 6px;
}

/* ===================== FOOTER ===================== */
.site-footer {
    background: var(--color-nav);
    border-top: 1px solid var(--color-border-nav);
    margin-top: auto;
}

.footer-main {
    padding: 48px 0 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    align-items: start;
}

.footer-logo-col {
}

.footer-logo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
    margin-bottom: 14px;
}

.footer-tagline {
    font-size: 0.84rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 14px;
}

.footer-flag {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.83rem;
    color: var(--color-text-muted);
    margin-bottom: 12px;
}

.footer-flag img {
    width: 28px;
    height: auto;
    border-radius: 3px;
}

.footer-email {
    font-size: 0.85rem;
    color: var(--color-btn-green);
}

.footer-col-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
}

.footer-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

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

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

.footer-payments {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.payment-badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    padding: 5px 10px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.03em;
}

.footer-socials {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
}

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

.footer-social:hover {
    background: var(--color-btn-green);
    transform: translateY(-2px);
}

.footer-social svg {
    width: 17px;
    height: 17px;
    fill: #fff;
}

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

.footer-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.trust-badge {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    padding: 5px 10px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-text-muted);
    letter-spacing: 0.03em;
    display: flex;
    align-items: center;
    gap: 4px;
}

.trust-badge.green {
    border-color: rgba(123, 219, 0, 0.3);
    color: var(--color-btn-green);
}

.footer-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 24px 0;
}

.footer-bottom {
    padding: 0 0 28px;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
}

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

.footer-legal {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    line-height: 1.65;
    max-width: 740px;
}

.footer-provider {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-provider img {
    height: 28px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.6;
}

.footer-provider:hover img {
    opacity: 1;
}

/* ===================== STICKY WIDGET ===================== */
.sticky-widget {
    position: fixed;
    bottom: 22px;
    right: 22px;
    z-index: 900;
    background: var(--color-nav);
    border: 1px solid rgba(123, 219, 0, 0.3);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 280px;
    animation: widgetSlide 0.5s ease 1.5s both;
    transition: transform var(--transition), box-shadow var(--transition);
}

.sticky-widget:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7), 0 0 20px rgba(123, 219, 0, 0.2);
}

@keyframes widgetSlide {
    from {
        transform: translateX(120%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.widget-logo {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.widget-content {
    flex: 1;
}

.widget-title {
    font-size: 0.82rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 2px;
}

.widget-bonus {
    font-size: 0.75rem;
    color: var(--color-gold);
    font-weight: 600;
    margin-bottom: 8px;
}

.widget-close {
    position: absolute;
    top: 6px;
    right: 7px;
    background: none;
    border: none;
    color: var(--color-text-muted);
    cursor: pointer;
    font-size: 1.1rem;
    line-height: 1;
    padding: 2px;
    transition: color var(--transition);
}

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

/* ===================== INFO PAGES ===================== */
.info-content {
    background: var(--color-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 36px 40px;
    box-shadow: var(--shadow-card);
    margin: 32px 0;
}

.info-content h2 {
    color: #fff;
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 10px;
    margin-top: 26px;
}

.info-content h2:first-child {
    margin-top: 0;
}

.info-content h3 {
    color: var(--color-btn-green);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    margin-top: 20px;
}

.info-content p {
    color: var(--color-text-muted);
    font-size: 0.93rem;
    line-height: 1.75;
    margin-bottom: 12px;
}

.info-content ul, .info-content ol {
    color: var(--color-text-muted);
    font-size: 0.93rem;
    line-height: 1.75;
    margin-bottom: 12px;
    padding-left: 1.5em;
}

.info-content li {
    margin-bottom: 5px;
}

.info-content a {
    color: var(--color-btn-green);
}

.info-content strong {
    color: var(--color-text);
}

.info-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px auto;
    font-size: 0.88rem;
}

.info-content table th {
    background: var(--color-nav);
    color: var(--color-btn-green);
    padding: 9px 13px;
    text-align: left;
    border: 2px solid rgba(123, 219, 0, 0.2);
}

.info-content table td {
    padding: 8px 13px;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===================== BREADCRUMB ===================== */
.breadcrumb {
    padding: 14px 0;
}

.breadcrumb ol {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    font-size: 0.84rem;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--color-text-muted);
}

.breadcrumb li::after {
    content: '/';
    color: rgba(255, 255, 255, 0.2);
}

.breadcrumb li:last-child::after {
    display: none;
}

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

.breadcrumb li a:hover {
    color: var(--color-btn-green);
}

.breadcrumb li:last-child {
    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;
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(123, 219, 0, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(123, 219, 0, 0);
    }
}

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

@keyframes scrollTicker {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

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

.animate-fade {
    animation: fadeIn 0.5s ease both;
}

.btn--green {
    animation: pulse 2.5s infinite;
}

.btn--green:hover {
    animation: none;
}

.anim-d1 {
    animation-delay: 0.1s;
}

.anim-d2 {
    animation-delay: 0.2s;
}

.anim-d3 {
    animation-delay: 0.3s;
}

/* ===================== WP STUBS (obfuscation) ===================== */
.wp-block-group {
}

.wp-block-columns {
}

.wp-caption {
    display: none !important;
}

.entry-meta {
    display: none;
    visibility: hidden;
    pointer-events: none;
    position: absolute;
    left: -9999px;
}

.wpcf7-not-valid-tip {
    display: none;
}

.elementor-element {
    display: contents;
}

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

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

@media (max-width: 768px) {
    .header-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(21, 5, 135, 0.97);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        z-index: 1050;
        gap: 0;
    }

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

    .header-nav ul {
        flex-direction: column;
        gap: 4px;
        width: 100%;
        text-align: center;
        padding: 24px;
    }

    .header-nav ul li a {
        font-size: 1.1rem;
        padding: 12px 20px;
        justify-content: center;
    }

    .burger {
        display: flex;
    }

    .winner-ticker {
        display: none;
    }

    .hero-content {
        padding: 40px 0;
    }

    .hero-tiles {
        grid-template-columns: repeat(3, 1fr);
    }

    .screenshots-grid {
        display: none;
    }

    .slider-wrap {
        display: block;
    }

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

    .author-card {
        flex-direction: column;
    }

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

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

    .review-block {
        padding: 22px 18px;
    }

    .info-content {
        padding: 22px 18px;
    }

    .sticky-widget {
        bottom: 14px;
        right: 14px;
        max-width: 240px;
    }
}

@media (max-width: 480px) {
    .hero-tiles {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h1 {
        font-size: 1.6rem;
    }

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

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

    .screenshots-grid {
        display: none;
    }
}

@media (min-width: 769px) {
    .slider-wrap {
        display: none;
    }

    .screenshots-grid {
        display: grid;
    }
}

.mobile-header-btns {
    display: none;
}

@media (max-width: 768px) {
    .mobile-header-btns {
        display: flex;
        align-items: center;
        gap: 7px;
        margin-left: auto;
    }

    .header-actions {
        display: none;
    }
}
