:root {
    --1w-bg: #0d131c;
    --1w-surface: #141b2d;
    --1w-surface-2: #1c2538;
    --1w-blue: #0096ff;
    --1w-blue-dark: #0066cc;
    --1w-cyan: #00c2ff;
    --1w-green: #00b24b;
    --1w-text: #ffffff;
    --1w-text-muted: #8b9cb3;
    --1w-border: rgba(0, 150, 255, .18);
    --1w-glow: rgba(0, 150, 255, .35);
    --color-white: #fff;
    --color-dark: #0d131c;
    --color-button-bg: #0096ff;
    --color-accent: #00c2ff;
    --font-secondary-letter-spacing: .02em;
}

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

body {
    background: var(--1w-bg);
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    -webkit-text-size-adjust: none;
    color: var(--1w-text);
}

body, img { margin: 0; padding: 0; }
img { border: none; height: auto; max-width: 100%; }

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 15px;
    padding: 0;
}
h1 { font-size: 28px; }
h2 { font-size: 25px; }
h3 { font-size: 22px; }
h4 { font-size: 20px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

p { margin: 0 0 15px; padding: 0; }
a { color: var(--1w-cyan); text-decoration: none; }
a:hover { color: var(--1w-text); }

ul, ol { margin: 0 0 15px 15px; padding: 0; }

.wrap {
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
    width: 100%;
}
@media (min-width: 576px) { .wrap { max-width: 530px; } }
@media (min-width: 768px) { .wrap { max-width: 730px; } }
@media (min-width: 992px) { .wrap { max-width: 950px; } }
@media (min-width: 1200px) { .wrap { max-width: 1160px; } }

/* ── Top Ticker ── */
.top-ticker {
    background: var(--1w-surface);
    border-bottom: 1px solid var(--1w-border);
    padding: 7px 0;
    overflow: hidden;
}

.top-ticker__track {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.top-ticker__item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    color: var(--1w-text-muted);
    letter-spacing: .03em;
}

.top-ticker__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--1w-blue);
    box-shadow: 0 0 6px var(--1w-glow);
    animation: tickerBlink 2s ease-in-out infinite;
}

@keyframes tickerBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: .35; }
}

/* ── Header ── */
.site-header {
    background: linear-gradient(180deg, var(--1w-surface) 0%, var(--1w-bg) 100%);
    padding: 16px 0 12px;
    border-bottom: 1px solid var(--1w-border);
}

.site-header__bar {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.site-header__logo img {
    display: block;
    height: 44px;
    width: auto;
}

.site-header__nav {
    flex: 1;
    min-width: 0;
}

.site-header__nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 4px;
    background: rgba(0, 0, 0, .25);
    border-radius: 10px;
    border: 1px solid var(--1w-border);
}

.site-header__nav li a {
    display: block;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 500;
    color: var(--1w-text-muted);
    border-radius: 7px;
    transition: color .2s, background .2s;
}

.site-header__nav li a:hover {
    color: var(--1w-text);
    background: rgba(0, 150, 255, .12);
}

.site-header__actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.btn-1w {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    transition: .2s;
    white-space: nowrap;
}

.btn-1w--ghost {
    color: var(--1w-text-muted);
    border: 1px solid var(--1w-border);
    background: transparent;
}

.btn-1w--ghost:hover {
    color: var(--1w-text);
    border-color: rgba(0, 150, 255, .4);
    background: rgba(0, 150, 255, .08);
}

.btn-1w--fill {
    color: #fff;
    border: none;
    background: linear-gradient(135deg, var(--1w-blue) 0%, var(--1w-blue-dark) 100%);
    box-shadow: 0 4px 16px rgba(0, 150, 255, .35);
}

.btn-1w--fill:hover {
    background: linear-gradient(135deg, var(--1w-cyan) 0%, var(--1w-blue) 100%);
    box-shadow: 0 6px 20px rgba(0, 194, 255, .4);
    color: #fff;
}

.site-header__trust {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.trust-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--1w-text-muted);
    padding: 5px 12px;
    border-radius: 20px;
    background: rgba(0, 150, 255, .06);
    border: 1px solid var(--1w-border);
}

.trust-chip svg { color: var(--1w-blue); }
.trust-chip--accent {
    color: var(--1w-cyan);
    font-weight: 800;
    border-color: rgba(0, 194, 255, .3);
}

/* ── Hero Slider ── */
.main-slider {
    margin: 28px auto 32px;
    padding: 0 20px;
}

.main-slider__frame {
    max-width: 880px;
    margin: 0 auto;
    padding: 3px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--1w-blue) 0%, var(--1w-cyan) 50%, var(--1w-blue-dark) 100%);
    box-shadow: 0 0 40px rgba(0, 150, 255, .15);
}

.hero-swiper {
    border-radius: 16px;
    overflow: hidden;
    background: var(--1w-surface);
}

.hero-swiper__link {
    display: block;
    line-height: 0;
}

.hero-swiper__link img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: center;
}

.hero-swiper__controls {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 5;
    background: rgba(13, 19, 28, .75);
    padding: 6px 12px;
    border-radius: 30px;
    border: 1px solid var(--1w-border);
    backdrop-filter: blur(6px);
}

.hero-swiper__prev,
.hero-swiper__next {
    position: static;
    margin: 0;
    width: 30px;
    height: 30px;
    color: var(--1w-cyan);
    background: transparent;
}

.hero-swiper__prev::after,
.hero-swiper__next::after {
    font-size: 14px;
    font-weight: 700;
}

.hero-swiper__pagination {
    position: static;
    width: auto !important;
    display: flex;
    gap: 6px;
}

.hero-swiper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, .35);
    opacity: 1;
    width: 8px;
    height: 8px;
    margin: 0 !important;
    transition: .25s;
}

.hero-swiper .swiper-pagination-bullet-active {
    background: var(--1w-cyan);
    width: 22px;
    border-radius: 4px;
    box-shadow: 0 0 8px var(--1w-glow);
}

/* ── Content Area ── */
.front-container {
    background: var(--1w-bg);
    padding-bottom: 20px;
}

.content-area {
    margin-bottom: 30px;
    background: var(--1w-surface);
    border-radius: 16px;
    border: 1px solid var(--1w-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .25);
    overflow: hidden;
    position: relative;
}

.content-area::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--1w-blue), var(--1w-cyan), var(--1w-green), var(--1w-blue));
    background-size: 200% 100%;
    animation: contentShimmer 4s linear infinite;
}

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

.content-area .home-content {
    padding: 32px 28px;
}

.content-area h1 {
    color: var(--1w-text);
    font-size: 26px;
    margin-bottom: 22px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--1w-border);
    position: relative;
}

.content-area h1::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--1w-blue);
    box-shadow: 0 0 10px var(--1w-glow);
}

.content-area h2,
.content-area h3,
.content-area h4 {
    color: var(--1w-text);
}

.content-area h2 {
    margin-top: 28px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.content-area h2::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: var(--1w-blue);
    box-shadow: 0 0 8px var(--1w-glow);
    flex-shrink: 0;
    transform: rotate(45deg);
}

.content-area p,
.content-area li {
    color: var(--1w-text-muted);
}

.content-area a { color: var(--1w-cyan); }
.content-area a:hover { color: var(--1w-text); }

.content-area .page-cover {
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid var(--1w-border);
}

.content-area .page-content { line-height: 1.75; }

/* ── Footer ── */
.site-footer {
    background: var(--1w-surface);
    border-top: 1px solid var(--1w-border);
    margin-top: 10px;
}

.site-footer__promo {
    padding: 32px 0;
    background: linear-gradient(135deg, rgba(0, 150, 255, .08) 0%, transparent 60%);
}

.footer-promo-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 28px;
    border-radius: 14px;
    border: 1px solid var(--1w-border);
    background: rgba(0, 0, 0, .2);
    flex-wrap: wrap;
}

.footer-promo-card__label {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--1w-cyan);
    margin-bottom: 6px;
}

.footer-promo-card__text strong {
    display: block;
    font-size: 20px;
    color: var(--1w-text);
    margin-bottom: 4px;
}

.footer-promo-card__text p {
    margin: 0;
    font-size: 14px;
    color: var(--1w-text-muted);
}

.footer-promo-card__actions {
    display: flex;
    gap: 10px;
}

.site-footer__grid {
    padding: 0 0 20px;
}

.footer-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}

.footer-card {
    padding: 20px;
    border-radius: 12px;
    background: var(--1w-surface-2);
    border: 1px solid var(--1w-border);
    transition: border-color .2s, box-shadow .2s;
}

.footer-card:hover {
    border-color: rgba(0, 150, 255, .35);
    box-shadow: 0 0 20px rgba(0, 150, 255, .08);
}

.footer-card__num {
    font-size: 28px;
    font-weight: 800;
    color: rgba(0, 150, 255, .2);
    line-height: 1;
    margin-bottom: 8px;
}

.footer-card strong {
    display: block;
    color: var(--1w-text);
    font-size: 15px;
    margin-bottom: 4px;
}

.footer-card span {
    font-size: 12px;
    color: var(--1w-text-muted);
    line-height: 1.4;
}

.pics {
    border-top: 1px solid var(--1w-border);
    padding: 24px 0;
    text-align: center;
}

.pics__title {
    width: 100%;
    text-align: center;
    color: var(--1w-text-muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin: 0 0 14px;
    font-weight: 600;
}

.pics img {
    filter: invert(70%) sepia(20%) saturate(500%) hue-rotate(180deg);
    margin: 4px 12px;
    max-width: 110px;
    vertical-align: middle;
    opacity: .7;
    transition: opacity .2s;
}

.pics img:hover { opacity: 1; }

.copyright {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--1w-border);
    color: var(--1w-text-muted);
    font-size: 13px;
    padding: 24px 0 16px;
    gap: 12px;
}

.copyright p { margin: 0; }

.copyright ul {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    list-style: none;
    margin: 0;
}

.copyright ul li a {
    color: var(--1w-text-muted);
    font-size: 13px;
    transition: color .2s;
}

.copyright ul li a:hover { color: var(--1w-cyan); }

/* ── Content typography ── */
.front-container h1, .front-container h2 { font-size: 22px; }
.front-container h3 { font-size: 18px; }
.front-container ul, .front-container ol { list-style: none; }
.front-container ul li, .front-container ol li { position: relative; }
.front-container ul { margin: 15px 0; }
.front-container ul li { padding-left: 18px; margin-bottom: 4px; }
.front-container ul li:before {
    content: "";
    position: absolute;
    left: 0; top: 11px;
    width: 6px; height: 6px;
    background: var(--1w-blue);
    border-radius: 2px;
    transform: rotate(45deg);
}
.front-container ol { margin: 19px 0; counter-reset: list-counter; }
.front-container ol li { padding-left: 40px; margin-bottom: 15px; counter-increment: list-counter; }
.front-container ol li:before {
    content: counter(list-counter);
    position: absolute; left: 0; top: -4px;
    width: 28px; height: 28px;
    line-height: 28px; text-align: center;
    border-radius: 6px;
    color: #fff; font-weight: 700; font-size: 13px;
    background: linear-gradient(135deg, var(--1w-blue), var(--1w-blue-dark));
}

blockquote {
    margin: 0 0 15px;
    padding: 12px 16px;
    border-left: 3px solid var(--1w-blue);
    background: rgba(0, 150, 255, .06);
    border-radius: 0 8px 8px 0;
    font-size: 16px;
    font-style: italic;
    color: var(--1w-text-muted);
}

table {
    border-collapse: collapse;
    margin: 0 0 15px;
    width: 100%;
    border: 1px solid var(--1w-border);
}

table thead { font-weight: 700; }
table td, table th {
    border: 1px solid var(--1w-border);
    padding: 10px 15px;
    color: var(--1w-text-muted);
}

.grid { display: flex; flex-wrap: wrap; margin: 15px 0; gap: 15px; }
.grid .column {
    flex: 1 0 0;
    padding: 15px;
    border: 1px solid var(--1w-border);
    border-radius: 10px;
    background: rgba(0, 0, 0, .15);
}
.grid .column p { margin-top: 0; }

@media (max-width: 767px) {
    .grid .column { flex: 0 0 100%; }
}

.table-responsive {
    margin: 15px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.table-responsive table { margin-bottom: 0; }

.home-content { padding-bottom: 0; }

.button-primary {
    align-items: center;
    display: inline-grid;
    width: 100%;
    font-size: 18px;
    justify-content: center;
    min-height: 50px;
    border: none;
    cursor: pointer;
    font-weight: 700;
    letter-spacing: var(--font-secondary-letter-spacing);
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--1w-blue) 0%, var(--1w-blue-dark) 100%);
    border-radius: 8px;
    color: #fff;
    padding: 12px 20px;
    box-shadow: 0 4px 16px rgba(0, 150, 255, .3);
    transition: .2s;
}

.button-primary:hover {
    background: linear-gradient(135deg, var(--1w-cyan) 0%, var(--1w-blue) 100%);
    color: #fff;
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .site-header__bar { justify-content: center; }
    .site-header__nav { flex: 0 0 100%; order: 3; }
    .footer-cards { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
    .main-slider { margin: 20px auto 24px; padding: 0 12px; }
    .hero-swiper__prev, .hero-swiper__next { display: none; }
    .content-area .home-content { padding: 22px 18px; }
    .content-area h1 { font-size: 22px; }
    .footer-promo-card { flex-direction: column; text-align: center; }
    .footer-promo-card__actions { justify-content: center; }
    .pics img { max-width: 90px; margin: 4px 8px; }
    .site-header__trust { justify-content: center; }
    .top-ticker__track { gap: 12px; }
}

@media (max-width: 575px) {
    .site-header__actions { width: 100%; justify-content: center; }
    .btn-1w { padding: 9px 16px; font-size: 12px; }
    .copyright p, .copyright ul { flex: 0 0 100%; justify-content: center; text-align: center; }
    .top-ticker__item:nth-child(n+3) { display: none; }
}

@media (max-width: 400px) {
    .site-header__nav ul { justify-content: center; }
    .site-header__nav li a { padding: 7px 10px; font-size: 12px; }
}
