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

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

:root {
    --clr-header: #343a6c;
    --clr-footer: #343a6c;
    --clr-bg: #0e112b;
    --clr-bg2: #131736;
    --clr-bg3: #1a1f45;
    --clr-primary: #1abd8c;
    --clr-secondary: #848cc9;
    --clr-text: #e8eaf6;
    --clr-text-muted: #a0a8d4;
    --clr-border: #2a2f5c;
    --clr-card: #1c2248;
    --radius: 12px;
    --radius-sm: 8px;
    --transition: 0.25s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', Arial, sans-serif;
    background-color: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.6;
    font-size: 15px;
    overflow-x: hidden;
}

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

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

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

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

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

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

.box {
    width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--clr-text);
}

h1 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(1.3rem, 2.5vw, 1.9rem);
    margin-bottom: 0.8rem;
}

h3 {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    margin-bottom: 0.6rem;
}

p {
    margin-bottom: 0.9rem;
    line-height: 1.7;
}

ul, ol {
    padding-left: 1.5rem;
    margin-bottom: 0.9rem;
}

li {
    margin-bottom: 0.3rem;
    line-height: 1.6;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
}

th, td {
    padding: 10px 14px;
    border: 1px solid var(--clr-border);
    text-align: left;
    vertical-align: top;
}

th {
    background: var(--clr-bg3);
    color: var(--clr-secondary);
    font-weight: 600;
}

tr:nth-child(even) td {
    background: rgba(26, 31, 69, 0.4);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
    white-space: nowrap;
    text-decoration: none;
}

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

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

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

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

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

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

.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;
}

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

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

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

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

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

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    color: var(--clr-text);
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition);
    white-space: nowrap;
}

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

.nav-link:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--clr-primary);
}

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

.online-counter {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--clr-text-muted);
    white-space: nowrap;
}

.online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--clr-primary);
    animation: pulse 2s infinite;
    flex-shrink: 0;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.4;
    }
}

.lang-select {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.lang-select select {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--clr-border);
    color: var(--clr-text);
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 12px;
    cursor: pointer;
    outline: none;
    appearance: none;
    padding-right: 24px;
}

.lang-select::after {
    content: '▾';
    position: absolute;
    right: 8px;
    pointer-events: none;
    color: var(--clr-text-muted);
    font-size: 11px;
}

.burger {
    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 span {
    display: block;
    height: 2px;
    background: var(--clr-text);
    border-radius: 2px;
    transition: all var(--transition);
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('/hero-pc.jpg') center/cover no-repeat;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(14, 17, 43, 0.92) 0%, rgba(14, 17, 43, 0.65) 60%, rgba(14, 17, 43, 0.3) 100%);
    z-index: 1;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(26, 189, 140, 0.15);
    border: 1px solid rgba(26, 189, 140, 0.4);
    color: var(--clr-primary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.2;
}

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

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

.hero-bonus-box {
    background: rgba(26, 31, 69, 0.8);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 16px 20px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.hero-bonus-icon {
    width: 48px;
    height: 48px;
    background: var(--clr-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-bonus-icon svg {
    width: 24px;
    height: 24px;
    color: #fff;
}

.hero-bonus-text {
    flex: 1;
}

.hero-bonus-text strong {
    display: block;
    font-size: 1.2rem;
    color: var(--clr-primary);
    font-weight: 800;
}

.hero-bonus-text span {
    font-size: 13px;
    color: var(--clr-text-muted);
}

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

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

.section--dark {
    background: var(--clr-bg2);
}

.section--card {
    background: var(--clr-bg3);
}

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

.section-title h2 {
    color: var(--clr-text);
}

.section-title p {
    color: var(--clr-text-muted);
    font-size: 15px;
    max-width: 560px;
    margin: 8px auto 0;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: var(--clr-primary);
    margin: 12px auto;
    border-radius: 2px;
}

/* ===== INFO TABLE ===== */
.info-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--clr-border);
    margin-bottom: 24px;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--clr-card);
}

.info-table td {
    padding: 13px 18px;
    border-bottom: 1px solid var(--clr-border);
    border-left: none;
    border-right: none;
    border-top: none;
    font-size: 14px;
    vertical-align: middle;
}

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

.info-table td:first-child {
    width: 45%;
    color: var(--clr-text-muted);
    font-weight: 600;
    background: rgba(26, 31, 69, 0.3);
    border-right: 1px solid var(--clr-border);
}

.info-table .param-label {
    display: flex;
    align-items: center;
    gap: 10px;
}

.param-icon {
    width: 28px;
    height: 28px;
    background: rgba(132, 140, 201, 0.15);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--clr-secondary);
}

.param-icon svg {
    width: 15px;
    height: 15px;
}

.info-table td:last-child {
    color: var(--clr-text);
    font-weight: 500;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tag {
    background: rgba(132, 140, 201, 0.15);
    color: var(--clr-secondary);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.tag--green {
    background: rgba(26, 189, 140, 0.15);
    color: var(--clr-primary);
}

/* ===== SCREENSHOTS ===== */
.screenshots-grid {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

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

.screenshot-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

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

.screenshot-overlay {
    position: absolute;
    inset: 0;
    background: rgba(14, 17, 43, 0.5);
    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;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
}

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

.slider-track .screenshot-item {
    flex: 0 0 100%;
    min-width: 100%;
    border-radius: 0;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(52, 58, 108, 0.85);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background var(--transition);
}

.slider-btn:hover {
    background: var(--clr-primary);
}

.slider-btn--prev {
    left: 12px;
}

.slider-btn--next {
    right: 12px;
}

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

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--clr-border);
    border: none;
    cursor: pointer;
    transition: background var(--transition);
    padding: 0;
}

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

/* ===== WHEEL GAME ===== */
.wheel-section {
    text-align: center;
}

.wheel-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    padding: 40px 20px;
    background: var(--clr-card);
    border-radius: var(--radius);
    border: 1px solid var(--clr-border);
    max-width: 480px;
    margin: 0 auto;
}

.wheel-container {
    position: relative;
    width: 260px;
    height: 260px;
}

#wheelCanvas {
    border-radius: 50%;
    display: block;
}

.wheel-pointer {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 24px solid var(--clr-primary);
    filter: drop-shadow(0 2px 6px rgba(26, 189, 140, 0.6));
}

.wheel-result {
    min-height: 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.wheel-result-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--clr-primary);
}

.wheel-result-text.loss {
    color: var(--clr-secondary);
}

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

.review-content h1,
.review-content h2,
.review-content h3,
.review-content h4,
.review-content h5,
.review-content h6 {
    color: var(--clr-text);
    margin-top: 1.8rem;
    margin-bottom: 0.6rem;
}

.review-content h2 {
    color: var(--clr-secondary);
    border-bottom: 1px solid var(--clr-border);
    padding-bottom: 8px;
}

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

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

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

.review-content ul, .review-content ol {
    color: var(--clr-text);
    margin-bottom: 1rem;
    padding-left: 1.6rem;
}

.review-content li {
    margin-bottom: 5px;
    line-height: 1.7;
}

.review-content table {
    margin: 1.2rem 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.review-content th {
    background: var(--clr-bg3);
    color: var(--clr-secondary);
    padding: 10px 16px;
}

.review-content td {
    padding: 10px 16px;
    border: 1px solid var(--clr-border);
    color: var(--clr-text);
    background: var(--clr-card);
}

.review-content blockquote {
    border-left: 3px solid var(--clr-primary);
    padding: 12px 20px;
    background: rgba(26, 189, 140, 0.06);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 1rem 0;
    color: var(--clr-text-muted);
    font-style: italic;
}

.review-content strong {
    color: var(--clr-primary);
}

.review-content em {
    color: var(--clr-secondary);
}

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

.author-box {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: rgba(26, 31, 69, 0.5);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 32px;
}

.author-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--clr-secondary);
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--clr-text);
    margin-bottom: 4px;
}

.author-title {
    font-size: 12px;
    color: var(--clr-primary);
    font-weight: 600;
    margin-bottom: 8px;
}

.author-bio {
    font-size: 13px;
    color: var(--clr-text-muted);
    line-height: 1.6;
    margin-bottom: 8px;
}

.author-link {
    font-size: 12px;
    color: var(--clr-secondary);
    font-weight: 600;
}

/* ===== SECURITY ===== */
.security-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.security-card {
    flex: 1 1 calc(33.33% - 12px);
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 24px;
    transition: border-color var(--transition), transform var(--transition);
}

.security-card:hover {
    border-color: var(--clr-primary);
    transform: translateY(-3px);
}

.security-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(26, 189, 140, 0.12);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    color: var(--clr-primary);
}

.security-card-icon svg {
    width: 24px;
    height: 24px;
}

.security-card h3 {
    font-size: 1rem;
    color: var(--clr-text);
    margin-bottom: 8px;
}

.security-card p {
    font-size: 13px;
    color: var(--clr-text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ===== RESPONSIBLE GAMING ===== */
.resp-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.resp-card {
    flex: 1 1 calc(50% - 10px);
    background: var(--clr-card);
    border: 1px solid rgba(132, 140, 201, 0.3);
    border-left: 4px solid var(--clr-secondary);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 20px;
}

.resp-card h3 {
    font-size: 1rem;
    color: var(--clr-secondary);
    margin-bottom: 8px;
}

.resp-card p {
    font-size: 13px;
    color: var(--clr-text-muted);
    margin-bottom: 10px;
    line-height: 1.6;
}

.resp-card a {
    font-size: 13px;
    font-weight: 600;
    color: var(--clr-primary);
}

.resp-card a:hover {
    color: var(--clr-secondary);
}

.resp-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.resp-link-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    color: var(--clr-text);
    transition: border-color var(--transition), color var(--transition);
}

.resp-link-item:hover {
    border-color: var(--clr-primary);
    color: var(--clr-primary);
}

.resp-link-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--clr-secondary);
}

/* ===== REVIEWS ===== */
.reviews-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.review-card {
    flex: 1 1 calc(33.33% - 14px);
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 24px;
    transition: border-color var(--transition), transform var(--transition);
}

.review-card:hover {
    border-color: var(--clr-secondary);
    transform: translateY(-3px);
}

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

.review-card-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--clr-border);
}

.review-card-meta {
    flex: 1;
}

.review-card-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--clr-text);
    margin-bottom: 4px;
}

.review-stars {
    display: flex;
    gap: 3px;
}

.review-stars svg {
    width: 14px;
    height: 14px;
}

.review-card-text {
    font-size: 13px;
    color: var(--clr-text-muted);
    line-height: 1.7;
}

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

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

.review-form-wrap h3 {
    margin-bottom: 20px;
    color: var(--clr-text);
}

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

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--clr-text-muted);
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(26, 31, 69, 0.5);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 11px 14px;
    color: var(--clr-text);
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--clr-secondary);
}

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

.form-success {
    display: none;
    background: rgba(26, 189, 140, 0.1);
    border: 1px solid rgba(26, 189, 140, 0.4);
    border-radius: var(--radius-sm);
    padding: 16px;
    color: var(--clr-primary);
    font-weight: 600;
    text-align: center;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--clr-footer);
    margin-top: auto;
}

.footer-top {
    padding: 48px 0 32px;
}

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

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

.footer-col--wide {
    flex: 2 1 300px;
}

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

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

.footer-desc {
    font-size: 13px;
    color: var(--clr-text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

.footer-country {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--clr-text-muted);
    margin-bottom: 12px;
}

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

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 8px;
    transition: background var(--transition), color var(--transition);
    color: var(--clr-text-muted);
}

.social-link:hover {
    background: var(--clr-primary);
    color: #fff;
}

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

.footer-heading {
    font-size: 12px;
    font-weight: 700;
    color: var(--clr-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

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

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

.footer-nav a {
    font-size: 13px;
    color: var(--clr-text-muted);
    transition: color var(--transition);
}

.footer-nav a:hover {
    color: var(--clr-primary);
}

.footer-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 24px;
}

.footer-badge {
    background: rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-sm);
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 700;
    color: var(--clr-text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background var(--transition);
}

.footer-badge:hover {
    background: rgba(255, 255, 255, 0.12);
}

.footer-badge svg {
    width: 14px;
    height: 14px;
}

.footer-badge--mga {
    color: #f7b731;
}

.footer-badge--18 {
    background: rgba(255, 80, 80, 0.15);
    color: #ff5050;
    font-size: 15px;
    font-weight: 800;
}

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

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

.footer-copyright {
    font-size: 12px;
    color: var(--clr-text-muted);
}

.footer-legal {
    font-size: 11px;
    color: #6b739e;
    line-height: 1.6;
    max-width: 680px;
}

.footer-email a {
    color: var(--clr-secondary);
}

/* ===== STICKY WIDGET ===== */
.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: linear-gradient(135deg, rgba(52, 58, 108, 0.97), rgba(20, 24, 58, 0.97));
    border-top: 2px solid var(--clr-primary);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    backdrop-filter: blur(8px);
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.sticky-widget.hidden {
    transform: translateY(100%);
}

.widget-text {
    flex: 1;
}

.widget-text strong {
    display: block;
    font-size: 14px;
    color: var(--clr-text);
    font-weight: 700;
}

.widget-text span {
    font-size: 12px;
    color: var(--clr-primary);
    font-weight: 600;
}

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

.widget-close {
    background: none;
    border: none;
    color: var(--clr-text-muted);
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    padding: 4px;
    transition: color var(--transition);
}

.widget-close:hover {
    color: var(--clr-text);
}

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 0;
    font-size: 13px;
    color: var(--clr-text-muted);
}

.breadcrumbs a {
    color: var(--clr-secondary);
}

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

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

.faq-item {
    background: var(--clr-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: 14px;
    color: var(--clr-text);
    user-select: none;
    transition: background var(--transition);
}

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

.faq-icon {
    width: 20px;
    height: 20px;
    background: rgba(132, 140, 201, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform var(--transition), background var(--transition);
    font-size: 13px;
    color: var(--clr-secondary);
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: rgba(26, 189, 140, 0.2);
    color: var(--clr-primary);
}

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

.faq-answer.open {
    max-height: 300px;
    padding: 0 20px 16px;
}

/* ===== RATING ===== */
.rating-box {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-bottom: 24px;
}

.rating-score {
    font-size: 3rem;
    font-weight: 800;
    color: var(--clr-primary);
    line-height: 1;
}

.rating-details {
    flex: 1;
}

.rating-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 6px;
}

.rating-stars svg {
    width: 20px;
    height: 20px;
}

.rating-count {
    font-size: 12px;
    color: var(--clr-text-muted);
}

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

.info-content h1 {
    margin-bottom: 24px;
}

.info-content h2 {
    color: var(--clr-secondary);
    margin: 2rem 0 0.8rem;
}

.info-content p {
    color: var(--clr-text);
    line-height: 1.8;
}

.info-content ul, .info-content ol {
    color: var(--clr-text);
}

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

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

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

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

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

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

/* ===== WP COMPAT (unused but present) ===== */
.wp-block-group {
    display: block;
}

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

.wp-block-column {
    flex: 1 1 0;
}

.elementor-section {
    position: relative;
}

.elementor-widget-text-editor {
    color: inherit;
}

.entry-content {
    color: inherit;
}

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

.size-full {
    max-width: 100%;
    height: auto;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Unused utility classes */
.d-flex-jxb9 {
    display: flex;
    justify-content: space-between;
}

.m-0-auto-k2p {
    margin: 0 auto;
}

.text-up-q7m {
    text-transform: uppercase;
}

.overflow-h-r3 {
    overflow: hidden;
}

.pos-rel-w4v {
    position: relative;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .security-card {
        flex: 1 1 calc(50% - 8px);
    }

    .review-card {
        flex: 1 1 calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .header-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(14, 17, 43, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 999;
        display: none;
        gap: 8px;
        padding: 20px;
    }

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

    .nav-link {
        font-size: 1rem;
        padding: 12px 24px;
        width: 100%;
        justify-content: center;
    }

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

    .online-counter {
        display: none;
    }

    .lang-select {
        display: none;
    }

    .header-inner {
        padding: 10px 16px;
    }

    .hero {
        min-height: 380px;
    }

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

    .screenshots-grid {
        display: none;
    }

    .screenshots-slider {
        display: block;
    }

    .security-card {
        flex: 1 1 100%;
    }

    .resp-card {
        flex: 1 1 100%;
    }

    .review-card {
        flex: 1 1 100%;
    }

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

    .footer-grid {
        gap: 28px;
    }

    .footer-col {
        flex: 1 1 calc(50% - 14px);
    }

    .footer-col--wide {
        flex: 1 1 100%;
    }

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

    .widget-text strong {
        font-size: 13px;
    }

    .section {
        padding: 40px 0;
    }

    .author-box {
        flex-direction: column;
        gap: 14px;
    }

    .author-avatar {
        width: 56px;
        height: 56px;
    }

    .info-table td:first-child {
        width: 40%;
    }

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

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

    .hero-bonus-box {
        flex-direction: column;
        text-align: center;
    }

    .footer-col {
        flex: 1 1 100%;
    }

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

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