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

:root {
    --c-header: #372873;
    --c-header-alt: #2d1f63;
    --c-btn-primary: #ffce1c;
    --c-btn-primary-hover: #f0be00;
    --c-btn-secondary: #196d8f;
    --c-btn-secondary-hover: #145e7a;
    --c-bg: #1e1450;
    --c-bg-alt: #160e3e;
    --c-bg-card: #241a60;
    --c-bg-card2: #2a1f70;
    --c-text: #e8e4ff;
    --c-text-muted: #9b93cc;
    --c-accent: #ffce1c;
    --c-green: #2ecc71;
    --c-red: #e74c3c;
    --c-border: rgba(255, 255, 255, 0.1);
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
    --transition: 0.25s ease;
    --font: 'Roboto', sans-serif;
}

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

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

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

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

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

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

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

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

.container--full {
    max-width: 100%;
    padding: 0;
}

.box {
    padding: 0;
}

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

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 50px;
    font-family: var(--font);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    white-space: nowrap;
    line-height: 1;
}

.btn:active {
    transform: scale(0.97);
}

.btn--primary {
    background: var(--c-btn-primary);
    color: #1a1a1a;
}

.btn--primary:hover {
    background: var(--c-btn-primary-hover);
    color: #1a1a1a;
    box-shadow: 0 0 20px rgba(255, 206, 28, 0.45);
    transform: translateY(-1px);
}

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

.btn--secondary:hover {
    background: var(--c-btn-secondary-hover);
    color: #fff;
    box-shadow: 0 0 16px rgba(25, 109, 143, 0.4);
    transform: translateY(-1px);
}

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

.btn--outline:hover {
    background: var(--c-btn-primary);
    color: #1a1a1a;
}

.btn--lg {
    padding: 14px 34px;
    font-size: 16px;
}

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

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

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

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

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

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

.header-nav a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #c8c0f0;
    font-size: 13.5px;
    font-weight: 500;
    padding: 7px 11px;
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition);
}

.header-nav a:hover, .header-nav a.active {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

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

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

.header-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-right: 4px;
}

.online-counter {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    color: var(--c-text-muted);
    background: rgba(255, 255, 255, 0.07);
    padding: 5px 10px;
    border-radius: 50px;
    white-space: nowrap;
}

.online-counter .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--c-green);
    box-shadow: 0 0 6px var(--c-green);
    animation: pulse-dot 2s infinite;
}

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

.lang-selector {
    position: relative;
}

.lang-selector select {
    appearance: none;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 5px 28px 5px 10px;
    border-radius: 6px;
    font-size: 12.5px;
    cursor: pointer;
    font-family: var(--font);
}

.lang-selector::after {
    content: '▾';
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    pointer-events: none;
    font-size: 11px;
}

.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    padding: 8px;
}

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

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

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

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

/* ── HERO ── */
.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: center;
}

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

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(30, 20, 80, 0.92) 0%, rgba(30, 20, 80, 0.6) 60%, rgba(30, 20, 80, 0.2) 100%);
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 206, 28, 0.15);
    border: 1px solid rgba(255, 206, 28, 0.35);
    color: var(--c-accent);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(28px, 5vw, 52px);
    font-weight: 900;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 18px;
    text-balance: balance;
}

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

.hero-desc {
    font-size: 17px;
    color: rgba(232, 228, 255, 0.85);
    max-width: 520px;
    margin-bottom: 30px;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

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

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

.hero-stat strong {
    font-size: 22px;
    font-weight: 700;
    color: var(--c-accent);
}

.hero-stat span {
    font-size: 12px;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ── SECTION SHARED ── */
.section {
    padding: 64px 0;
}

.section--alt {
    background: var(--c-bg-alt);
}

.section-head {
    text-align: center;
    margin-bottom: 40px;
}

.section-head h2 {
    font-size: clamp(22px, 3.5vw, 34px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    text-balance: balance;
}

.section-head p {
    color: var(--c-text-muted);
    font-size: 15.5px;
    max-width: 560px;
    margin: 0 auto;
}

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

.pros-cons-card {
    background: var(--c-bg-card);
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid var(--c-border);
    box-shadow: var(--shadow);
}

.pros-cons-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pros-cons-card--pros h3 {
    color: var(--c-green);
}

.pros-cons-card--cons h3 {
    color: var(--c-red);
}

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

.pros-cons-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--c-text);
}

.pros-cons-list li::before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 1px;
    background-size: 12px;
    background-position: center;
    background-repeat: no-repeat;
}

.pros-cons-card--pros .pros-cons-list li::before {
    background-color: rgba(46, 204, 113, 0.15);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232ecc71' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

.pros-cons-card--cons .pros-cons-list li::before {
    background-color: rgba(231, 76, 60, 0.15);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e74c3c' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E");
}

/* ── SCREENSHOTS ── */
.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.screenshot-item {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--c-border);
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
    aspect-ratio: 16/10;
    background: var(--c-bg-card);
}

.screenshot-item:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

.screenshot-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity var(--transition);
}

.screenshot-slider {
    display: none;
}

/* ── WHEEL OF FORTUNE ── */
.wheel-section {
    background: var(--c-bg-alt);
}

.wheel-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.wheel-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.wheel-outer {
    position: relative;
    width: 300px;
    height: 300px;
}

#wof-canvas {
    display: block;
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(255, 206, 28, 0.3);
}

.wheel-pointer {
    position: absolute;
    top: 50%;
    right: -18px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    border-right: 28px solid var(--c-accent);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
    z-index: 2;
}

.wheel-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wheel-info h2 {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
}

.wheel-info h2 span {
    color: var(--c-accent);
}

.wheel-info p {
    color: var(--c-text-muted);
    font-size: 15px;
    line-height: 1.65;
}

.wheel-result {
    display: none;
    padding: 20px 24px;
    border-radius: var(--radius);
    text-align: center;
    animation: fadeInUp 0.4s ease;
}

.wheel-result--win {
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.35);
}

.wheel-result--lose {
    background: rgba(231, 76, 60, 0.08);
    border: 1px solid rgba(231, 76, 60, 0.25);
}

.wheel-result h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.wheel-result--win h4 {
    color: var(--c-green);
}

.wheel-result--lose h4 {
    color: var(--c-red);
}

.wheel-result p {
    font-size: 14px;
    color: var(--c-text-muted);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(12px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

/* ── CONTENT / REVIEW ── */
.review-section {
}

.review-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--c-border);
}

.review-author-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--c-accent);
    flex-shrink: 0;
}

.review-author-info {
}

.review-author-name {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.review-author-bio {
    font-size: 13px;
    color: var(--c-text-muted);
    margin-top: 3px;
}

.review-author-links {
    display: flex;
    gap: 10px;
    margin-top: 6px;
}

.review-author-links a {
    font-size: 12px;
    color: var(--c-btn-secondary);
    display: flex;
    align-items: center;
    gap: 4px;
}

.review-author-links a:hover {
    color: var(--c-accent);
}

.review-content-box {
    background: var(--c-bg-card);
    border-radius: var(--radius);
    padding: 36px 40px;
    border: 1px solid var(--c-border);
    box-shadow: var(--shadow);
}

.review-content-box h1,
.review-content-box h2,
.review-content-box h3,
.review-content-box h4,
.review-content-box h5,
.review-content-box h6 {
    color: #fff;
    margin-top: 28px;
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.3;
}

.review-content-box h1 {
    font-size: 28px;
}

.review-content-box h2 {
    font-size: 23px;
    border-bottom: 1px solid var(--c-border);
    padding-bottom: 8px;
}

.review-content-box h3 {
    font-size: 19px;
}

.review-content-box h4 {
    font-size: 16px;
}

.review-content-box p {
    margin-bottom: 16px;
    color: var(--c-text);
    font-size: 15.5px;
    line-height: 1.75;
}

.review-content-box ul,
.review-content-box ol {
    margin: 0 0 16px 20px;
    color: var(--c-text);
    font-size: 15px;
    line-height: 1.7;
}

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

.review-content-box a {
    color: var(--c-btn-secondary);
    text-decoration: underline;
}

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

.review-content-box table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 14.5px;
    display: block;
    overflow-x: auto;
}

.review-content-box th,
.review-content-box td {
    text-align: left;
    padding: 10px 14px;
    border: 1px solid var(--c-border);
}

.review-content-box th {
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
    font-weight: 600;
}

.review-content-box td {
    color: var(--c-text);
}

.review-content-box tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.03);
}

.review-content-box blockquote {
    margin: 20px 0;
    padding: 16px 20px;
    border-left: 4px solid var(--c-accent);
    background: rgba(255, 206, 28, 0.05);
    border-radius: 0 8px 8px 0;
    color: var(--c-text-muted);
    font-style: italic;
}

.review-content-box img {
    max-width: 100%;
    border-radius: 8px;
    margin: 16px 0;
}

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

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

.review-content-box hr {
    border: none;
    border-top: 1px solid var(--c-border);
    margin: 28px 0;
}

.review-content-box code {
    background: rgba(255, 255, 255, 0.08);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 13.5px;
}

.review-content-box pre {
    background: rgba(0, 0, 0, 0.3);
    padding: 16px;
    border-radius: 8px;
    overflow-x: auto;
    margin-bottom: 16px;
}

/* ── SECURITY BLOCK ── */
.security-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.security-card {
    background: var(--c-bg-card);
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid var(--c-border);
    transition: transform var(--transition), box-shadow var(--transition);
    text-align: center;
}

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

.security-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(25, 109, 143, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.security-icon svg {
    width: 28px;
    height: 28px;
    color: var(--c-btn-secondary);
}

.security-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.security-card p {
    font-size: 13.5px;
    color: var(--c-text-muted);
    line-height: 1.6;
}

.security-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    background: rgba(46, 204, 113, 0.12);
    border: 1px solid rgba(46, 204, 113, 0.3);
    color: var(--c-green);
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

/* ── RESPONSIBLE GAMBLING ── */
.rg-section {
    background: linear-gradient(135deg, #160e3e 0%, #1e1450 50%, #12183a 100%);
}

.rg-inner {
    border: 1px solid rgba(255, 206, 28, 0.2);
    border-radius: var(--radius);
    padding: 40px;
    background: rgba(255, 206, 28, 0.03);
}

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

.rg-icon {
    width: 52px;
    height: 52px;
    background: rgba(255, 206, 28, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rg-icon svg {
    width: 26px;
    height: 26px;
    color: var(--c-accent);
}

.rg-header h2 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}

.rg-header p {
    font-size: 13.5px;
    color: var(--c-text-muted);
    margin-top: 3px;
}

.rg-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 20px;
}

.rg-link-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    padding: 16px;
    text-align: center;
    transition: background var(--transition), border-color var(--transition);
}

.rg-link-card:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 206, 28, 0.3);
}

.rg-link-card span {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--c-text);
    margin-bottom: 4px;
}

.rg-link-card a {
    font-size: 12px;
    color: var(--c-btn-secondary);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.rg-ages {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--c-border);
    flex-wrap: wrap;
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(231, 76, 60, 0.15);
    border: 2px solid var(--c-red);
    font-weight: 900;
    font-size: 14px;
    color: var(--c-red);
    flex-shrink: 0;
}

.rg-ages p {
    font-size: 13px;
    color: var(--c-text-muted);
}

/* ── COMMENTS ── */
.comments-section {
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
}

.comment-card {
    background: var(--c-bg-card);
    border-radius: var(--radius);
    padding: 22px 24px;
    border: 1px solid var(--c-border);
}

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

.comment-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--c-header);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    color: var(--c-accent);
    flex-shrink: 0;
}

.comment-meta {
}

.comment-meta strong {
    font-size: 14.5px;
    color: #fff;
    font-weight: 600;
}

.comment-meta span {
    font-size: 12px;
    color: var(--c-text-muted);
    display: block;
}

.comment-stars {
    margin-left: auto;
    color: var(--c-accent);
    font-size: 14px;
}

.comment-body {
    font-size: 14.5px;
    color: var(--c-text);
    line-height: 1.65;
}

.comment-form {
    background: var(--c-bg-card);
    border-radius: var(--radius);
    padding: 32px;
    border: 1px solid var(--c-border);
}

.comment-form h3 {
    font-size: 19px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 22px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-field--full {
    grid-column: 1 / -1;
}

.form-field label {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--c-text-muted);
}

.form-field input,
.form-field textarea,
.form-field select {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    color: #fff;
    padding: 12px 14px;
    font-family: var(--font);
    font-size: 14.5px;
    transition: border-color var(--transition), box-shadow var(--transition);
    width: 100%;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    outline: none;
    border-color: var(--c-btn-secondary);
    box-shadow: 0 0 0 3px rgba(25, 109, 143, 0.2);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(155, 147, 204, 0.6);
}

.form-field select option {
    background: var(--c-bg-alt);
    color: var(--c-text);
}

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

.form-stars-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-star {
    font-size: 28px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.2);
    transition: color var(--transition), transform var(--transition);
    user-select: none;
}

.form-star.active, .form-star:hover {
    color: var(--c-accent);
    transform: scale(1.1);
}

.form-success {
    display: none;
    text-align: center;
    padding: 24px;
}

.form-success h4 {
    font-size: 20px;
    color: var(--c-green);
    margin-bottom: 8px;
}

.form-success p {
    color: var(--c-text-muted);
    font-size: 14.5px;
}

/* ── FOOTER ── */
.site-footer {
    background: var(--c-header);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 56px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 250px 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 14px;
}

.footer-desc {
    font-size: 13px;
    color: var(--c-text-muted);
    line-height: 1.65;
    margin-bottom: 14px;
}

.footer-flag {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: var(--c-text-muted);
}

.footer-flag .flag {
    font-size: 20px;
}

.footer-social {
    display: flex;
    gap: 8px;
    margin-top: 14px;
}

.footer-social a {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-text-muted);
    transition: background var(--transition), color var(--transition);
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

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

.footer-col h4 {
    font-size: 12.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 14px;
}

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

.footer-col ul li a {
    font-size: 13.5px;
    color: var(--c-text-muted);
    transition: color var(--transition);
}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-logos-row {
    padding: 28px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logos-row h4 {
    font-size: 11.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 14px;
}

.logos-flex {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.logo-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
}

.logo-badge--license {
    background: rgba(255, 206, 28, 0.08);
    border-color: rgba(255, 206, 28, 0.2);
    color: var(--c-accent);
}

.logo-badge--trust {
    background: rgba(46, 204, 113, 0.08);
    border-color: rgba(46, 204, 113, 0.2);
    color: var(--c-green);
}

.logo-badge--pay {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.75);
}

.footer-bottom {
    padding: 22px 0;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 16px;
}

.footer-copyright {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.6;
}

.footer-copyright a {
    color: rgba(255, 255, 255, 0.45);
}

.footer-copyright a:hover {
    color: rgba(255, 255, 255, 0.75);
}

.footer-legal {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-legal a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
}

.footer-legal a:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* ── STICKY WIDGET ── */
.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: linear-gradient(90deg, #1e1450 0%, #2d1f63 100%);
    border-top: 2px solid var(--c-accent);
    padding: 10px 16px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.5);
}

.sticky-widget-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.widget-text {
}

.widget-text strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}

.widget-text span {
    font-size: 12.5px;
    color: var(--c-text-muted);
}

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

.widget-close {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    font-size: 20px;
    padding: 4px;
    line-height: 1;
    transition: color var(--transition);
}

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

/* ── BREADCRUMB ── */
.breadcrumb-bar {
    background: var(--c-bg-alt);
    padding: 10px 0;
    border-bottom: 1px solid var(--c-border);
}

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

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

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

.breadcrumb span {
    color: rgba(255, 255, 255, 0.4);
}

.breadcrumb .active {
    color: #fff;
}

/* ── INFO PAGES ── */
.info-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 48px 0;
}

.info-content h1 {
    font-size: 30px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

.info-content h2 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 28px 0 12px;
}

.info-content p {
    color: var(--c-text);
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 16px;
}

.info-content ul {
    margin: 0 0 16px 20px;
    color: var(--c-text);
    font-size: 15px;
    line-height: 1.7;
}

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

.info-content a {
    color: var(--c-btn-secondary);
    text-decoration: underline;
}

/* ── ANIMATIONS ── */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.shimmer {
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.04) 50%, transparent 100%);
    background-size: 200% 100%;
    animation: shimmer 2.5s infinite;
}

[data-fade] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

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

/* ── UNUSED STUBS (unikalizatie) ── */
.b4r9-hidden, .x7k2-util, .z1m8-pseudo {
    display: none !important;
}

.wp-block-separator {
    border: none;
    height: 0;
    margin: 0;
}

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

.wp-image-stub {
    opacity: 0;
    pointer-events: none;
    position: absolute;
}

.elementor-hidden {
    visibility: hidden;
}

.wpcf7-response-output {
    display: none;
}

.nav-links {
    display: none;
}

.page-links {
    display: none;
}

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

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

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

    .wheel-wrap {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .wheel-outer {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .header-nav {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--c-header);
        padding: 16px;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        z-index: 999;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
        border-bottom: 1px solid var(--c-border);
    }

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

    .header-nav a {
        padding: 12px 14px;
        font-size: 14.5px;
    }

    .header-inner {
        grid-template-columns: auto 1fr auto;
    }

    .burger-btn {
        display: flex;
    }

    .header-meta {
        display: none;
    }


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

    .screenshots-grid {
        display: none;
    }

    .screenshot-slider {
        display: block;
    }

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

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

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

    .footer-bottom {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }

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

    .wheel-outer {
        width: 240px;
        height: 240px;
    }

    .wheel-outer #wof-canvas {
        width: 240px;
        height: 240px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .sticky-widget-inner {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

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

    .rg-inner {
        padding: 24px 18px;
    }

    body {
        padding-bottom: 90px;
    }
}

@media (max-width: 480px) {
    .rg-links {
        grid-template-columns: 1fr;
    }

    .hero-section {
        min-height: 360px;
    }

    .wheel-outer {
        width: 220px;
        height: 220px;
    }

    .wheel-outer #wof-canvas {
        width: 220px;
        height: 220px;
    }
}

/* ── SWIPER-LIKE SLIDER ── */
.slider-track-outer {
    overflow: hidden;
    border-radius: var(--radius);
}

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

.slider-track .screenshot-item {
    flex: 0 0 calc(100vw - 50px);
    max-width: 360px;
}

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

.slider-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.slider-dots {
    display: flex;
    gap: 6px;
}

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

.slider-dot.active {
    background: var(--c-accent);
    transform: scale(1.2);
}

html,
body {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.wrapper,
main,
.header,
.site-header,
.hero-section,
.breadcrumb-bar,
.site-footer {
    width: 100%;
    min-width: 0;
    max-width: 100%;
}

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

img,
svg,
video,
canvas,
iframe {
    max-width: 100%;
}

@media (max-width: 1024px) {

    .header-inner {
        gap: 10px;
        padding: 10px 14px;
    }

    .header-nav {
        gap: 2px;
    }

    .header-nav a {
        padding: 7px 8px;
        font-size: 12.5px;
    }

    .header-meta {
        display: none;
    }

    .section {
        padding: 52px 0;
    }

    .hero-content {
        padding: 52px 18px;
    }

    .hero-title {
        font-size: clamp(28px, 6vw, 44px);
    }

    .pros-cons-grid {
        gap: 18px;
    }

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

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

    .footer-top {
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap: 28px;
    }
}

@media (max-width: 768px) {

    body {
        padding-bottom: 0;
    }

    .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .header-inner {
        min-height: 62px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        padding: 8px 10px;
    }

    .header-logo {
        min-width: 0;
        flex: 0 1 auto;
    }

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

    .header-actions {
        margin-left: auto;
        gap: 7px;
        flex: 0 0 auto;
    }

    .header-actions .btn {
        min-height: 38px;
        padding: 8px 11px;
        font-size: 12px;
    }


    .header-meta {
        display: none !important;
    }

    .burger-btn {
        display: flex !important;
        width: 40px;
        height: 40px;
        min-width: 40px;
        padding: 9px;
        flex: 0 0 40px;
        z-index: 1002;
    }

    .header-nav {
        position: fixed;
        top: 62px;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: calc(100dvh - 62px);
        margin: 0;
        padding: 16px 12px 28px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 8px;
        background: #2d1f63;
        overflow-y: auto;
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        transform: translateX(-100%);
        transition: transform .28s ease, opacity .2s ease, visibility .28s ease;
        z-index: 1001;
    }

    .header-nav.open {
        display: flex;
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
        transform: translateX(0);
    }

    .header-nav a {
        width: 100%;
        min-height: 50px;
        padding: 13px 14px;
        justify-content: flex-start;
        color: #fff;
        background: rgba(255, 255, 255, .06);
        border: 1px solid rgba(255, 255, 255, .1);
        border-radius: 10px;
        font-size: 15px;
        white-space: normal;
    }

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

    body.menu-open {
        overflow: hidden;
    }

    .breadcrumb-bar {
        padding: 0;
    }

    .breadcrumb {
        width: 100%;
        min-width: 0;
        padding: 8px 0;
        font-size: 12px;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .hero-section {
        min-height: auto;
    }

    .hero-bg {
        background-position: center;
    }

    .hero-bg::after {
        background: linear-gradient(
                180deg,
                rgba(30, 20, 80, .88) 0%,
                rgba(30, 20, 80, .78) 55%,
                rgba(30, 20, 80, .9) 100%
        );
    }

    .hero-content {
        padding: 44px 14px 38px;
    }

    .hero-badge {
        max-width: 100%;
        margin-bottom: 14px;
        font-size: 11px;
        line-height: 1.35;
        white-space: normal;
    }

    .hero-title {
        font-size: 30px;
        line-height: 1.15;
        margin-bottom: 14px;
    }

    .hero-title br {
        display: none;
    }

    .hero-desc {
        max-width: 100%;
        margin-bottom: 22px;
        font-size: 15px;
        line-height: 1.6;
    }

    .hero-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .hero-actions .btn {
        width: 100%;
        min-height: 48px;
        padding: 12px 16px;
    }

    .hero-stats {
        display: grid;
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap: 10px;
        margin-top: 24px;
    }

    .hero-stat {
        padding: 12px 10px;
        align-items: center;
        text-align: center;
        background: rgba(255, 255, 255, .06);
        border: 1px solid rgba(255, 255, 255, .09);
        border-radius: 10px;
    }

    .hero-stat strong {
        font-size: 19px;
    }

    .hero-stat span {
        font-size: 10px;
    }

    .section {
        width: 100%;
        min-width: 0;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 42px 0 !important;
    }

    .section.section--alt,
    .section.rg-section {
        width: calc(100% + 24px);
        margin-left: -12px !important;
        margin-right: -12px !important;
        padding: 42px 12px !important;
    }

    .section-head {
        margin-bottom: 26px;
        padding: 0 2px;
    }

    .section-head h2 {
        font-size: 24px;
        line-height: 1.25;
    }

    .section-head p {
        font-size: 14px;
        line-height: 1.55;
    }

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

    .pros-cons-card {
        padding: 20px 16px;
    }

    .pros-cons-card h3 {
        font-size: 15px;
        margin-bottom: 14px;
    }

    .pros-cons-list {
        gap: 9px;
    }

    .pros-cons-list li {
        font-size: 14px;
    }

    .screenshots-grid {
        display: none;
    }

    .screenshot-slider {
        display: block;
        width: 100%;
        overflow: hidden;
    }

    .slider-track-outer {
        width: 100%;
        overflow: hidden;
    }

    .slider-track {
        width: max-content;
        max-width: none;
        gap: 12px;
    }

    .slider-track .screenshot-item {
        width: calc(100vw - 48px);
        max-width: 360px;
        flex: 0 0 calc(100vw - 48px);
    }

    .screenshot-item {
        aspect-ratio: 16/10;
    }

    .wheel-wrap {
        display: flex;
        flex-direction: column;
        gap: 28px;
    }

    .wheel-container,
    .wheel-info {
        width: 100%;
        min-width: 0;
    }

    .wheel-outer {
        width: 230px;
        height: 230px;
        margin: 0 auto;
    }

    .wheel-outer #wof-canvas {
        width: 230px !important;
        height: 230px !important;
    }

    .wheel-pointer {
        right: -12px;
        border-top-width: 11px;
        border-bottom-width: 11px;
        border-right-width: 22px;
    }

    .wheel-info {
        text-align: center;
        align-items: stretch;
    }

    .wheel-info h2 {
        font-size: 23px;
    }

    .wheel-info p {
        font-size: 14px;
    }

    .wheel-info > div[style*="grid-template-columns"] {
        grid-template-columns:1fr 1fr !important;
        gap: 10px !important;
    }

    .wheel-info .btn {
        width: 100%;
    }

    .review-header {
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 20px;
        padding-bottom: 18px;
    }

    .review-author-avatar {
        width: 50px;
        height: 50px;
        flex: 0 0 50px;
    }

    .review-author-info {
        min-width: 0;
    }

    .review-author-name {
        font-size: 15px;
    }

    .review-author-bio {
        font-size: 12px;
        line-height: 1.5;
    }

    .review-author-links {
        flex-wrap: wrap;
        gap: 7px;
    }

    .review-content-box {
        width: 100%;
        min-width: 0;
        padding: 20px 14px;
        overflow: hidden;
    }

    .review-content-box h1 {
        font-size: 24px;
    }

    .review-content-box h2 {
        font-size: 20px;
    }

    .review-content-box h3 {
        font-size: 17px;
    }

    .review-content-box p,
    .review-content-box li {
        font-size: 14px;
        line-height: 1.7;
        overflow-wrap: anywhere;
    }

    .review-content-box a {
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .review-content-box img,
    .review-content-box video,
    .review-content-box iframe {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    .review-content-box table {
        display: block;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .review-content-box table th,
    .review-content-box table td {
        min-width: 150px;
        padding: 9px 10px;
    }

    .security-grid {
        grid-template-columns:1fr;
        gap: 14px;
    }

    .security-card {
        padding: 20px 16px;
    }

    .security-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 13px;
    }

    .security-card p {
        font-size: 13.5px;
    }

    .rg-inner {
        padding: 22px 14px;
    }

    .rg-header {
        align-items: flex-start;
        gap: 11px;
        margin-bottom: 20px;
    }

    .rg-icon {
        width: 44px;
        height: 44px;
        flex: 0 0 44px;
    }

    .rg-header h2 {
        font-size: 19px;
        line-height: 1.25;
    }

    .rg-header p {
        font-size: 12.5px;
    }

    .rg-links {
        grid-template-columns:1fr;
        gap: 10px;
    }

    .rg-link-card {
        padding: 14px 12px;
    }

    .rg-ages {
        align-items: flex-start;
    }

    .comments-list {
        gap: 12px;
        margin-bottom: 24px;
    }

    .comment-card {
        padding: 18px 14px;
    }

    .comment-header {
        display: grid;
        grid-template-columns:auto minmax(0, 1fr);
        align-items: center;
        gap: 10px;
    }

    .comment-avatar {
        width: 38px;
        height: 38px;
        grid-row: 1/3;
    }

    .comment-meta {
        min-width: 0;
    }

    .comment-stars {
        grid-column: 2;
        margin-left: 0;
        font-size: 13px;
    }

    .comment-body {
        font-size: 14px;
        line-height: 1.65;
    }

    .comment-form {
        padding: 22px 14px;
    }

    .form-grid {
        grid-template-columns:1fr;
        gap: 14px;
    }

    .form-field--full {
        grid-column: auto;
    }

    .form-field input,
    .form-field textarea,
    .form-field select {
        width: 100%;
        min-width: 0;
        font-size: 16px;
    }

    .comment-form form > div:last-child {
        flex-direction: column;
        align-items: stretch !important;
        gap: 10px !important;
    }

    .comment-form form > div:last-child .btn {
        width: 100%;
    }

    .footer-top {
        grid-template-columns:1fr;
        gap: 26px;
        padding-bottom: 28px;
    }

    .site-footer {
        padding-top: 40px;
    }

    .footer-col {
        min-width: 0;
    }

    .footer-social,
    .logos-flex {
        flex-wrap: wrap;
    }

    .logo-badge {
        white-space: normal;
        text-align: center;
    }

    .footer-bottom {
        grid-template-columns:1fr;
        gap: 14px;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
        gap: 10px 14px;
    }

    .sticky-widget {
        padding: 9px 10px;
    }

    .sticky-widget-inner {
        display: grid;
        grid-template-columns:minmax(0, 1fr) auto;
        align-items: center;
        gap: 8px;
        text-align: left;
    }

    .widget-text {
        min-width: 0;
    }

    .widget-text strong {
        font-size: 12px;
        line-height: 1.3;
    }

    .widget-text span {
        display: none;
    }

    .widget-actions {
        gap: 6px;
    }

    .widget-actions .btn {
        padding: 9px 12px;
        font-size: 12px;
    }

    .widget-close {
        font-size: 19px;
    }
}

@media (max-width: 480px) {


    .header-logo img {
        max-width: 100px;
        height: 34px;
    }

    .hero-content {
        padding: 36px 12px 32px;
    }

    .hero-title {
        font-size: 26px;
    }

    .hero-desc {
        font-size: 14px;
    }

    .hero-stats {
        grid-template-columns:1fr 1fr;
        gap: 8px;
    }

    .section {
        padding-top: 34px !important;
        padding-bottom: 34px !important;
    }

    .section-head {
        margin-bottom: 22px;
    }

    .section-head h2 {
        font-size: 21px;
    }

    .pros-cons-card,
    .security-card,
    .comment-card {
        padding: 17px 13px;
    }

    .wheel-outer {
        width: 205px;
        height: 205px;
    }

    .wheel-outer #wof-canvas {
        width: 205px !important;
        height: 205px !important;
    }

    .wheel-info > div[style*="grid-template-columns"] {
        grid-template-columns:1fr !important;
    }

    .review-header {
        flex-direction: column;
    }

    .review-author-avatar {
        width: 54px;
        height: 54px;
    }

    .review-content-box {
        padding: 18px 12px;
    }

    .review-content-box table th,
    .review-content-box table td {
        min-width: 135px;
        padding: 8px 9px;
        font-size: 13px;
    }

    .rg-header {
        flex-direction: column;
    }

    .comment-header {
        grid-template-columns:auto minmax(0, 1fr);
    }

    .sticky-widget-inner {
        grid-template-columns:minmax(0, 1fr) auto;
    }

    .widget-actions .btn {
        padding: 8px 10px;
    }
}

.site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 99999 !important;
}

body {
    padding-top: 68px;
}

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

    .header-nav {
        top: 62px !important;
    }
}