:root {
    --bg: #030535;
    --header-bg: #141F61;
    --btn-login: #141D5F;
    --btn-reg: #449E66;
    --text: #e8eaf6;
    --text-muted: #9fa8da;
    --accent: #f5c518;
    --accent2: #449E66;
    --border: #1e2d7d;
    --card-bg: #0a1045;
    --card2-bg: #0d1550;
    --radius: 10px;
    --radius-lg: 16px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    min-height: 100vh;
}

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

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

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

ul, ol {
    padding-left: 1.4em;
}

.bx7k3-wrap {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.zt4j6d-section {
    padding: 56px 0;
}

.wh9s1f-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.wh9s1f-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--btn-reg), var(--accent));
    border-radius: 2px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: 6px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
    text-decoration: none;
    gap: 6px;
    white-space: nowrap;
}

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

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

.btn-login {
    background: var(--btn-login);
    color: #fff;
    border: 1px solid #2a3a9f;
}

.btn-login:hover {
    background: #1e2d7d;
    color: #fff;
}

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

.btn-reg:hover {
    background: #389958;
    color: #fff;
}

.btn-bonus {
    background: linear-gradient(135deg, #449E66, #2d7a4f);
    color: #fff;
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: 8px;
}

.btn-bonus:hover {
    background: linear-gradient(135deg, #389958, #246040);
    color: #fff;
}

.btn-lg {
    padding: 14px 36px;
    font-size: 1.05rem;
    border-radius: 8px;
}

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

.btn-outline:hover {
    background: var(--btn-reg);
    color: #fff;
}

.np3x7-header {
    background: var(--header-bg);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}

.np3x7-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 68px;
    gap: 16px;
}

.np3x7-logo img {
    height: 44px;
    width: auto;
    border-radius: 4px;
}

.np3x7-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.np3x7-nav a {
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
}

.np3x7-nav a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

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

.np3x7-online {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--text-muted);
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid var(--border);
}

.np3x7-online-dot {
    width: 7px;
    height: 7px;
    background: var(--btn-reg);
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
}

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

.np3x7-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: 6px;
    transition: background 0.2s;
}

.np3x7-burger:hover {
    background: rgba(255, 255, 255, 0.08);
}

.np3x7-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

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

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

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

.np3x7-mobile-menu {
    display: none;
    background: var(--header-bg);
    border-top: 1px solid var(--border);
    padding: 16px 20px;
}

.np3x7-mobile-menu.active {
    display: block;
}

.np3x7-mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 12px;
}

.np3x7-mobile-nav a {
    color: var(--text);
    font-weight: 500;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.np3x7-mobile-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

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

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

.yk3m5v-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(3, 5, 53, 0.85) 0%, rgba(20, 31, 97, 0.6) 100%);
    z-index: 1;
}

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

.yk3m5v-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(68, 158, 102, 0.2);
    border: 1px solid var(--btn-reg);
    color: #6de09a;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.yk3m5v-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 16px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

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

.yk3m5v-hero-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 560px;
    margin-bottom: 32px;
    line-height: 1.6;
}

.yk3m5v-hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.yk3m5v-hero-bonus {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 197, 24, 0.12);
    border: 1px solid rgba(245, 197, 24, 0.4);
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
    margin-top: 20px;
}

.ln8p0c-toc {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    margin-bottom: 32px;
}

.ln8p0c-toc-title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.ln8p0c-toc-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ln8p0c-toc-list li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ln8p0c-toc-list a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color 0.2s, padding-left 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 2px 0;
}

.ln8p0c-toc-list a::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--btn-reg);
    border-radius: 50%;
    flex-shrink: 0;
    transition: background 0.2s;
}

.ln8p0c-toc-list a:hover {
    color: #fff;
    padding-left: 4px;
}

.ln8p0c-toc-list a:hover::before {
    background: var(--accent);
}

.ln8p0c-toc-num {
    font-size: 0.75rem;
    color: var(--text-muted);
    min-width: 20px;
}

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

.rv7q4-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 540px;
}

.rv7q4-table th, .rv7q4-table td {
    text-align: left;
    padding: 12px 18px;
    border: 1px solid var(--border);
    font-size: 0.9rem;
    line-height: 1.5;
}

.rv7q4-table th {
    background: rgba(20, 31, 97, 0.8);
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.rv7q4-table tr:nth-child(even) td {
    background: rgba(10, 16, 69, 0.6);
}

.rv7q4-table tr:hover td {
    background: rgba(30, 45, 125, 0.5);
}

.rv7q4-table td:first-child {
    color: var(--text-muted);
    font-weight: 500;
    width: 42%;
}

.rv7q4-table td:last-child {
    color: #fff;
    font-weight: 500;
}

.rv7q4-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(68, 158, 102, 0.15);
    color: #6de09a;
    border: 1px solid rgba(68, 158, 102, 0.4);
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.wn8m2z-block {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
}

.wn8m2z-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
}

.wn8m2z-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: var(--card2-bg);
    border-radius: 8px;
    border: 1px solid var(--border);
    font-size: 0.88rem;
    transition: border-color 0.2s;
}

.wn8m2z-item:hover {
    border-color: var(--btn-reg);
}

.wn8m2z-rank {
    font-weight: 800;
    color: var(--accent);
    min-width: 28px;
    font-size: 1rem;
}

.wn8m2z-nick {
    flex: 1;
    color: #fff;
    font-weight: 500;
    padding: 0 8px;
}

.wn8m2z-sum {
    color: #6de09a;
    font-weight: 700;
    white-space: nowrap;
}

.wn8m2z-podium {
    color: var(--accent);
    font-size: 1.1rem;
}

.ap5k9t-block {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
}

.ap5k9t-inner {
    display: flex;
    gap: 36px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.ap5k9t-info {
    flex: 1;
    min-width: 240px;
}

.ap5k9t-dl {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 20px;
}

.ap5k9t-dl-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--card2-bg);
    border: 1px solid var(--border);
    color: #fff;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: border-color 0.2s, background 0.2s;
    text-decoration: none;
}

.ap5k9t-dl-btn:hover {
    border-color: var(--btn-reg);
    background: rgba(68, 158, 102, 0.1);
    color: #fff;
}

.ap5k9t-dl-icon {
    font-size: 1.4rem;
}

.ap5k9t-dl-text {
    display: flex;
    flex-direction: column;
}

.ap5k9t-dl-sub {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 400;
}

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

.ap5k9t-table {
    border-collapse: collapse;
    width: 100%;
    min-width: 300px;
}

.ap5k9t-table th, .ap5k9t-table td {
    padding: 10px 14px;
    text-align: left;
    border: 1px solid var(--border);
    font-size: 0.87rem;
}

.ap5k9t-table th {
    background: rgba(20, 31, 97, 0.8);
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.ap5k9t-table td:first-child {
    color: var(--text-muted);
}

.ap5k9t-table td:last-child {
    color: #fff;
    font-weight: 500;
}

.dm5t4n-slot {
    background: linear-gradient(135deg, #0a1045, #0d1a70);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
}

.dm5t4n-slot-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 8px;
}

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

.dm5t4n-reels-wrap {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 28px;
}

.dm5t4n-reel {
    width: 90px;
    height: 90px;
    background: #030535;
    border: 2px solid var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 2px 12px rgba(0, 0, 0, 0.5);
    transition: border-color 0.3s;
}

.dm5t4n-reel.spinning {
    border-color: var(--accent);
    animation: reel-shake 0.1s infinite;
}

.dm5t4n-reel.win {
    border-color: var(--btn-reg);
    box-shadow: 0 0 18px rgba(68, 158, 102, 0.5);
}

@keyframes reel-shake {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(2px);
    }
}

.dm5t4n-reel-symbol {
    transition: opacity 0.1s;
    user-select: none;
}

.dm5t4n-spin-btn {
    background: linear-gradient(135deg, var(--btn-reg), #2d7a4f);
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    padding: 14px 48px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
    letter-spacing: 0.03em;
}

.dm5t4n-spin-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(68, 158, 102, 0.4);
}

.dm5t4n-spin-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.dm5t4n-result {
    margin-top: 24px;
    padding: 20px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    display: none;
}

.dm5t4n-result.win {
    display: block;
    background: rgba(68, 158, 102, 0.15);
    border: 1px solid var(--btn-reg);
    color: #6de09a;
}

.dm5t4n-result.lose {
    display: block;
    background: rgba(200, 60, 60, 0.12);
    border: 1px solid rgba(200, 60, 60, 0.4);
    color: #f87171;
}

.dm5t4n-result-title {
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.dm5t4n-result-sub {
    font-size: 0.9rem;
    opacity: 0.85;
    margin-bottom: 14px;
}

.dm5t4n-get-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--btn-reg);
    color: #fff;
    padding: 11px 28px;
    border-radius: 7px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    margin-top: 4px;
}

.dm5t4n-get-btn:hover {
    background: #389958;
    color: #fff;
    transform: translateY(-1px);
}

.dm5t4n-prob {
    color: var(--text-muted);
    font-size: 0.78rem;
    margin-top: 12px;
}

.cf1b8z-faq {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cf1b8z-item {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.2s;
}

.cf1b8z-item.open {
    border-color: rgba(68, 158, 102, 0.5);
}

.cf1b8z-q {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: left;
    padding: 18px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transition: background 0.2s;
}

.cf1b8z-q:hover {
    background: rgba(255, 255, 255, 0.04);
}

.cf1b8z-arrow {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.8rem;
    color: var(--text-muted);
    transition: transform 0.3s, border-color 0.3s, color 0.3s;
}

.cf1b8z-item.open .cf1b8z-arrow {
    transform: rotate(180deg);
    border-color: var(--btn-reg);
    color: var(--btn-reg);
}

.cf1b8z-a {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease, padding 0.3s;
}

.cf1b8z-a-inner {
    padding: 0 20px 18px;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

.cf1b8z-item.open .cf1b8z-a {
    max-height: 400px;
}

.mx2d7k-footer {
    background: var(--header-bg);
    padding: 48px 0 24px;
    margin-top: 64px;
    border-top: 1px solid var(--border);
}

.mx2d7k-footer-top {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 32px;
}

.mx2d7k-footer-logo {
    flex: 0 0 auto;
}

.mx2d7k-footer-logo img {
    height: 40px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.mx2d7k-footer-desc {
    color: var(--text-muted);
    font-size: 0.82rem;
    max-width: 220px;
    line-height: 1.6;
}

.mx2d7k-footer-col {
    flex: 1;
    min-width: 140px;
}

.mx2d7k-footer-col h4 {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.mx2d7k-footer-col ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mx2d7k-footer-col a {
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: color 0.2s;
}

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

.mx2d7k-payments {
    margin-bottom: 20px;
}

.mx2d7k-payments h4 {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.mx2d7k-pm-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.mx2d7k-pm-item {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 4px 12px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
}

.mx2d7k-providers {
    margin-bottom: 24px;
}

.mx2d7k-providers h4 {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.mx2d7k-prov-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.mx2d7k-prov-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 4px 12px;
    font-size: 0.78rem;
    color: var(--text-muted);
}

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

.mx2d7k-copyright {
    color: var(--text-muted);
    font-size: 0.78rem;
}

.mx2d7k-legal {
    color: var(--text-muted);
    font-size: 0.75rem;
    max-width: 600px;
    line-height: 1.5;
}

.mx2d7k-18plus {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.65rem;
    font-weight: 700;
    flex-shrink: 0;
}

.pg6w3y-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: linear-gradient(90deg, #141F61 0%, #0a1045 40%, #1a4d32 100%);
    border-top: 2px solid var(--btn-reg);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.5);
}

.pg6w3y-widget-text {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
}

.pg6w3y-widget-bonus {
    color: var(--accent);
    font-weight: 700;
}

.pg6w3y-widget-close {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1;
    padding: 4px;
    transition: color 0.2s;
}

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

.content-text h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin: 28px 0 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}

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

.content-text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    margin: 16px 0 8px;
}

.content-text p {
    color: var(--text-muted);
    margin-bottom: 14px;
    line-height: 1.75;
}

.content-text ul, .content-text ol {
    color: var(--text-muted);
    margin-bottom: 14px;
    padding-left: 1.5em;
}

.content-text li {
    margin-bottom: 6px;
    line-height: 1.6;
}

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

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

.content-text table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
}

.content-text table th, .content-text table td {
    border: 1px solid var(--border);
    padding: 10px 14px;
    text-align: left;
    font-size: 0.9rem;
}

.content-text table th {
    background: rgba(20, 31, 97, 0.8);
    color: var(--text-muted);
}

.content-text table td {
    color: var(--text-muted);
}

.content-text blockquote {
    border-left: 3px solid var(--btn-reg);
    padding: 10px 16px;
    margin: 16px 0;
    background: rgba(68, 158, 102, 0.05);
    border-radius: 0 6px 6px 0;
    color: var(--text-muted);
    font-style: italic;
}

.author-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    margin-top: 32px;
}

.author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--btn-login), var(--btn-reg));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    flex-shrink: 0;
}

.author-name {
    font-weight: 700;
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.author-title {
    color: var(--text-muted);
    font-size: 0.82rem;
    line-height: 1.5;
}

.author-link {
    color: var(--btn-reg);
    font-size: 0.82rem;
    display: inline-block;
    margin-top: 4px;
}

.sep-grad {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
    margin: 48px 0;
}

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

.lm9q2-spacer {
    height: 0;
    overflow: hidden;
    visibility: hidden;
}

.nr5p1-unused {
    opacity: 0;
    pointer-events: none;
    position: absolute;
}

@media (max-width: 900px) {
    .np3x7-nav {
        display: none;
    }

    .np3x7-burger {
        display: flex;
    }

    .np3x7-online {
        display: none;
    }

    .yk3m5v-hero {
        min-height: 380px;
    }

    .ap5k9t-inner {
        flex-direction: column;
    }

    .mx2d7k-footer-top {
        flex-direction: column;
        gap: 24px;
    }
}

@media (max-width: 600px) {
    .yk3m5v-hero-content {
        padding: 48px 16px;
    }

    .zt4j6d-section {
        padding: 36px 0;
    }

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

    .dm5t4n-reel {
        width: 72px;
        height: 72px;
        font-size: 1.8rem;
    }

    .pg6w3y-widget {
        padding: 10px 40px 10px 16px;
    }

    .pg6w3y-widget-text {
        font-size: 0.82rem;
    }
}

body {
    padding-bottom: 72px;
}

.ptseds {
    width: 100%;
    max-width: 980px;
    margin: 48px auto;
    padding: 40px;
    background: rgba(10, 16, 69, .92);
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .35);
    overflow: hidden;
}

.ptseds h1 {
    font-size: clamp(1.8rem, 4vw, 2.7rem);
    line-height: 1.2;
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
}

.ptseds h2 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    line-height: 1.3;
    color: #fff;
    font-weight: 700;
    margin: 42px 0 18px;
}

.ptseds h3 {
    font-size: 1.15rem;
    color: #fff;
    font-weight: 700;
    margin: 30px 0 14px;
}

.ptseds p {
    font-size: .96rem;
    line-height: 1.85;
    color: var(--text-muted);
    margin-bottom: 18px;
    word-break: break-word;
    overflow-wrap: break-word;
}

.ptseds strong,
.ptseds b {
    color: #fff;
    font-weight: 700;
}

.ptseds a {
    color: var(--accent);
    text-decoration: underline;
    word-break: break-word;
    overflow-wrap: anywhere;
    transition: color .2s ease;
}

.ptseds a:hover {
    color: var(--btn-reg);
}

.ptseds ul,
.ptseds ol {
    padding-left: 22px;
    margin: 18px 0;
}

.ptseds li {
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 10px;
}

.ptseds blockquote {
    margin: 28px 0;
    padding: 18px 22px;
    border-left: 4px solid var(--btn-reg);
    background: rgba(68, 158, 102, .08);
    border-radius: 0 12px 12px 0;
    color: #d7def7;
}

.ptseds table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    display: block;
    overflow-x: auto;
}

.ptseds table th,
.ptseds table td {
    border: 1px solid var(--border);
    padding: 12px 16px;
    text-align: left;
    white-space: nowrap;
}

.ptseds table th {
    background: rgba(20, 31, 97, .85);
    color: #fff;
}

.ptseds table td {
    color: var(--text-muted);
}

.ptseds img,
.ptseds iframe,
.ptseds video {
    max-width: 100%;
    border-radius: 14px;
}

@media (max-width: 768px) {
    .ptseds {
        margin: 28px auto;
        padding: 24px 18px;
        border-radius: 18px;
    }

    .ptseds h1 {
        font-size: 1.7rem;
        line-height: 1.25;
        margin-bottom: 18px;
    }

    .ptseds h2 {
        font-size: 1.28rem;
        margin: 32px 0 14px;
    }

    .ptseds h3 {
        font-size: 1.05rem;
        margin: 24px 0 12px;
    }

    .ptseds p,
    .ptseds li {
        font-size: .92rem;
        line-height: 1.75;
    }

    .ptseds table th,
    .ptseds table td {
        padding: 10px 12px;
        font-size: .84rem;
    }

    .ptseds blockquote {
        padding: 16px;
        font-size: .9rem;
    }
}

@media (max-width: 480px) {
    .ptseds {
        padding: 20px 14px;
        border-radius: 16px;
    }

    .ptseds h1 {
        font-size: 1.45rem;
    }

    .ptseds h2 {
        font-size: 1.14rem;
    }

    .ptseds p,
    .ptseds li {
        font-size: .88rem;
        line-height: 1.7;
    }

    .ptseds a {
        font-size: .88rem;
    }
}

@media (max-width: 768px) {
    #winners {
        padding: 38px 0;
    }

    #winners .wh9s1f-title {
        font-size: 1.45rem;
        line-height: 1.2;
        margin-bottom: 20px;
        text-align: center;
    }

    #winners .wh9s1f-title::after {
        left: 50%;
        transform: translateX(-50%);
        width: 48px;
    }

    #winners .wn8m2z-block {
        padding: 16px;
        border-radius: 16px;
    }

    #winners .wn8m2z-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    #winners .wn8m2z-item {
        min-width: 0;
        padding: 12px 14px;
        border-radius: 12px;
        gap: 10px;
        align-items: center;
    }

    #winners .wn8m2z-rank {
        min-width: 24px;
        font-size: .92rem;
    }

    #winners .wn8m2z-podium {
        font-size: 1rem;
    }

    #winners .wn8m2z-nick {
        min-width: 0;
        flex: 1;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: .84rem;
        padding: 0;
    }

    #winners .wn8m2z-sum {
        flex-shrink: 0;
        font-size: .8rem;
        text-align: right;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    #winners .wn8m2z-block {
        padding: 14px 12px;
    }

    #winners .wn8m2z-item {
        padding: 11px 12px;
    }

    #winners .wn8m2z-nick {
        font-size: .78rem;
    }

    #winners .wn8m2z-sum {
        font-size: .74rem;
    }
}

@media (max-width: 360px) {
    #winners .wn8m2z-item {
        display: grid;
        grid-template-columns: 22px 1fr;
        row-gap: 4px;
    }

    #winners .wn8m2z-sum {
        grid-column: 2;
        text-align: left;
    }
}