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

:root {
    --clr-header: #0F3D2E;
    --clr-header-dark: #0a2d20;
    --clr-btn-yellow: #FFD84D;
    --clr-btn-yellow-hover: #f0c830;
    --clr-btn-red: #FF3B3F;
    --clr-btn-red-hover: #e02f33;
    --clr-bg: #1A1A2E;
    --clr-bg-card: #16213E;
    --clr-bg-card2: #0F3460;
    --clr-text: #e8e8f0;
    --clr-text-muted: #9999bb;
    --clr-accent: #FFD84D;
    --clr-green: #2ecc71;
    --clr-border: rgba(255, 216, 77, 0.15);
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    --shadow-card: 0 2px 16px rgba(0, 0, 0, 0.3);
    --transition: 0.25s ease;
    --font-heading: 'Montserrat', 'Oswald', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --font-display: 'Fredoka', 'Montserrat', sans-serif;
}

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

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

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

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

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

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

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

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

.box {
    width: 100%;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.875rem;
    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.3);
}

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

.btn--yellow {
    background: var(--clr-btn-yellow);
    color: #1A1A2E;
}

.btn--yellow:hover {
    background: var(--clr-btn-yellow-hover);
    color: #1A1A2E;
}

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

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

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

.btn--outline:hover {
    background: var(--clr-btn-yellow);
    color: #1A1A2E;
}

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

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

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

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

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

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

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

/* ===== HEADER ===== */
.site-header {
    background: var(--clr-header);
    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;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 20px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

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

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

.header-logo span {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--clr-accent);
    letter-spacing: 1px;
}

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

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

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

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

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

.online-counter {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: #a8d5a2;
    white-space: nowrap;
    padding: 5px 10px;
    background: rgba(46, 204, 113, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(46, 204, 113, 0.2);
}

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

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

.lang-dropdown {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 0.82rem;
    font-family: var(--font-body);
    transition: background var(--transition);
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.14);
}

.lang-flag {
    font-size: 1rem;
}

.lang-menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: var(--clr-header-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    min-width: 140px;
    display: none;
    z-index: 200;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.lang-menu.open {
    display: block;
}

.lang-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    color: #c8e6c9;
    font-size: 0.85rem;
    transition: background var(--transition);
}

.lang-menu a:hover {
    background: rgba(255, 216, 77, 0.1);
    color: var(--clr-accent);
}

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

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

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

.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: 540px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a1628 0%, #1A1A2E 40%, #0F3D2E 100%);
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(26, 26, 46, 0.92) 0%, rgba(26, 26, 46, 0.5) 60%, transparent 100%);
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 216, 77, 0.15);
    border: 1px solid rgba(255, 216, 77, 0.3);
    color: var(--clr-accent);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 16px;
}

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

.hero-desc {
    color: #c8d8cc;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 500px;
}

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

.hero-stats {
    display: flex;
    gap: 24px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat-val {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--clr-accent);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.75rem;
    color: #9ba8a0;
    margin-top: 2px;
}

/* ===== ADVANTAGES ===== */
.advantages {
    padding: 70px 0;
}

.advantages-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 2rem;
}

.adv-card {
    flex: 1 1 220px;
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 28px 22px;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    position: relative;
    overflow: hidden;
}

.adv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--clr-accent), var(--clr-btn-red));
    opacity: 0;
    transition: opacity var(--transition);
}

.adv-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: rgba(255, 216, 77, 0.3);
}

.adv-card:hover::before {
    opacity: 1;
}

.adv-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 216, 77, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.adv-icon svg {
    width: 24px;
    height: 24px;
    color: var(--clr-accent);
}

.adv-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.adv-text {
    font-size: 0.875rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
}

/* ===== SCREENSHOTS ===== */
.screenshots {
    padding: 70px 0;
    background: rgba(15, 61, 46, 0.15);
}

.screenshots-grid {
    display: flex;
    gap: 16px;
    margin-top: 2rem;
}

.screenshot-item {
    flex: 1;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--clr-border);
    box-shadow: var(--shadow-card);
    position: relative;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
}

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

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

.screenshot-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 46, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}

.screenshot-item:hover .screenshot-overlay {
    opacity: 1;
}

.screenshot-overlay svg {
    width: 40px;
    height: 40px;
    color: #fff;
}

.screenshots-slider {
    display: none;
}

/* ===== APP INFO ===== */
.app-info {
    padding: 70px 0;
}

.app-info-inner {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.app-table-wrap {
    flex: 1 1 500px;
    overflow-x: auto;
}

.app-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--clr-bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--clr-border);
}

.app-table th,
.app-table td {
    padding: 12px 18px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.9rem;
}

.app-table th {
    background: rgba(15, 61, 46, 0.6);
    color: var(--clr-accent);
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.8rem;
}

.app-table td {
    color: var(--clr-text);
}

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

.app-table tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.02);
}

.app-table tr:hover td {
    background: rgba(255, 216, 77, 0.04);
}

.app-downloads {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 220px;
}

.app-downloads-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.dl-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 12px 18px;
    color: #fff;
    text-decoration: none;
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.dl-btn:hover {
    background: rgba(255, 216, 77, 0.08);
    border-color: rgba(255, 216, 77, 0.3);
    transform: translateY(-2px);
    color: #fff;
}

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

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

.dl-btn-sub {
    font-size: 0.7rem;
    color: var(--clr-text-muted);
}

.dl-btn-name {
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font-heading);
}

/* ===== DEMO ===== */
.demo-section {
    padding: 70px 0;
    background: rgba(15, 61, 46, 0.15);
}

.demo-wrap {
    background: var(--clr-bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--clr-border);
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

.demo-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
}

.demo-actions {
    display: flex;
    gap: 10px;
}

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

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

.demo-notice {
    padding: 12px 24px;
    background: rgba(255, 216, 77, 0.06);
    border-top: 1px solid rgba(255, 216, 77, 0.1);
    font-size: 0.82rem;
    color: var(--clr-text-muted);
    text-align: center;
}

/* ===== REVIEWS ===== */
.reviews-section {
    padding: 70px 0;
}

.reviews-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 2rem;
}

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

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-card);
}

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

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr-header), var(--clr-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--clr-bg);
    flex-shrink: 0;
    overflow: hidden;
}

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

.review-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
}

.review-date {
    font-size: 0.75rem;
    color: var(--clr-text-muted);
    margin-top: 2px;
}

.stars {
    display: flex;
    gap: 2px;
    margin-bottom: 10px;
}

.stars svg {
    width: 16px;
    height: 16px;
    color: var(--clr-accent);
    fill: var(--clr-accent);
}

.review-text {
    font-size: 0.875rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
}

.review-form-wrap {
    margin-top: 40px;
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 32px;
    max-width: 600px;
}

.review-form-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

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

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: #a0b8b0;
    margin-bottom: 6px;
}

.form-input,
.form-textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    padding: 11px 14px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: border-color var(--transition), background var(--transition);
    outline: none;
}

.form-input:focus,
.form-textarea:focus {
    border-color: rgba(255, 216, 77, 0.5);
    background: rgba(255, 255, 255, 0.07);
}

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

.form-success {
    display: none;
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.3);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    color: var(--clr-green);
    font-size: 0.9rem;
    margin-top: 14px;
}

.form-success.visible {
    display: block;
}

/* ===== CONTENT BLOCK ===== */
.content-block {
    padding: 70px 0;
}

.content-inner {
    background: var(--clr-bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--clr-border);
    padding: 36px;
}

.content-inner h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin: 1.5rem 0 0.75rem;
    line-height: 1.3;
}

.content-inner h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--clr-accent);
    margin: 1.2rem 0 0.6rem;
}

.content-inner p {
    color: var(--clr-text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}

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

.content-inner li {
    color: var(--clr-text-muted);
    line-height: 1.7;
    margin-bottom: 0.4rem;
}

.content-inner table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.content-inner th {
    background: rgba(15, 61, 46, 0.6);
    color: var(--clr-accent);
    padding: 10px 14px;
    text-align: left;
    font-size: 0.85rem;
    font-weight: 700;
}

.content-inner td {
    padding: 10px 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.9rem;
    color: var(--clr-text);
}

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

.content-inner strong {
    color: #fff;
}

/* ===== AUTHOR ===== */
.author-block {
    margin-top: 28px;
    padding: 22px 24px;
    background: rgba(15, 61, 46, 0.25);
    border-left: 3px solid var(--clr-accent);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr-header), var(--clr-btn-yellow));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--clr-bg);
    flex-shrink: 0;
    font-family: var(--font-heading);
}

.author-info {
}

.author-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

.author-role {
    font-size: 0.82rem;
    color: var(--clr-text-muted);
    margin: 2px 0 6px;
    line-height: 1.4;
}

.author-link {
    font-size: 0.8rem;
    color: var(--clr-accent);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* ===== FAQ ===== */
.faq-section {
    padding: 70px 0;
    background: rgba(15, 61, 46, 0.15);
}

.faq-list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    color: #fff;
    gap: 12px;
    user-select: none;
    transition: background var(--transition);
}

.faq-question:hover {
    background: rgba(255, 216, 77, 0.05);
}

.faq-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(255, 216, 77, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-accent);
    transition: transform var(--transition);
}

.faq-icon svg {
    width: 12px;
    height: 12px;
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
    background: rgba(255, 216, 77, 0.2);
}

.faq-answer {
    display: none;
    padding: 0 20px 16px;
    font-size: 0.875rem;
    color: var(--clr-text-muted);
    line-height: 1.7;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-item.open .faq-answer {
    display: block;
}

/* ===== PROS/CONS ===== */
.pros-cons {
    padding: 70px 0;
}

.pros-cons-grid {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.pros-box, .cons-box {
    flex: 1 1 300px;
    background: var(--clr-bg-card);
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid var(--clr-border);
}

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

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

.pc-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.cons-box .pc-title {
    color: var(--clr-btn-red);
}

.pc-list {
    list-style: none;
}

.pc-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 7px 0;
    font-size: 0.875rem;
    color: var(--clr-text-muted);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    line-height: 1.5;
}

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

.pc-list svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    margin-top: 2px;
}

.pros-box .pc-list svg {
    color: var(--clr-green);
}

.cons-box .pc-list svg {
    color: var(--clr-btn-red);
}

/* ===== CASINOS ===== */
.casinos-section {
    padding: 70px 0;
    background: rgba(15, 61, 46, 0.15);
}

.casinos-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 2rem;
}

.casino-card {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.casino-card:hover {
    border-color: rgba(255, 216, 77, 0.3);
    box-shadow: var(--shadow-card);
}

.casino-rank {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: rgba(255, 216, 77, 0.3);
    min-width: 36px;
    text-align: center;
}

.casino-logo-wrap {
    width: 80px;
    height: 50px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.casino-logo-wrap img {
    max-width: 70px;
    max-height: 40px;
    object-fit: contain;
}

.casino-info {
    flex: 1;
    min-width: 180px;
}

.casino-name {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.casino-bonus {
    font-size: 0.85rem;
    color: var(--clr-green);
    font-weight: 600;
}

.casino-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 4px;
}

.casino-rating svg {
    width: 13px;
    height: 13px;
    color: var(--clr-accent);
    fill: var(--clr-accent);
}

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

.casino-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--clr-header-dark);
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-top {
    padding: 48px 0 32px;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1 1 200px;
}

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

.footer-logo span {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--clr-accent);
}

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

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

.footer-col-title {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.footer-links a {
    font-size: 0.85rem;
    color: #8aabaa;
    transition: color var(--transition);
}

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

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

.pay-badge {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 5px 10px;
    font-size: 0.75rem;
    color: #aaa;
    font-weight: 600;
    letter-spacing: 0.5px;
}

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

.lic-badge {
    background: rgba(46, 204, 113, 0.07);
    border: 1px solid rgba(46, 204, 113, 0.2);
    border-radius: 6px;
    padding: 5px 10px;
    font-size: 0.72rem;
    color: #8cd9a4;
    font-weight: 600;
    letter-spacing: 0.3px;
}

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

.footer-provider {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: var(--clr-text-muted);
}

.footer-provider img {
    height: 24px;
    opacity: 0.7;
}

.footer-copyright {
    font-size: 0.78rem;
    color: #667;
    line-height: 1.5;
}

.footer-legal {
    font-size: 0.72rem;
    color: #556;
    margin-top: 6px;
    line-height: 1.4;
}

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

/* ===== WIDGET ===== */
.promo-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(90deg, var(--clr-header-dark) 0%, #0a2820 100%);
    border-top: 2px solid var(--clr-btn-red);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    flex-wrap: wrap;
}

.widget-text {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 200px;
}

.widget-bonus {
    display: flex;
    flex-direction: column;
}

.widget-bonus-title {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.widget-bonus-amount {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--clr-accent);
    line-height: 1.1;
}

.widget-bonus-sub {
    font-size: 0.72rem;
    color: #6a8a74;
}

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

.widget-close {
    background: none;
    border: none;
    color: #556;
    cursor: pointer;
    padding: 4px;
    font-size: 1.2rem;
    line-height: 1;
    transition: color var(--transition);
    flex-shrink: 0;
}

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

.widget-hidden {
    display: none !important;
}

/* ===== TECHNICAL PAGES ===== */
.technical-content {
    padding: 48px 0 70px;
}

.technical-content .content-inner h1 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.5rem;
}

/* ===== SECTION TRANSITION ===== */
.section-wave {
    height: 40px;
    overflow: hidden;
    line-height: 0;
}

.section-wave svg {
    display: block;
    width: 100%;
}

/* ===== MISC WORDPRESS-STYLE ELEMENTS ===== */
.wp-block-group {
    display: block;
}

.wp-block-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.has-small-font-size {
    font-size: 0.8125em;
}

.has-medium-font-size {
    font-size: 1em;
}

.has-large-font-size {
    font-size: 1.5em;
}

.wp-element-caption {
    font-size: 0.8rem;
    color: #666;
    margin-top: 4px;
}

.entry-content {
    display: block;
}

.entry-meta {
    display: none;
}

.site-main {
    display: block;
}

.hentry {
    display: block;
}

.post-thumbnail {
    display: block;
}

.aligncenter {
    margin: 0 auto;
    display: block;
}

.alignleft {
    float: left;
    margin-right: 16px;
}

.alignright {
    float: right;
    margin-left: 16px;
}

.wp-caption {
    max-width: 100%;
}

.screen-reader-text {
    position: absolute;
    left: -9999px;
}

/* ===== MOBILE NAV OVERLAY ===== */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 900;
}

.mobile-nav-overlay.open {
    display: block;
}

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

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

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

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

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

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .header-nav {
        display: none;
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        background: var(--clr-header-dark);
        flex-direction: column;
        padding: 12px 0 16px;
        z-index: 950;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        align-items: flex-start;
        gap: 0;
    }

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

    .header-nav a {
        padding: 10px 20px;
        width: 100%;
        border-radius: 0;
        font-size: 0.95rem;
    }

    .burger {
        display: flex;
    }

    .online-counter {
        display: none;
    }
}

@media (max-width: 700px) {
    .screenshots-grid {
        display: none;
    }

    .screenshots-slider {
        display: block;
    }

    .slider-container {
        position: relative;
        overflow: hidden;
        border-radius: var(--radius);
    }

    .slider-track {
        display: flex;
        transition: transform 0.4s ease;
    }

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

    .slider-slide img {
        width: 100%;
        height: 240px;
        object-fit: cover;
    }

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

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

    .slider-dot.active {
        background: var(--clr-accent);
    }

    .app-info-inner {
        flex-direction: column;
    }

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

    .hero {
        min-height: 440px;
    }

    .hero-overlay {
        background: linear-gradient(180deg, rgba(26, 26, 46, 0.8) 0%, rgba(26, 26, 46, 0.9) 100%);
    }

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

    .promo-widget {
        flex-direction: column;
        align-items: flex-start;
    }

    .casino-card {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .header-buttons .btn {
        padding: 7px 12px;
        font-size: 0.75rem;
    }

    .reviews-grid {
        flex-direction: column;
    }

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

    .advantages-grid {
        flex-direction: column;
    }

    .review-form-wrap {
        padding: 20px;
    }
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

body {
    padding-top: 82px;
}

.header-inner {
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    body {
        padding-top: 72px;
    }

    .site-header {
        z-index: 100000;
    }

    .header-inner {
        min-height: 72px;
    }
}

@media (max-width: 768px) {
    .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: nowrap;
        gap: 8px;
    }

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

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

    .header-right {
        display: flex;
        align-items: center;
        gap: 6px;
        margin-left: auto;
        flex-shrink: 0;
    }

    .online-counter {
        display: none;
    }

    .header-buttons {
        display: flex;
        align-items: center;
        gap: 6px;
        flex-wrap: nowrap;
    }

    .header-buttons .btn {
        min-height: 34px;
        padding: 8px 10px;
        font-size: 11px;
        white-space: nowrap;
        border-radius: 8px;
    }

    .burger {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .header-logo img {
        height: 30px;
        max-width: 100px;
    }

    .header-buttons .btn {
        padding: 7px 8px;
        font-size: 10px;
    }

    .burger {
        width: 34px;
        height: 34px;
    }
}