
.x7k2m9p {
    display: none;
}

.qr84nz {
    visibility: hidden;
}

.bv3tx0 {
    opacity: 0;
    pointer-events: none;
}

.wp-block-group--is-layout-flow {
    margin: 0;
}

.entry-content > * + * {
    margin-top: 0;
}

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

.wp-block-separator {
    border: none;
}

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

:root {
    --color-bg: #1C1C1C;
    --color-header: #000000;
    --color-accent: #FFDD00;
    --color-accent-dark: #e6c800;
    --color-text: #f0f0f0;
    --color-text-muted: #aaaaaa;
    --color-border: #333333;
    --color-card: #242424;
    --color-card2: #2a2a2a;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --font-main: 'Open Sans', 'Roboto', sans-serif;
    --transition: 0.25s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-main);
    font-size: 15px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

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

a:hover {
    opacity: 0.82;
}

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

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

/* ---------- buttons ---------- */
.btn-primary {
    display: inline-block;
    background: var(--color-accent);
    color: #000;
    font-weight: 700;
    font-size: 14px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    letter-spacing: 0.03em;
    white-space: nowrap;
}

.btn-primary:hover {
    background: var(--color-accent-dark);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255, 221, 0, 0.3);
    opacity: 1;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--color-accent);
    font-weight: 700;
    font-size: 14px;
    padding: 9px 20px;
    border-radius: var(--radius-sm);
    border: 2px solid var(--color-accent);
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition);
    letter-spacing: 0.03em;
    white-space: nowrap;
}

.btn-secondary:hover {
    background: var(--color-accent);
    color: #000;
    opacity: 1;
    transform: translateY(-2px);
}

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

.btn-block {
    width: 100%;
    text-align: center;
}

/* ---------- HEADER ---------- */
#ow-header {
    background: var(--color-header);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #1a1a1a;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.ow-header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 16px;
    padding: 10px 0;
}

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

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

.ow-nav {
    display: flex;
    align-items: center;
}

.ow-nav ul {
    list-style: none;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.ow-nav ul li a {
    color: var(--color-text);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
    text-decoration: none;
}

.ow-nav ul li a:hover {
    color: var(--color-accent);
    background: rgba(255, 221, 0, 0.07);
    opacity: 1;
}

.ow-online-count {
    font-size: 12px;
    color: var(--color-text-muted);
    white-space: nowrap;
}

.ow-online-count .ow-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3ddc84;
    margin-right: 5px;
    animation: ow-pulse 2s infinite;
    vertical-align: middle;
}

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

.ow-header-btns {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-shrink: 0;
}

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

.ow-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: all 0.3s;
}

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

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

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

.ow-mobile-nav {
    display: none;
    background: #0a0a0a;
    border-top: 1px solid #222;
    padding: 12px 0;
}

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

.ow-mobile-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
}

.ow-mobile-nav ul li a {
    display: block;
    color: var(--color-text);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    border-bottom: 1px solid #1a1a1a;
    text-decoration: none;
}

.ow-mobile-nav ul li a:hover {
    color: var(--color-accent);
    background: rgba(255, 221, 0, 0.05);
}

/* ---------- HERO / SLIDER ---------- */
#ow-hero {
    position: relative;
    overflow: hidden;
    background: #000;
    min-height: 420px;
}

.ow-slider {
    position: relative;
    width: 100%;
    min-height: 420px;
}

.ow-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
    display: flex;
    align-items: center;
}

.ow-slide.active {
    opacity: 1;
    z-index: 1;
}

.ow-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.5);
}

.ow-slide-content {
    position: relative;
    z-index: 2;
    padding: 48px 0;
}

.ow-slide-content h1 {
    font-size: clamp(22px, 4vw, 42px);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 14px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.ow-slide-content h1 span {
    color: var(--color-accent);
}

.ow-slide-content p {
    font-size: 15px;
    color: #ddd;
    margin-bottom: 24px;
    max-width: 500px;
    line-height: 1.7;
}

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

.ow-slider-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.ow-slider-dots span.active {
    background: var(--color-accent);
    transform: scale(1.3);
}

.ow-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 18px;
    user-select: none;
}

.ow-slider-arrow:hover {
    background: rgba(255, 221, 0, 0.3);
}

.ow-slider-arrow.prev {
    left: 12px;
}

.ow-slider-arrow.next {
    right: 12px;
}

/* ---------- SECTION GENERIC ---------- */
.ow-section {
    padding: 56px 0;
}

.ow-section-title {
    font-size: clamp(20px, 3vw, 30px);
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 8px;
    position: relative;
    padding-bottom: 12px;
}

.ow-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 48px;
    height: 3px;
    background: var(--color-accent);
    border-radius: 2px;
}

.ow-section-sub {
    color: var(--color-text-muted);
    font-size: 14px;
    margin-bottom: 32px;
}

/* ---------- ADVANTAGES ---------- */
.ow-adv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 18px;
    margin-top: 32px;
}

.ow-adv-card {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 22px 18px;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.ow-adv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
    border-color: var(--color-accent);
}

.ow-adv-icon {
    font-size: 28px;
    margin-bottom: 12px;
    display: block;
}

.ow-adv-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 6px;
}

.ow-adv-card p {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.55;
}

/* ---------- MIRRORS TABLE ---------- */
#ow-mirrors {
    background: #181818;
}

.ow-datetime-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 221, 0, 0.1);
    border: 1px solid rgba(255, 221, 0, 0.3);
    color: var(--color-accent);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 22px;
}

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

.ow-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    margin: 0 auto;
    min-width: 560px;
}

.ow-table thead tr {
    background: #111;
    border-bottom: 2px solid var(--color-accent);
}

.ow-table thead th {
    padding: 12px 16px;
    text-align: left;
    color: var(--color-accent);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.ow-table tbody tr {
    border-bottom: 1px solid var(--color-border);
    transition: background var(--transition);
}

.ow-table tbody tr:hover {
    background: rgba(255, 221, 0, 0.05);
}

.ow-table td {
    padding: 12px 16px;
    text-align: left;
    color: var(--color-text);
    vertical-align: middle;
}

.ow-status-ok {
    display: inline-block;
    background: #1e3a1e;
    color: #5eda6a;
    font-size: 12px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid #2c562c;
}

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

.ow-screenshot-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: transform var(--transition), box-shadow var(--transition);
}

.ow-screenshot-item:hover {
    transform: scale(1.025);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

/* Mobile screenshot slider */
.ow-screenshots-slider-wrap {
    display: none;
}

.ow-ss-slider {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
}

.ow-ss-slide {
    flex: 0 0 85%;
    scroll-snap-align: start;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.ow-ss-slide img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* ---------- APP INFO ---------- */
#ow-app {
    background: #181818;
}

.ow-app-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.ow-app-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.ow-app-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    color: var(--color-text);
    text-decoration: none;
    transition: all var(--transition);
    font-weight: 600;
    font-size: 14px;
}

.ow-app-btn:hover {
    border-color: var(--color-accent);
    background: rgba(255, 221, 0, 0.05);
    color: var(--color-accent);
    opacity: 1;
    transform: translateX(4px);
}

.ow-app-btn-icon {
    font-size: 24px;
}

.ow-app-btn-label {
    font-size: 11px;
    color: var(--color-text-muted);
    font-weight: 400;
    display: block;
}

.ow-app-btn-name {
    font-weight: 700;
}

/* ---------- SLOT GAME ---------- */
#ow-slot {
    background: #111;
}

.ow-slot-machine {
    max-width: 460px;
    margin: 0 auto;
    background: var(--color-card);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}

.ow-slot-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--color-accent);
    margin-bottom: 6px;
}

.ow-slot-sub {
    font-size: 13px;
    color: var(--color-text-muted);
    margin-bottom: 22px;
}

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

.ow-reel {
    width: 80px;
    height: 80px;
    background: #111;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    transition: border-color 0.3s;
    user-select: none;
    overflow: hidden;
}

.ow-reel.spinning {
    animation: ow-spin 0.12s linear infinite;
    border-color: var(--color-accent);
}

@keyframes ow-spin {
    0% {
        transform: scaleY(1);
    }
    50% {
        transform: scaleY(0.7);
    }
    100% {
        transform: scaleY(1);
    }
}

.ow-slot-result {
    min-height: 48px;
    margin-bottom: 16px;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text-muted);
}

.ow-slot-result.win {
    color: #5eda6a;
}

.ow-slot-result.lose {
    color: #e05555;
}

.ow-slot-btn {
    min-width: 180px;
    font-size: 16px;
}

.ow-author-card {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
    max-width: 680px;
}

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

.ow-author-name {
    font-size: 18px;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 4px;
}

.ow-author-role {
    font-size: 13px;
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: 10px;
}

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

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

.ow-author-social a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: var(--color-text);
    background: #333;
    padding: 5px 12px;
    border-radius: 20px;
    text-decoration: none;
    transition: all var(--transition);
}

.ow-author-social a:hover {
    background: var(--color-accent);
    color: #000;
    opacity: 1;
}

.ow-content-block {
    line-height: 1.75;
    color: var(--color-text);
}

.ow-content-block h2 {
    font-size: 22px;
    font-weight: 800;
    color: var(--color-accent);
    margin: 28px 0 12px;
}

.ow-content-block h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text);
    margin: 20px 0 10px;
}

.ow-content-block h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text-muted);
    margin: 16px 0 8px;
}

.ow-content-block p {
    margin-bottom: 14px;
}

.ow-content-block ul, .ow-content-block ol {
    padding-left: 22px;
    margin-bottom: 14px;
}

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

.ow-content-block a {
    color: var(--color-accent);
    text-decoration: underline;
}

.ow-content-block strong, .ow-content-block b {
    color: var(--color-accent);
}

.ow-content-block table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px auto;
    font-size: 14px;
    min-width: 400px;
}

.ow-content-block table th {
    background: #111;
    color: var(--color-accent);
    padding: 10px 14px;
    border: 1px solid var(--color-border);
    text-align: left;
}

.ow-content-block table td {
    padding: 10px 14px;
    border: 1px solid var(--color-border);
    color: var(--color-text);
}

.ow-content-block table tr:nth-child(even) {
    background: #1f1f1f;
}

.ow-content-block blockquote {
    border-left: 3px solid var(--color-accent);
    padding: 10px 18px;
    margin: 18px 0;
    background: rgba(255, 221, 0, 0.05);
    color: var(--color-text-muted);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.ow-content-block hr {
    border: none;
    border-top: 1px solid var(--color-border);
    margin: 24px 0;
}

.ow-content-block img {
    max-width: 100%;
    border-radius: var(--radius-sm);
    margin: 12px 0;
}

.ow-faq {
    margin-top: 28px;
}

.ow-faq-item {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    margin-bottom: 10px;
    overflow: hidden;
    transition: border-color var(--transition);
}

.ow-faq-item.open {
    border-color: var(--color-accent);
}

.ow-faq-q {
    width: 100%;
    background: var(--color-card);
    color: var(--color-text);
    font-size: 15px;
    font-weight: 600;
    padding: 16px 18px;
    text-align: left;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    transition: background var(--transition);
}

.ow-faq-q:hover {
    background: #2e2e2e;
}

.ow-faq-q .ow-faq-arrow {
    color: var(--color-accent);
    font-size: 12px;
    transition: transform 0.3s;
}

.ow-faq-item.open .ow-faq-arrow {
    transform: rotate(180deg);
}

.ow-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
    padding: 0 18px;
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.7;
    background: var(--color-card2);
}

.ow-faq-item.open .ow-faq-a {
    max-height: 300px;
    padding: 14px 18px;
}

#ow-footer {
    background: var(--color-header);
    border-top: 1px solid #1a1a1a;
    padding: 44px 0 24px;
}

.ow-footer-top {
    display: grid;
    grid-template-columns: 200px 1fr 1fr;
    gap: 32px;
    margin-bottom: 36px;
}

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

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

.ow-footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}

.ow-footer-col ul {
    list-style: none;
}

.ow-footer-col ul li {
    margin-bottom: 7px;
}

.ow-footer-col ul li a {
    color: var(--color-text-muted);
    font-size: 13px;
    text-decoration: none;
    transition: color var(--transition);
}

.ow-footer-col ul li a:hover {
    color: var(--color-accent);
    opacity: 1;
}

.ow-footer-payments h4, .ow-footer-providers h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 22px 0 12px;
}

.ow-payment-logos, .ow-provider-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ow-logo-badge {
    background: #1a1a1a;
    border: 1px solid #2c2c2c;
    border-radius: var(--radius-sm);
    padding: 5px 11px;
    font-size: 11px;
    font-weight: 700;
    color: var(--color-text-muted);
    white-space: nowrap;
    letter-spacing: 0.03em;
}

.ow-footer-bottom {
    border-top: 1px solid #1a1a1a;
    padding-top: 18px;
    font-size: 12px;
    color: #555;
    line-height: 1.7;
}

.ow-footer-bottom a {
    color: #555;
    text-decoration: underline;
}

.ow-footer-bottom a:hover {
    color: var(--color-text-muted);
    opacity: 1;
}

#ow-widget {
    position: fixed;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    width: calc(100% - 32px);
    max-width: 560px;
    pointer-events: none;
}

.ow-widget-inner {
    background: linear-gradient(90deg, #1a1a00 0%, #2a2000 100%);
    border: 2px solid var(--color-accent);
    border-radius: var(--radius-lg);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    pointer-events: all;
}

.ow-widget-text {
    flex: 1;
    min-width: 0;
}

.ow-widget-text .ow-widget-label {
    font-size: 11px;
    color: var(--color-text-muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.ow-widget-text .ow-widget-bonus {
    font-size: 17px;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1.2;
}

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

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

#ow-btt {
    position: fixed;
    bottom: 82px;
    right: 18px;
    z-index: 998;
    width: 42px;
    height: 42px;
    background: var(--color-accent);
    color: #000;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
    transition: opacity var(--transition), transform var(--transition);
}

#ow-btt.visible {
    display: flex;
}

#ow-btt:hover {
    transform: translateY(-3px);
}

.ow-breadcrumbs {
    font-size: 13px;
    color: var(--color-text-muted);
    padding: 12px 0;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    align-items: center;
}

.ow-breadcrumbs a {
    color: var(--color-accent);
    text-decoration: none;
}

.ow-breadcrumbs span {
    color: #444;
}

.ow-divider {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-border), transparent);
    margin: 0;
    border: none;
}

.wp-caption {
    display: none;
}

.wp-post-image {
    display: block;
}

.elementor-widget-wrap {
    box-sizing: inherit;
}

.e-con-inner {
    padding: inherit;
}

.wp-block-columns {
    flex-wrap: nowrap;
}

.yoast-schema-graph {
    display: none;
}

.wp-site-blocks {
    padding: 0;
}

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

@media (max-width: 768px) {
    .ow-header-inner {
        grid-template-columns: auto 1fr auto;
    }

    .ow-nav {
        display: none;
    }

    .ow-burger {
        display: flex;
    }

    .ow-online-count {
        display: none;
    }

    .ow-app-inner {
        grid-template-columns: 1fr;
    }

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

    .ow-screenshots-grid {
        display: none;
    }

    .ow-screenshots-slider-wrap {
        display: block;
        margin-top: 28px;
    }

    .ow-author-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .ow-author-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .ow-section {
        padding: 36px 0;
    }

    .ow-adv-grid {
        grid-template-columns: 1fr 1fr;
    }

    .ow-slide-content h1 {
        font-size: 20px;
    }

    .ow-reels {
        gap: 6px;
    }

    .ow-reel {
        width: 68px;
        height: 68px;
        font-size: 28px;
    }

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

.nqwr {
    max-width: 1120px;
    margin: 0 auto;
    padding: 40px 20px 72px;
    color: #f3f4f6;
    font-family: 'Open Sans', 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.72;
}

.nqwr > *:first-child {
    margin-top: 0;
}

.nqwr h1,
.nqwr h2,
.nqwr h3,
.nqwr h4 {
    margin: 0;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.nqwr h1 {
    font-size: clamp(34px, 5vw, 52px);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 24px;
}

.nqwr h2 {
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 800;
    color: #ffdd00;
    margin-top: 48px;
    margin-bottom: 18px;
}

.nqwr h3 {
    font-size: clamp(20px, 2.4vw, 26px);
    font-weight: 700;
    color: #ffffff;
    margin-top: 28px;
    margin-bottom: 14px;
}

.nqwr h4 {
    font-size: 18px;
    font-weight: 700;
    color: #d1d5db;
    margin-top: 22px;
    margin-bottom: 10px;
}

.nqwr p {
    margin: 0 0 18px;
    color: #d7dbe1;
}

.nqwr a {
    color: #ffdd00;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
    transition: color 0.25s ease, opacity 0.25s ease;
}

.nqwr a:hover {
    color: #ffe95c;
    opacity: 1;
}

.nqwr strong,
.nqwr b {
    color: #ffffff;
    font-weight: 700;
}

.nqwr ul,
.nqwr ol {
    margin: 0 0 22px;
    padding-left: 24px;
}

.nqwr li {
    margin-bottom: 10px;
    color: #d7dbe1;
}

.nqwr li::marker {
    color: #ffdd00;
}

.nqwr blockquote {
    margin: 26px 0;
    padding: 20px 22px;
    border-left: 4px solid #ffdd00;
    background: linear-gradient(180deg, rgba(255, 221, 0, 0.08), rgba(255, 221, 0, 0.03));
    border-radius: 0 16px 16px 0;
}

.nqwr blockquote p {
    margin-bottom: 0;
    color: #f3f4f6;
}

.nqwr table {
    width: 100%;
    border-collapse: collapse;
    margin: 28px 0 34px;
    background: #1f1f1f;
    border: 1px solid #343434;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
}

.nqwr thead tr {
    background: #101010;
}

.nqwr th,
.nqwr td {
    padding: 14px 16px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid #343434;
}

.nqwr th {
    font-size: 14px;
    font-weight: 700;
    color: #ffdd00;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.nqwr td {
    color: #e5e7eb;
    font-size: 15px;
}

.nqwr tbody tr:nth-child(even) {
    background: #252525;
}

.nqwr tbody tr:last-child td {
    border-bottom: 0;
}

.nqwr hr {
    border: 0;
    height: 1px;
    margin: 32px 0;
    background: linear-gradient(90deg, transparent, #3a3a3a, transparent);
}

.nqwr img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 14px;
}

.nqwr > h1 + p {
    font-size: 18px;
    color: #eef1f5;
}

.nqwr h2 + p,
.nqwr h3 + p {
    margin-top: 0;
}

.nqwr table a,
.nqwr p a,
.nqwr li a {
    word-break: break-word;
}

@media (max-width: 991px) {
    .nqwr {
        padding: 32px 18px 56px;
        font-size: 15px;
    }

    .nqwr h1 {
        margin-bottom: 20px;
    }

    .nqwr h2 {
        margin-top: 40px;
        margin-bottom: 16px;
    }

    .nqwr table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
        border-radius: 14px;
    }
}

@media (max-width: 767px) {
    .nqwr {
        padding: 26px 14px 48px;
        line-height: 1.65;
    }

    .nqwr h1 {
        font-size: 30px;
    }

    .nqwr h2 {
        font-size: 24px;
        margin-top: 34px;
    }

    .nqwr h3 {
        font-size: 20px;
        margin-top: 24px;
    }

    .nqwr p,
    .nqwr li,
    .nqwr td {
        font-size: 15px;
    }

    .nqwr ul,
    .nqwr ol {
        padding-left: 20px;
        margin-bottom: 18px;
    }

    .nqwr blockquote {
        margin: 22px 0;
        padding: 16px 16px 16px 18px;
        border-radius: 0 12px 12px 0;
    }

    .nqwr th,
    .nqwr td {
        padding: 12px 14px;
    }
}

@media (max-width: 479px) {
    .nqwr {
        padding: 22px 12px 40px;
        font-size: 14px;
    }

    .nqwr h1 {
        font-size: 26px;
    }

    .nqwr h2 {
        font-size: 22px;
        margin-top: 30px;
        margin-bottom: 14px;
    }

    .nqwr h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .nqwr p {
        margin-bottom: 16px;
    }

    .nqwr > h1 + p {
        font-size: 16px;
    }

    .nqwr th,
    .nqwr td {
        padding: 10px 12px;
        font-size: 14px;
    }

    .nqwr blockquote {
        padding: 14px 14px 14px 16px;
    }
}

.nqwr {
    max-width: 1120px;
    margin: 0 auto;
    padding: 40px 20px 72px;
    color: #f3f4f6;
    font-family: 'Open Sans', 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.72;
    background: #1f1f1f;
    border: 1px solid #343434;
    border-radius: 20px;
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
}

@media (max-width: 768px) {
    #ow-app {
        padding: 36px 0;
    }

    #ow-app .ow-container {
        padding: 0 14px;
    }

    #ow-app .ow-section-title {
        font-size: 26px;
        line-height: 1.2;
        margin-bottom: 10px;
    }

    #ow-app .ow-section-sub {
        font-size: 14px;
        line-height: 1.55;
        margin-bottom: 22px;
    }

    #ow-app .ow-app-inner {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    #ow-app .ow-app-inner > div {
        width: 100%;
        min-width: 0;
    }

    #ow-app .ow-table-wrap {
        margin: 0;
        overflow: hidden;
        border: 1px solid var(--color-border);
        border-radius: 16px;
        background: var(--color-card);
    }

    #ow-app .ow-table {
        min-width: 100%;
        font-size: 14px;
    }

    #ow-app .ow-table thead th {
        padding: 12px 14px;
        font-size: 12px;
    }

    #ow-app .ow-table td {
        padding: 12px 14px;
        font-size: 14px;
        line-height: 1.45;
    }

    #ow-app .ow-table td:first-child {
        width: 48%;
        color: var(--color-accent);
        font-weight: 600;
    }

    #ow-app .ow-app-inner > div:last-child {
        padding: 18px 16px;
        background: var(--color-card);
        border: 1px solid var(--color-border);
        border-radius: 16px;
    }

    #ow-app .ow-app-inner > div:last-child p {
        font-size: 14px !important;
        line-height: 1.6;
        margin-bottom: 18px !important;
    }

    #ow-app .ow-app-btns {
        gap: 10px;
        margin-top: 0;
    }

    #ow-app .ow-app-btn {
        min-height: 64px;
        padding: 14px 16px;
        border-radius: 14px;
        gap: 12px;
        align-items: center;
    }

    #ow-app .ow-app-btn-icon {
        width: 42px;
        min-width: 42px;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        border-radius: 12px;
        background: rgba(255, 221, 0, 0.08);
    }

    #ow-app .ow-app-btn-label {
        font-size: 11px;
        line-height: 1.2;
        margin-bottom: 2px;
    }

    #ow-app .ow-app-btn-name {
        display: block;
        font-size: 14px;
        line-height: 1.35;
    }
}

@media (max-width: 560px) {
    #ow-app {
        padding: 30px 0;
    }

    #ow-app .ow-container {
        padding: 0 12px;
    }

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

    #ow-app .ow-section-sub {
        font-size: 13px;
        margin-bottom: 18px;
    }

    #ow-app .ow-app-inner {
        gap: 14px;
    }

    #ow-app .ow-table-wrap {
        border-radius: 14px;
    }

    #ow-app .ow-table thead {
        display: none;
    }

    #ow-app .ow-table,
    #ow-app .ow-table tbody,
    #ow-app .ow-table tr,
    #ow-app .ow-table td {
        display: block;
        width: 100%;
    }

    #ow-app .ow-table tr {
        padding: 12px;
        border-bottom: 1px solid var(--color-border);
    }

    #ow-app .ow-table tr:last-child {
        border-bottom: 0;
    }

    #ow-app .ow-table td {
        border: 0;
        padding: 0;
        white-space: normal;
    }

    #ow-app .ow-table td:first-child {
        width: 100%;
        margin-bottom: 4px;
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        color: var(--color-accent);
    }

    #ow-app .ow-table td:last-child {
        font-size: 14px;
        color: var(--color-text);
    }

    #ow-app .ow-app-inner > div:last-child {
        padding: 16px 14px;
        border-radius: 14px;
    }

    #ow-app .ow-app-btn {
        padding: 13px 14px;
        min-height: 60px;
        border-radius: 12px;
    }

    #ow-app .ow-app-btn-icon {
        width: 38px;
        min-width: 38px;
        height: 38px;
        font-size: 20px;
        border-radius: 10px;
    }

    #ow-app .ow-app-btn-name {
        font-size: 13px;
    }
}

@media (max-width: 380px) {
    #ow-app .ow-section-title {
        font-size: 20px;
    }

    #ow-app .ow-app-btn {
        gap: 10px;
        padding: 12px;
    }

    #ow-app .ow-app-btn-icon {
        width: 34px;
        min-width: 34px;
        height: 34px;
        font-size: 18px;
    }

    #ow-app .ow-app-btn-label {
        font-size: 10px;
    }

    #ow-app .ow-app-btn-name {
        font-size: 12px;
    }

    #ow-app .ow-table tr {
        padding: 10px;
    }
}