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

:root {
    --color-header: #1A1C24;
    --color-footer: #1A1C24;
    --color-bg: #242630;
    --color-bg-card: #2c2f3d;
    --color-bg-card2: #1e2030;
    --color-btn-primary: #00CC5F;
    --color-btn-primary-hover: #00e86a;
    --color-btn-secondary: #3D404C;
    --color-btn-secondary-hover: #4e5265;
    --color-text: #e8eaf0;
    --color-text-muted: #9ba3b8;
    --color-text-heading: #ffffff;
    --color-border: #32374a;
    --color-green: #00CC5F;
    --color-green-dim: rgba(0, 204, 95, 0.12);
    --color-red: #ff4d6d;
    --color-red-dim: rgba(255, 77, 109, 0.12);
    --color-gold: #f5c842;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.35);
    --shadow-btn: 0 4px 14px rgba(0, 204, 95, 0.35);
    --font-main: 'Montserrat', Arial, sans-serif;
    --transition: 0.25s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
    color: var(--color-btn-primary-hover);
}

h1, h2, h3, h4, h5, h6 {
    color: var(--color-text-heading);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.75em;
}

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

h2 {
    font-size: clamp(1.3rem, 3vw, 1.9rem);
}

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

h4 {
    font-size: 1.1rem;
}

p {
    margin-bottom: 1em;
    color: var(--color-text);
}

ul, ol {
    padding-left: 1.5em;
    margin-bottom: 1em;
}

li {
    margin-bottom: 0.4em;
}

strong, b {
    color: var(--color-text-heading);
    font-weight: 700;
}

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

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: var(--radius-md);
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    outline: none;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
    white-space: nowrap;
    text-decoration: none;
    letter-spacing: 0.02em;
}

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

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

.btn--primary {
    background: var(--color-btn-primary);
    color: #0a1a0f;
    box-shadow: var(--shadow-btn);
}

.btn--primary:hover {
    background: var(--color-btn-primary-hover);
    color: #0a1a0f;
    box-shadow: 0 6px 20px rgba(0, 204, 95, 0.5);
}

.btn--secondary {
    background: var(--color-btn-secondary);
    color: var(--color-text);
}

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

.btn--lg {
    padding: 14px 32px;
    font-size: 1rem;
    border-radius: var(--radius-lg);
}

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

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

.btn--outline:hover {
    background: var(--color-green-dim);
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-green);
    margin-bottom: 0.5em;
}

.section-title {
    font-size: clamp(1.4rem, 3.5vw, 2rem);
    font-weight: 800;
    color: var(--color-text-heading);
    margin-bottom: 0.5em;
}

.section-desc {
    color: var(--color-text-muted);
    font-size: 0.97rem;
    margin-bottom: 2em;
    max-width: 600px;
}

.card {
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-card);
    padding: 24px;
    transition: transform var(--transition), box-shadow var(--transition);
}

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

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-border), transparent);
    margin: 40px 0;
}

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

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

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

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

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

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 13px;
    border-radius: var(--radius-sm);
    color: var(--color-text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    transition: color var(--transition), background var(--transition);
}

.nav-link svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--color-text-heading);
    background: rgba(255, 255, 255, 0.06);
}

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

.online-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    background: rgba(0, 204, 95, 0.1);
    border: 1px solid rgba(0, 204, 95, 0.25);
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--color-green);
    letter-spacing: 0.02em;
}

.online-dot {
    width: 6px;
    height: 6px;
    background: var(--color-green);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

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

.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: var(--radius-sm);
}

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

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

.burger-btn.is-open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

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

.mobile-menu {
    display: none;
    flex-direction: column;
    background: var(--color-header);
    border-top: 1px solid var(--color-border);
    padding: 12px 16px 16px;
    gap: 4px;
}

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

.mobile-menu .nav-link {
    font-size: 0.95rem;
    padding: 10px 14px;
}

/* ===================== HERO SLIDER ===================== */
.hero-slider {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    background: var(--color-header);
}

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

.slide {
    min-width: 100%;
    position: relative;
    height: clamp(320px, 55vw, 560px);
    overflow: hidden;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 12, 18, 0.88) 0%, rgba(10, 12, 18, 0.5) 60%, transparent 100%);
    display: flex;
    align-items: center;
}

.slide-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    width: 100%;
}

.slide-tag {
    display: inline-block;
    background: var(--color-green);
    color: #0a1a0f;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.slide-title {
    font-size: clamp(1.5rem, 4vw, 2.8rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
    max-width: 560px;
    line-height: 1.2;
}

.slide-sub {
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    margin-bottom: 24px;
    max-width: 460px;
}

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

.slider-controls {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

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

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

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background var(--transition);
    font-size: 1.1rem;
}

.slider-arrow:hover {
    background: rgba(0, 204, 95, 0.3);
}

.slider-arrow--prev {
    left: 16px;
}

.slider-arrow--next {
    right: 16px;
}

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

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

.section-header {
    margin-bottom: 32px;
}

/* ===================== PROS & CONS ===================== */
.pros-cons-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.pros-col, .cons-col {
    flex: 1;
    min-width: 260px;
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--color-border);
}

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

.cons-col {
    border-top: 3px solid var(--color-red);
}

.pros-cons-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.pros-cons-title svg {
    width: 20px;
    height: 20px;
}

.pros-cons-title.pros {
    color: var(--color-green);
}

.pros-cons-title.cons {
    color: var(--color-red);
}

.pros-cons-list {
    list-style: none;
    padding: 0;
}

.pros-cons-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 0.9rem;
    color: var(--color-text);
    margin-bottom: 0;
}

.pros-cons-list li:last-child {
    border-bottom: none;
}

.list-icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 1px;
}

.list-icon--pro {
    color: var(--color-green);
}

.list-icon--con {
    color: var(--color-red);
}

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

.mirrors-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 20px 24px;
    border-bottom: 1px solid var(--color-border);
    flex-wrap: wrap;
    gap: 10px;
}

.mirrors-timestamp {
    font-size: 0.78rem;
    color: var(--color-text-muted);
}

.mirrors-timestamp strong {
    color: var(--color-green);
    font-weight: 700;
}

.mirrors-live-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(0, 204, 95, 0.12);
    border: 1px solid rgba(0, 204, 95, 0.3);
    border-radius: 20px;
    padding: 4px 10px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--color-green);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

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

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
    min-width: 500px;
}

table th {
    background: var(--color-bg-card2);
    color: var(--color-text-muted);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 12px 16px;
    text-align: left;
    border-bottom: 2px solid var(--color-border);
}

table td {
    padding: 13px 16px;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text);
    vertical-align: middle;
}

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

table tr:hover td {
    background: rgba(255, 255, 255, 0.025);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.status-badge--active {
    background: rgba(0, 204, 95, 0.12);
    color: var(--color-green);
    border: 1px solid rgba(0, 204, 95, 0.25);
}

.status-badge--dot {
    width: 5px;
    height: 5px;
    background: currentColor;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

/* ===================== APP BLOCK ===================== */
.app-block {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.app-info {
    flex: 1;
    min-width: 280px;
}

.app-download {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 200px;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: var(--color-btn-secondary);
    border-radius: var(--radius-md);
    color: var(--color-text-heading);
    font-weight: 600;
    transition: background var(--transition), transform var(--transition);
    text-decoration: none;
    border: 1px solid var(--color-border);
}

.download-btn:hover {
    background: var(--color-btn-secondary-hover);
    color: #fff;
    transform: translateY(-2px);
}

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

.download-btn-text small {
    display: block;
    font-size: 0.7rem;
    color: var(--color-text-muted);
    font-weight: 400;
}

.download-btn-text strong {
    font-size: 0.95rem;
}

/* ===================== VIDEO ===================== */
.video-wrap {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-bg-card2);
    box-shadow: var(--shadow-card);
}

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

/* ===================== SLOT GAME ===================== */
.slot-machine {
    background: var(--color-bg-card2);
    border-radius: var(--radius-xl);
    border: 2px solid var(--color-border);
    padding: 36px 28px;
    max-width: 480px;
    margin: 0 auto;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.slot-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--color-text-heading);
    margin-bottom: 6px;
}

.slot-subtitle {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    margin-bottom: 28px;
}

.slot-reels {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 28px;
}

.reel {
    width: 88px;
    height: 100px;
    background: var(--color-header);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    transition: filter var(--transition);
    overflow: hidden;
    position: relative;
}

.reel.spinning {
    animation: reel-spin 0.15s linear infinite;
}

@keyframes reel-spin {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
    100% {
        transform: translateY(0);
    }
}

.slot-btn-wrap {
    margin-bottom: 16px;
}

.slot-result {
    min-height: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: opacity var(--transition);
}

.slot-win-text {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-green);
    padding: 10px 20px;
    background: var(--color-green-dim);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 204, 95, 0.3);
}

.slot-lose-text {
    font-size: 0.88rem;
    color: var(--color-text-muted);
}

.slot-credits {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    margin-top: 12px;
}

/* ===================== REVIEW CONTENT ===================== */
.review-content {
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    padding: 36px;
}

.review-content h2 {
    font-size: 1.5rem;
    color: var(--color-text-heading);
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--color-border);
}

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

.review-content h3 {
    font-size: 1.2rem;
    color: var(--color-text-heading);
    margin-top: 1.2em;
    margin-bottom: 0.4em;
}

.review-content h4 {
    font-size: 1rem;
    color: var(--color-green);
    margin-top: 1em;
    margin-bottom: 0.4em;
}

.review-content p {
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: 1em;
}

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

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

.review-content li {
    color: var(--color-text);
    line-height: 1.6;
    margin-bottom: 0.5em;
}

.review-content table {
    min-width: 100%;
}

.review-content table th {
    background: var(--color-bg-card2);
}

.review-content blockquote {
    border-left: 3px solid var(--color-green);
    margin: 1.5em 0;
    padding: 12px 20px;
    background: var(--color-green-dim);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--color-text);
    font-style: italic;
}

.review-content img {
    border-radius: var(--radius-md);
    margin: 1em 0;
}

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

.review-content code {
    background: var(--color-bg-card2);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.85em;
    color: var(--color-green);
}

/* ===================== COMMENTS ===================== */
.comments-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

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

.comment-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.comment-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--color-btn-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    color: var(--color-text-heading);
    flex-shrink: 0;
}

.comment-info {
    flex: 1;
}

.comment-name {
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--color-text-heading);
}

.comment-date {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

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

.comment-star {
    font-size: 0.85rem;
}

.comment-text {
    font-size: 0.88rem;
    color: var(--color-text);
    line-height: 1.6;
}

.comment-verified {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.7rem;
    color: var(--color-green);
    font-weight: 700;
    margin-top: 6px;
}

.comment-form {
    background: var(--color-bg-card2);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    padding: 28px;
}

.comment-form h3 {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--color-text-muted);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: var(--color-bg);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-md);
    color: var(--color-text);
    font-family: var(--font-main);
    font-size: 0.9rem;
    padding: 11px 14px;
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--color-green);
    box-shadow: 0 0 0 3px rgba(0, 204, 95, 0.12);
}

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

.form-row {
    display: flex;
    gap: 14px;
}

.form-row .form-group {
    flex: 1;
}

.star-rating {
    display: flex;
    gap: 4px;
    margin-top: 4px;
}

.star-rating input {
    display: none;
}

.star-rating label {
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-border);
    transition: color var(--transition);
}

.star-rating label:hover, .star-rating label:hover ~ label, .star-rating input:checked ~ label {
    color: var(--color-gold);
}

.star-rating {
    flex-direction: row-reverse;
}

.star-rating label:hover, .star-rating input:checked ~ label {
    color: var(--color-gold);
}

/* ===================== AUTHOR ===================== */
.author-block {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    padding: 28px;
    flex-wrap: wrap;
}

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

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

.author-name {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--color-text-heading);
    margin-bottom: 2px;
}

.author-role {
    font-size: 0.82rem;
    color: var(--color-green);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}

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

.author-meta {
    display: flex;
    gap: 16px;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.author-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

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

.author-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: var(--color-btn-secondary);
    border-radius: var(--radius-sm);
    color: var(--color-text-muted);
    transition: background var(--transition), color var(--transition);
}

.author-social-link:hover {
    background: var(--color-green);
    color: #0a1a0f;
}

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

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

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

.footer-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

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

.footer-col--wide {
    flex: 2;
    min-width: 260px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-logo img {
    height: 36px;
}

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

.footer-country {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--color-text-muted);
    margin-bottom: 14px;
}

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

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

.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-text-muted);
    transition: background var(--transition), color var(--transition);
}

.footer-social:hover {
    background: var(--color-green);
    color: #0a1a0f;
}

.footer-social svg {
    width: 15px;
    height: 15px;
}

.footer-col-title {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    margin-bottom: 14px;
}

.footer-nav-list {
    list-style: none;
    padding: 0;
}

.footer-nav-list li {
    margin-bottom: 8px;
}

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

.footer-nav-list a:hover {
    color: var(--color-text-heading);
}

.footer-logos-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
}

.footer-logo-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 12px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--color-text-muted);
    letter-spacing: 0.05em;
    min-height: 30px;
}

.footer-divider {
    height: 1px;
    background: var(--color-border);
    margin: 24px 0;
}

.footer-bottom {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-legal {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    max-width: 700px;
}

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

.footer-legal a:hover {
    color: var(--color-text);
}

.footer-copyright {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    white-space: nowrap;
}

/* ===================== WIDGET ===================== */
.promo-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 990;
    background: linear-gradient(90deg, #0d1f13 0%, #1A1C24 40%, #0d1f13 100%);
    border-top: 2px solid var(--color-green);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    box-shadow: 0 -4px 24px rgba(0, 204, 95, 0.2);
    animation: slide-up 0.5s ease 1s both;
}

@keyframes slide-up {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.promo-widget-text {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    gap: 6px;
}

.promo-badge {
    background: var(--color-green);
    color: #0a1a0f;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 4px;
}

.promo-label {
    font-size: 0.92rem;
    font-weight: 700;
    color: #fff;
}

.promo-code-chip {
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px dashed rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-sm);
    padding: 5px 14px;
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--color-gold);
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: background var(--transition);
}

.promo-code-chip:hover {
    background: rgba(255, 255, 255, 0.13);
}

.promo-widget-close {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--color-text-muted);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 4px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* ===================== INFO PAGE ===================== */
.info-page-content {
    padding: 48px 0 60px;
}

.info-page-inner {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 16px;
}

.info-page-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    padding: 40px 36px;
}

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

.info-page-card h2 {
    margin-top: 1.8em;
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
}

.info-page-card h2:first-of-type {
    border-top: none;
}

.info-page-card p {
    color: var(--color-text);
    line-height: 1.75;
}

.info-page-card ul {
    color: var(--color-text);
}

.info-page-card a {
    color: var(--color-green);
}

/* ===================== BREADCRUMB ===================== */
.breadcrumb {
    padding: 14px 0;
    font-size: 0.8rem;
}

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

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

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

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

.breadcrumb-sep {
    color: var(--color-border);
    margin: 0 4px;
}

.breadcrumb-item.active {
    color: var(--color-text);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

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

.faq-question:hover {
    background: rgba(255, 255, 255, 0.03);
}

.faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--color-green);
    transition: transform var(--transition);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding var(--transition);
    padding: 0 20px;
    font-size: 0.88rem;
    color: var(--color-text);
    line-height: 1.7;
}

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

/* =====================  ===================== */
.fade-in-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.bonus-highlight {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(0, 204, 95, 0.15) 0%, rgba(0, 204, 95, 0.05) 100%);
    border: 1.5px solid rgba(0, 204, 95, 0.35);
    border-radius: var(--radius-lg);
    padding: 14px 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.bonus-highlight-icon {
    font-size: 1.6rem;
}

.bonus-highlight-text {
    font-size: 0.88rem;
}

.bonus-highlight-text strong {
    font-size: 1.05rem;
    color: var(--color-green);
    display: block;
}

.wp-block-spacer, .wp-post-navigation, .wp-caption-text, .wp-image-caption {
    display: none !important;
}

.elementor-invisible {
    visibility: hidden;
}

.widget_text {
    display: none !important;
}

.wpcf7-not-valid-tip, .wpcf7-response-output {
    display: none !important;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal;
}

/* =====================  ===================== */
@media (max-width: 900px) {
    .header-nav {
        display: none;
    }

    .burger-btn {
        display: flex;
    }

    .online-badge {
        display: none;
    }

    .section {
        padding: 44px 0;
    }

    .app-block {
        flex-direction: column;
    }

    .footer-grid {
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .header-inner {
        height: 58px;
    }

    .header-logo img {
        height: 32px;
    }

    .slide {
        height: 260px;
    }

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

    .slide-sub {
        display: none;
    }

    .slide-actions .btn--lg {
        padding: 11px 20px;
        font-size: 0.9rem;
    }

    .pros-cons-grid {
        flex-direction: column;
    }

    .comment-form .form-row {
        flex-direction: column;
    }

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

    .footer-bottom {
        flex-direction: column;
    }

    .info-page-card {
        padding: 24px 18px;
    }

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

    .promo-widget {
        gap: 10px;
        padding-right: 36px;
    }

    .reel {
        width: 72px;
        height: 84px;
        font-size: 2.2rem;
    }
}

@media (max-width: 400px) {
    .header-actions .btn--sm {
        padding: 6px 10px;
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {

    #app {
        padding: 50px 0 !important;
    }

    #app .section-inner {
        padding: 0 16px;
    }

    #app .section-header {
        margin-bottom: 24px;
        text-align: center;
    }

    #app .section-label {
        font-size: 12px;
    }

    #app .section-title {
        font-size: 28px;
        line-height: 1.25;
        margin-bottom: 12px;
    }

    #app .section-desc {
        max-width: 100%;
        font-size: 14px;
        line-height: 1.7;
    }

    #app .app-block {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    #app .app-info,
    #app .app-download {
        width: 100%;
        min-width: 0;
    }

    #app .table-scroll {
        overflow-x: auto;
        border: 1px solid rgba(255, 255, 255, .08);
        border-radius: 14px;
        -webkit-overflow-scrolling: touch;
    }

    #app table {
        min-width: 560px;
        width: 100%;
    }

    #app th,
    #app td {
        padding: 12px 14px;
        font-size: 13px;
        white-space: nowrap;
    }

    #app .app-download {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    #app .download-btn {
        width: 100%;
        justify-content: flex-start;
        padding: 16px;
        border-radius: 14px;
    }

    #app .download-btn svg {
        width: 28px;
        height: 28px;
        flex-shrink: 0;
    }

    #app .download-btn-text {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    #app .download-btn-text small {
        font-size: 12px;
    }

    #app .download-btn-text strong {
        font-size: 16px;
    }

}

@media (max-width: 480px) {

    #app {
        padding: 40px 0 !important;
    }

    #app .section-inner {
        padding: 0 12px;
    }

    #app .section-title {
        font-size: 24px;
    }

    #app .section-desc {
        font-size: 13px;
    }

    #app table {
        min-width: 500px;
    }

    #app th,
    #app td {
        padding: 10px 12px;
        font-size: 12px;
    }

    #app .download-btn {
        padding: 14px;
    }

    #app .download-btn svg {
        width: 24px;
        height: 24px;
    }

    #app .download-btn-text strong {
        font-size: 15px;
    }

}