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

:root {
    --bg: #0C0C0D;
    --hdr: #373A3E;
    --btn-dark: #464749;
    --btn-accent: #FFCC00;
    --btn-accent-hover: #FFD740;
    --text: #F0F0F0;
    --text-muted: #9A9A9A;
    --text-dark: #0C0C0D;
    --card-bg: #18191C;
    --card-bg2: #1E2025;
    --border: rgba(255, 255, 255, 0.07);
    --border-accent: rgba(255, 204, 0, 0.25);
    --success: #2ECC71;
    --danger: #E74C3C;
    --info: #3498DB;
    --purple: #9B59B6;
    --r-sm: 8px;
    --r-md: 14px;
    --r-lg: 22px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
    --shadow-accent: 0 4px 30px rgba(255, 204, 0, 0.18);
    --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    --font-main: 'Open Sans', 'Roboto', Arial, sans-serif;
}

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

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

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

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text);
}

p {
    margin-bottom: 1em;
}

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

li {
    margin-bottom: 0.4em;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem auto;
    background: var(--card-bg);
    border-radius: var(--r-md);
    overflow: hidden;
}

th {
    background: var(--btn-dark);
    color: var(--text);
    padding: 12px 18px;
    text-align: left;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

td {
    padding: 12px 18px;
    border-bottom: 1px solid var(--border);
    font-size: 0.93rem;
    text-align: left;
    vertical-align: middle;
    color: var(--text);
}

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

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

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

.xk72m-wrapper {
    display: grid;
    min-height: 100vh;
}

.site-header {
    background: var(--hdr);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.q9p4r-hdr-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    padding: 13px 20px;
    max-width: 1180px;
    margin: 0 auto;
}

.site-logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
    border-radius: 6px;
}

.hdr-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hdr-nav a {
    color: var(--text);
    font-size: 0.88rem;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: var(--r-sm);
    transition: background var(--transition), color var(--transition);
    white-space: nowrap;
}

.hdr-nav a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--btn-accent);
}

.hdr-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.online-counter {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.78rem;
    color: var(--text-muted);
    white-space: nowrap;
    padding: 5px 11px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    border: 1px solid var(--border);
}

.online-dot {
    width: 7px;
    height: 7px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse-dot 1.8s infinite;
    flex-shrink: 0;
}

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

.hdr-btns {
    display: flex;
    gap: 9px;
    align-items: center;
}

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

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

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

.btn-dark:hover {
    background: #555759;
    color: var(--text);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}

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

.btn-accent:hover {
    background: var(--btn-accent-hover);
    color: var(--text-dark);
    box-shadow: var(--shadow-accent);
    transform: translateY(-1px);
}

.btn-lg {
    padding: 15px 36px;
    font-size: 1.05rem;
    border-radius: var(--r-md);
}

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

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

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--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;
    transform: scaleX(0);
}

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

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: var(--hdr);
    padding: 16px 20px 20px;
    border-top: 1px solid var(--border);
}

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

.mobile-nav a {
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 11px 14px;
    border-radius: var(--r-sm);
    transition: background var(--transition);
}

.mobile-nav a:hover {
    background: rgba(255, 255, 255, 0.07);
    color: var(--btn-accent);
}

.hero-section {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0C0C0D;
}

.hero-bg {
    position: absolute;
    inset: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    z-index: 0;
    filter: brightness(0.38) saturate(0.7);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(12, 12, 13, 0.82) 0%, rgba(55, 58, 62, 0.5) 50%, rgba(12, 12, 13, 0.88) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    margin: 0 auto;
    padding: 80px 20px;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 204, 0, 0.13);
    border: 1px solid rgba(255, 204, 0, 0.35);
    color: var(--btn-accent);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 16px;
    max-width: 680px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.7);
    line-height: 1.18;
}

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

.hero-sub {
    font-size: 1.08rem;
    color: rgba(240, 240, 240, 0.82);
    margin-bottom: 36px;
    max-width: 540px;
    line-height: 1.65;
}

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

.hero-note {
    font-size: 0.78rem;
    color: rgba(240, 240, 240, 0.5);
    margin-top: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.main-content {
    padding: 56px 0 80px;
}

.section-block {
    background: var(--card-bg);
    border-radius: var(--r-lg);
    padding: 40px;
    margin-bottom: 28px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.section-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--btn-accent), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.section-block:hover::before {
    opacity: 1;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title .ico {
    width: 40px;
    height: 40px;
    background: rgba(255, 204, 0, 0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.promo-card {
    background: linear-gradient(135deg, #1E2025 0%, #252830 100%);
    border: 2px solid var(--border-accent);
    border-radius: var(--r-lg);
    padding: 36px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.promo-card::after {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 204, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.promo-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(46, 204, 113, 0.12);
    border: 1px solid rgba(46, 204, 113, 0.3);
    color: var(--success);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.promo-status-dot {
    width: 6px;
    height: 6px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse-dot 1.8s infinite;
}

.promo-timer {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-left: 8px;
    border-left: 1px solid var(--border);
    padding-left: 10px;
}

.promo-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-weight: 700;
    margin-bottom: 12px;
}

.promo-code-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin: 0 auto 28px;
    max-width: 420px;
}

.promo-code-value {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px dashed rgba(255, 204, 0, 0.4);
    border-right: none;
    border-radius: var(--r-sm) 0 0 var(--r-sm);
    padding: 16px 22px;
    font-size: 1.7rem;
    font-weight: 900;
    font-family: 'Roboto', monospace;
    color: var(--btn-accent);
    letter-spacing: 0.12em;
    text-align: center;
    user-select: all;
}

.promo-copy-btn {
    background: var(--btn-dark);
    color: var(--text);
    border: 1.5px dashed rgba(255, 204, 0, 0.4);
    border-left: none;
    border-radius: 0 var(--r-sm) var(--r-sm) 0;
    padding: 16px 20px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 700;
    transition: background var(--transition), color var(--transition);
    white-space: nowrap;
    font-family: var(--font-main);
}

.promo-copy-btn:hover {
    background: #555759;
    color: var(--btn-accent);
}

.promo-copy-btn.copied {
    background: var(--success);
    color: #fff;
    border-color: var(--success);
}

.promo-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.promo-bonus-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 18px;
}

.promo-bonus-text strong {
    color: var(--btn-accent);
}

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

.pros-col, .cons-col {
    background: var(--card-bg2);
    border-radius: var(--r-md);
    padding: 24px;
    border: 1px solid var(--border);
}

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

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

.col-title {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}

.pros-col .col-title {
    color: var(--success);
}

.cons-col .col-title {
    color: var(--danger);
}

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

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

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

.li-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 900;
    flex-shrink: 0;
    margin-top: 2px;
}

.pros-col .li-icon {
    background: rgba(46, 204, 113, 0.15);
    color: var(--success);
}

.cons-col .li-icon {
    background: rgba(231, 76, 60, 0.15);
    color: var(--danger);
}

.screenshots-wrap {
    overflow: hidden;
}

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

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

.screenshot-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

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

.screenshot-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
    font-size: 2rem;
    opacity: 0;
}

.screenshot-item:hover .screenshot-overlay {
    background: rgba(0, 0, 0, 0.5);
    opacity: 1;
}

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

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

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

.app-table-wrap {
    overflow-x: auto;
}

.app-table-wrap table {
    min-width: 480px;
}

.app-dl-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
    align-items: center;
}

.btn-store {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: var(--r-sm);
    background: var(--btn-dark);
    color: var(--text);
    font-weight: 700;
    font-size: 0.88rem;
    transition: background var(--transition), transform var(--transition);
    border: 1px solid var(--border);
}

.btn-store:hover {
    background: #555759;
    transform: translateY(-2px);
    color: var(--btn-accent);
    box-shadow: var(--shadow);
}

.btn-store-icon {
    font-size: 1.4rem;
    line-height: 1;
}

.btn-store-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

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

.btn-store-text strong {
    font-size: 0.92rem;
}

.btn-apk {
    background: rgba(46, 204, 113, 0.1);
    border-color: rgba(46, 204, 113, 0.25);
    color: var(--success);
}

.btn-apk:hover {
    background: rgba(46, 204, 113, 0.18);
    color: var(--success);
}

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

.wheel-canvas-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

#wheel-canvas {
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(255, 204, 0, 0.15);
    max-width: 280px;
    width: 280px;
    height: 280px;
}

.wheel-pointer {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 24px solid var(--btn-accent);
    filter: drop-shadow(0 2px 6px rgba(255, 204, 0, 0.5));
    z-index: 10;
}

.wheel-info {
    max-width: 400px;
}

.wheel-title {
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 12px;
    line-height: 1.2;
}

.wheel-sub {
    color: var(--text-muted);
    margin-bottom: 28px;
    font-size: 0.95rem;
}

.wheel-result {
    display: none;
    background: var(--card-bg2);
    border-radius: var(--r-md);
    padding: 22px;
    border: 1px solid var(--border-accent);
    margin-top: 20px;
    animation: fadeInUp 0.4s ease;
}

.wheel-result.show {
    display: block;
}

.wheel-result.win {
    border-color: rgba(46, 204, 113, 0.35);
}

.wheel-result.lose {
    border-color: rgba(231, 76, 60, 0.2);
}

.wheel-result-title {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.wheel-result.win .wheel-result-title {
    color: var(--success);
}

.wheel-result.lose .wheel-result-title {
    color: var(--danger);
}

.wheel-result-sub {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.faq-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.faq-item:last-child {
    border-bottom: none;
}

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

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

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

.faq-arrow {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform var(--transition), background var(--transition);
    font-size: 0.8rem;
}

.faq-question.open .faq-arrow {
    transform: rotate(180deg);
    background: rgba(255, 204, 0, 0.15);
}

.faq-answer {
    display: none;
    padding: 0 0 20px;
    color: var(--text-muted);
    font-size: 0.93rem;
    line-height: 1.75;
    animation: fadeInUp 0.25s ease;
}

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

.author-block {
    display: flex;
    align-items: center;
    gap: 18px;
    background: var(--card-bg2);
    border-radius: var(--r-md);
    padding: 20px 24px;
    border: 1px solid var(--border);
    margin-bottom: 32px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--btn-dark), var(--btn-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--text-dark);
    flex-shrink: 0;
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 800;
    font-size: 0.98rem;
    margin-bottom: 2px;
}

.author-role {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.author-link {
    font-size: 0.78rem;
    color: var(--info);
    font-weight: 600;
    margin-top: 5px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.site-footer {
    background: var(--hdr);
    padding: 56px 0 32px;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 220px 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

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

.footer-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0;
}

.footer-nav-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 800;
    color: var(--text-muted);
    margin-bottom: 16px;
}

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

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

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

.footer-nav-list a:hover {
    color: var(--btn-accent);
}

.footer-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 0 0 28px;
}

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

.footer-logo-badge {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    padding: 7px 14px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.03em;
    transition: background var(--transition), color var(--transition);
}

.footer-logo-badge:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text);
}

.footer-logos-label {
    font-size: 0.74rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 18px;
}

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

.footer-copyright {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 680px;
}

.footer-license {
    font-size: 0.74rem;
    color: var(--text-muted);
    opacity: 0.6;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    margin-top: 4px;
}

.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: linear-gradient(90deg, #1E2025 0%, var(--hdr) 100%);
    border-top: 2px solid var(--btn-accent);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5);
}

.sticky-widget.visible {
    transform: translateY(0);
}

.widget-text {
    flex: 1;
}

.widget-bonus {
    font-size: 0.78rem;
    color: var(--btn-accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 2px;
}

.widget-cta-text {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
}

.widget-close {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 6px;
    transition: color var(--transition);
    flex-shrink: 0;
}

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

.content-text-area h2 {
    font-size: 1.4rem;
    font-weight: 800;
    margin: 2rem 0 1rem;
    color: var(--text);
    border-left: 3px solid var(--btn-accent);
    padding-left: 14px;
}

.content-text-area h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 1.6rem 0 0.8rem;
    color: var(--text);
}

.content-text-area h4 {
    font-size: 1rem;
    font-weight: 700;
    margin: 1.4rem 0 0.6rem;
    color: var(--text-muted);
}

.content-text-area p {
    color: rgba(240, 240, 240, 0.85);
    font-size: 0.95rem;
}

.content-text-area ul, .content-text-area ol {
    color: rgba(240, 240, 240, 0.85);
    font-size: 0.95rem;
}

.content-text-area table {
    font-size: 0.88rem;
}

.content-text-area a {
    color: var(--btn-accent);
}

.content-text-area strong {
    color: var(--text);
    font-weight: 700;
}

.content-text-area blockquote {
    border-left: 3px solid var(--btn-accent);
    padding: 12px 20px;
    background: var(--card-bg2);
    border-radius: 0 var(--r-sm) var(--r-sm) 0;
    margin: 1.5rem 0;
    font-style: italic;
    color: var(--text-muted);
}

.wp-block-group {
    display: block;
}

.has-background {
    background: var(--card-bg2);
}

.is-style-default {
    display: block;
}

.entry-content {
    display: block;
}

.wp-site-blocks {
    display: block;
}

.site-main {
    display: block;
}

.m3n8v-hidden {
    display: none;
}

.p5q7r-overflow {
    overflow: hidden;
}

.k2j9x-flex {
    display: flex;
}

.r4t6w-grid {
    display: grid;
}

.v8u2n-block {
    display: block;
}

.z3s1p-relative {
    position: relative;
}

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

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

.animate-slide-in {
    animation: slideInLeft 0.5s ease both;
}

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

.rating-stars {
    display: inline-flex;
    gap: 3px;
    color: var(--btn-accent);
    font-size: 1.1rem;
}

.rating-value {
    font-size: 2rem;
    font-weight: 900;
    color: var(--btn-accent);
    line-height: 1;
}

.rating-block {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.section-sub {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-top: -16px;
    margin-bottom: 22px;
}

.tag-chip {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    margin: 3px;
}

.tag-chip.accent {
    background: rgba(255, 204, 0, 0.1);
    border-color: rgba(255, 204, 0, 0.25);
    color: var(--btn-accent);
}

.wheel-sectors-legend {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 20px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 3px;
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .q9p4r-hdr-inner {
        grid-template-columns: auto 1fr auto;
        gap: 12px;
    }

    .hdr-nav {
        display: none;
    }

    .burger {
        display: flex;
    }

    .online-counter {
        display: none;
    }

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

    .screenshots-slider {
        grid-template-columns: 1fr;
    }

    .slider-dots {
        display: flex;
    }

    .screenshot-item {
        display: none;
    }

    .screenshot-item.active {
        display: block;
    }

    .wheel-section-inner {
        grid-template-columns: 1fr;
    }

    .wheel-canvas-wrap {
        order: -1;
    }

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

    .footer-grid > div:first-child {
        grid-column: 1 / -1;
    }

    .section-block {
        padding: 28px 22px;
    }

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

    .hero-title {
        font-size: 2rem;
    }

    .wheel-section-inner {
        gap: 28px;
    }

    #wheel-canvas {
        width: 240px;
        height: 240px;
        max-width: 240px;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .promo-code-display {
        flex-direction: column;
        gap: 0;
        max-width: 100%;
    }

    .promo-code-value {
        border-right: 1.5px dashed rgba(255, 204, 0, 0.4);
        border-bottom: none;
        border-radius: var(--r-sm) var(--r-sm) 0 0;
        width: 100%;
    }

    .promo-copy-btn {
        border-top: none;
        border-left: 1.5px dashed rgba(255, 204, 0, 0.4);
        border-radius: 0 0 var(--r-sm) var(--r-sm);
        width: 100%;
    }

    .hero-title {
        font-size: 1.65rem;
    }

    .hero-sub {
        font-size: 0.95rem;
    }

    .btn-lg {
        padding: 13px 26px;
        font-size: 0.95rem;
    }

    .sticky-widget {
        flex-wrap: nowrap;
        gap: 10px;
    }

    .app-dl-btns {
        gap: 8px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
    }

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

    .wheel-sectors-legend {
        grid-template-columns: 1fr 1fr;
    }
}

.ygves {
    max-width: 980px;
    margin: 40px auto;
    padding: 32px;
    border: 1px solid var(--border-accent);
    border-radius: var(--r-lg);
    background: var(--card-bg);
    box-shadow: var(--shadow);
    overflow-wrap: anywhere;
    word-break: break-word;
}

.ygves h1 {
    margin-bottom: 22px;
    font-size: clamp(1.7rem, 4vw, 2.6rem);
    line-height: 1.2;
}

.ygves h2 {
    margin: 34px 0 16px;
    padding-left: 14px;
    border-left: 3px solid var(--btn-accent);
    font-size: clamp(1.25rem, 3vw, 1.65rem);
}

.ygves p {
    margin-bottom: 18px;
    color: rgba(240, 240, 240, 0.86);
    font-size: 0.98rem;
    line-height: 1.75;
}

.ygves a {
    display: inline;
    max-width: 100%;
    color: var(--btn-accent);
    overflow-wrap: anywhere;
    word-break: break-word;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.ygves a:hover {
    color: var(--btn-accent-hover);
}

@media (max-width: 768px) {
    .ygves {
        margin: 24px auto;
        padding: 24px 18px;
        border-radius: var(--r-md);
    }

    .ygves p {
        font-size: 0.94rem;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .ygves {
        margin: 16px auto;
        padding: 20px 14px;
    }

    .ygves h1 {
        margin-bottom: 18px;
    }

    .ygves h2 {
        margin-top: 28px;
    }
}