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

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

:root {
    --c-red: #E20A03;
    --c-dark: #182133;
    --c-white: #FFFFFF;
    --c-light: #f5f5f7;
    --c-border: #e0e0e0;
    --c-text: #1a1a2e;
    --c-muted: #6b7280;
    --c-gold: #f59e0b;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 24px rgba(0,0,0,0.10);
    --shadow-lg: 0 8px 40px rgba(226,10,3,0.13);
    --transition: 0.25s ease;
}

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

body {
    font-family: 'Roboto', Arial, sans-serif;
    background: var(--c-white);
    color: var(--c-text);
    line-height: 1.6;
    min-height: 100vh;
}

a {
    color: inherit;
    text-decoration: none;
}

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

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

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


.site-header {
    background: var(--c-red);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 16px rgba(226,10,3,0.18);
}

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

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

.header-logo img {
    height: 52px;
    width: auto;
    border-radius: 6px;
}

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

.header-nav a {
    color: #fff;
    font-size: 0.88rem;
    font-weight: 500;
    padding: 6px 11px;
    border-radius: 6px;
    transition: background var(--transition);
    white-space: nowrap;
}

.header-nav a:hover {
    background: rgba(255,255,255,0.18);
}

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

.online-count {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.85);
    background: rgba(0,0,0,0.22);
    padding: 3px 10px;
    border-radius: 20px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px;
}

.online-count::before {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ade80;
    animation: pulse-dot 1.8s infinite;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 20px;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    white-space: nowrap;
    text-decoration: none !important;
}

.btn--login {
    background: var(--c-dark);
    color: #fff;
}

.btn--login:hover {
    background: #243352;
    transform: translateY(-1px);
}

.btn--signup {
    background: var(--c-white);
    color: var(--c-red);
}

.btn--signup:hover {
    background: #ffe0de;
    transform: translateY(-1px);
}

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

.btn--red:hover {
    background: #c40800;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(226,10,3,0.35);
}

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

.btn--dark:hover {
    background: #243352;
    transform: translateY(-2px);
}

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

.btn--xl {
    padding: 16px 48px;
    font-size: 1.15rem;
    border-radius: var(--radius);
}

.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    background: rgba(255,255,255,0.15);
    border-radius: 6px;
    border: none;
    gap: 5px;
    padding: 8px;
}

.burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all var(--transition);
}

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

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

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

.hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--c-dark);
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.38;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 640px;
    padding: 60px 0;
}

.hero-content h1 {
    font-size: 2.4rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.hero-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.88);
    margin-bottom: 28px;
    line-height: 1.6;
}

.hero-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.hero-badge {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    font-size: 0.82rem;
    padding: 5px 14px;
    border-radius: 20px;
    font-weight: 500;
}

.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all var(--transition);
}

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

.breadcrumbs {
    padding: 12px 0;
    background: var(--c-light);
    border-bottom: 1px solid var(--c-border);
}

.breadcrumbs ol {
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 0.85rem;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--c-muted);
}

.breadcrumbs li a {
    color: var(--c-red);
}

.breadcrumbs li a:hover {
    text-decoration: underline;
}

.breadcrumbs li:not(:last-child)::after {
    content: '/';
    color: var(--c-border);
}

.section {
    padding: 56px 0;
}

.section--light {
    background: var(--c-light);
}

.section-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--c-dark);
    margin-bottom: 8px;
    line-height: 1.25;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--c-muted);
    margin-bottom: 36px;
    line-height: 1.5;
}

.section-header {
    margin-bottom: 36px;
}

.section-header--center {
    text-align: center;
}

.info-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 0;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    min-width: 420px;
}

.info-table tr {
    border-bottom: 1px solid var(--c-border);
    transition: background var(--transition);
}

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

.info-table tr:hover {
    background: #fef2f2;
}

.info-table td {
    padding: 13px 20px;
    font-size: 0.95rem;
    text-align: left;
    vertical-align: top;
}

.info-table td:first-child {
    font-weight: 600;
    color: var(--c-dark);
    width: 40%;
    border-right: 1px solid var(--c-border);
}

.info-table td:last-child {
    color: var(--c-text);
}

.advantages-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.adv-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 28px 24px;
    flex: 1 1 260px;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 4px solid var(--c-red);
    transition: transform var(--transition), box-shadow var(--transition);
}

.adv-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.adv-card__icon {
    font-size: 2rem;
    line-height: 1;
}

.adv-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--c-dark);
}

.adv-card__text {
    font-size: 0.9rem;
    color: var(--c-muted);
    line-height: 1.5;
}

.winners-block {
    background: var(--c-dark);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.winners-header {
    background: var(--c-red);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.winners-header h3 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 800;
}

.winners-list {
    padding: 8px 0;
    max-height: 420px;
    overflow-y: auto;
}

.winner-row {
    display: flex;
    align-items: center;
    padding: 10px 24px;
    gap: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    animation: fadeInRow 0.4s ease;
}

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

.winner-pos {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--c-gold);
    width: 24px;
    text-align: center;
}

.winner-name {
    flex: 1;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}

.winner-amount {
    font-size: 0.95rem;
    font-weight: 800;
    color: #4ade80;
}

.bonus-cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.bonus-card {
    background: var(--c-dark);
    border-radius: var(--radius);
    padding: 32px 24px;
    flex: 1 1 300px;
    min-width: 260px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition);
}

.bonus-card:hover {
    transform: translateY(-4px);
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: rgba(226,10,3,0.2);
    border-radius: 50%;
}

.bonus-card__tag {
    display: inline-block;
    background: var(--c-red);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bonus-card__value {
    font-size: 2.2rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}

.bonus-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    margin-bottom: 10px;
}

.bonus-card__desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
    margin-bottom: 20px;
}

.demo-wrap {
    background: var(--c-dark);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.demo-wrap iframe {
    width: 100%;
    height: 500px;
    border: none;
    display: block;
}

.demo-header {
    background: var(--c-red);
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.demo-header h3 {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
}

.content-review {
    background: #fff;
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow);
    line-height: 1.75;
}

.content-review h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--c-dark);
    margin: 28px 0 12px;
    line-height: 1.3;
}

.content-review h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--c-dark);
    margin: 22px 0 10px;
}

.content-review h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--c-dark);
    margin: 18px 0 8px;
}

.content-review p {
    font-size: 0.97rem;
    color: var(--c-text);
    margin-bottom: 14px;
}

.content-review ul, .content-review ol {
    margin: 12px 0 16px 24px;
}

.content-review li {
    font-size: 0.97rem;
    color: var(--c-text);
    margin-bottom: 6px;
    line-height: 1.6;
}

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

.content-review table th {
    background: var(--c-red);
    color: #fff;
    padding: 10px 14px;
    text-align: left;
    font-weight: 700;
    font-size: 0.9rem;
}

.content-review table td {
    padding: 10px 14px;
    border-bottom: 1px solid var(--c-border);
    font-size: 0.9rem;
}

.content-review table tr:nth-child(even) td {
    background: var(--c-light);
}

.content-review a {
    color: var(--c-red);
    text-decoration: underline;
}

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

.faq-item {
    background: #fff;
    border-radius: var(--radius-sm);
    border: 1px solid var(--c-border);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.97rem;
    color: var(--c-dark);
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    gap: 12px;
    transition: background var(--transition);
    font-family: inherit;
}

.faq-question:hover {
    background: #fef2f2;
}

.faq-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--c-red);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
    line-height: 1;
    transition: transform var(--transition);
    font-weight: 300;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-inner {
    padding: 0 22px 18px;
    font-size: 0.93rem;
    color: var(--c-muted);
    line-height: 1.65;
}

.author-box {
    background: #fff;
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border-left: 5px solid var(--c-red);
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 3px solid var(--c-red);
}

.author-info__name {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--c-dark);
    margin-bottom: 5px;
}

.author-info__role {
    font-size: 0.82rem;
    color: var(--c-red);
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.author-info__bio {
    font-size: 0.9rem;
    color: var(--c-muted);
    line-height: 1.6;
    margin-bottom: 12px;
}

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

.author-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--c-dark);
    color: #fff;
    font-size: 0.8rem;
    padding: 5px 14px;
    border-radius: 20px;
    font-weight: 600;
    transition: background var(--transition);
}

.author-link:hover {
    background: var(--c-red);
}

.site-footer {
    background: var(--c-dark);
    color: rgba(255,255,255,0.75);
    margin-top: auto;
}

.footer-main {
    padding: 52px 0 32px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 36px;
}

.footer-col {
    flex: 1 1 200px;
    min-width: 160px;
}

.footer-col a{
    display: block;width: fit-content;
}


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

.footer-logo img {
    height: 52px;
    width: auto;
    border-radius: 6px;
}

.footer-desc {
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.55);
}

.footer-col h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.footer-nav a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    transition: color var(--transition);
}

.footer-nav a:hover {
    color: var(--c-red);
}

.footer-payments {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.payment-badge {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255,255,255,0.7);
    transition: background var(--transition);
}

.payment-badge:hover {
    background: rgba(226,10,3,0.2);
}

.provider-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.provider-badge {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 5px;
    padding: 4px 10px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.55);
}

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

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.38);
}

.footer-legal {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255,255,255,0.38);
    transition: color var(--transition);
}

.footer-legal a:hover {
    color: rgba(255,255,255,0.7);
}

.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: var(--c-dark);
    border-top: 3px solid var(--c-red);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
}

.widget-text {
    color: rgba(255,255,255,0.85);
    font-size: 0.88rem;
    font-weight: 500;
}

.widget-text span {
    color: var(--c-gold);
    font-weight: 800;
}

.widget-close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.45);
    font-size: 1.3rem;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: color var(--transition);
}

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

.reviews-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.review-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 24px;
    flex: 1 1 260px;
    min-width: 220px;
    border-top: 4px solid var(--c-red);
}

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

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--c-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--c-red);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.review-name {
    font-weight: 700;
    color: var(--c-dark);
    font-size: 0.95rem;
}

.review-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 10px;
}

.star {
    color: var(--c-gold);
    font-size: 1rem;
}

.review-text {
    font-size: 0.88rem;
    color: var(--c-muted);
    line-height: 1.6;
}

.review-form {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 32px;
    max-width: 540px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.form-group label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--c-dark);
}

.form-group input,
.form-group textarea {
    border: 1.5px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    font-family: inherit;
    font-size: 0.93rem;
    color: var(--c-text);
    outline: none;
    transition: border-color var(--transition);
    background: var(--c-white);
}

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

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

.form-success {
    display: none;
    background: #dcfce7;
    color: #166534;
    border-radius: var(--radius-sm);
    padding: 12px 18px;
    font-size: 0.92rem;
    font-weight: 600;
    margin-top: 10px;
}

.form-success.show {
    display: block;
}

.comparison-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    min-width: 480px;
}

.comparison-table th {
    background: var(--c-red);
    color: #fff;
    padding: 12px 20px;
    text-align: left;
    font-weight: 700;
    font-size: 0.9rem;
}

.comparison-table td {
    padding: 12px 20px;
    border-bottom: 1px solid var(--c-border);
    font-size: 0.92rem;
}

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

.comparison-table tr:nth-child(even) td {
    background: var(--c-light);
}

.badge-rating {
    display: inline-block;
    background: var(--c-red);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
}

.badge-good {
    background: #22c55e;
}

.badge-mid {
    background: #f59e0b;
}

.promo-code-block {
    background: var(--c-dark);
    border-radius: var(--radius);
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.promo-code-block::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 60% 40%, rgba(226,10,3,0.2) 0%, transparent 70%);
    pointer-events: none;
}

.promo-code-label {
    font-size: 0.88rem;
    font-weight: 700;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.promo-code-value {
    font-size: 2.6rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 6px;
    margin-bottom: 14px;
    font-family: monospace;
    background: rgba(255,255,255,0.06);
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    display: inline-block;
    border: 2px dashed rgba(255,255,255,0.2);
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
    z-index: 1;
}

.promo-code-value:hover {
    background: rgba(226,10,3,0.2);
    border-color: var(--c-red);
}

.promo-code-desc {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.app-specs {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.app-specs-header {
    background: var(--c-red);
    padding: 16px 24px;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
}

.app-specs-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}

.app-spec-item {
    flex: 1 1 200px;
    padding: 16px 24px;
    border-right: 1px solid var(--c-border);
    border-bottom: 1px solid var(--c-border);
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.app-spec-item:nth-child(even) {
    border-right: none;
}

.app-spec-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--c-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.app-spec-value {
    font-size: 0.97rem;
    font-weight: 600;
    color: var(--c-dark);
}

.alternatives-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.alt-card {
    background: #fff;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    padding: 20px;
    flex: 1 1 180px;
    min-width: 160px;
    text-align: center;
    transition: transform var(--transition);
}

.alt-card:hover {
    transform: translateY(-3px);
}

.alt-card__name {
    font-weight: 700;
    color: var(--c-dark);
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.alt-card__desc {
    font-size: 0.78rem;
    color: var(--c-muted);
}

.jackpot-block {
    background: var(--c-dark);
    border-radius: var(--radius);
    padding: 36px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.jackpot-block::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(226,10,3,0.3) 0%, transparent 60%);
    pointer-events: none;
}

.jackpot-label {
    font-size: 0.88rem;
    font-weight: 700;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.jackpot-amount {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--c-gold);
    line-height: 1;
    margin-bottom: 10px;
    font-family: monospace;
    text-shadow: 0 0 30px rgba(245,158,11,0.5);
    position: relative;
    z-index: 1;
    animation: countUp 0.5s ease-out;
}

.jackpot-sub {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.55);
    position: relative;
    z-index: 1;
    margin-bottom: 24px;
}

.providers-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: center;
}

.provider-card {
    background: #fff;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    padding: 14px 22px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--c-dark);
    transition: all var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
}

.provider-card:hover {
    border-color: var(--c-red);
    color: var(--c-red);
    transform: translateY(-2px);
}

.reg-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 28px;
}

.reg-method-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 24px;
    flex: 1 1 220px;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 3px solid var(--c-red);
    transition: transform var(--transition);
}

.reg-method-card:hover {
    transform: translateY(-3px);
}

.reg-method-icon {
    font-size: 1.6rem;
}

.reg-method-title {
    font-weight: 700;
    color: var(--c-dark);
    font-size: 0.97rem;
}

.reg-method-desc {
    font-size: 0.85rem;
    color: var(--c-muted);
    line-height: 1.5;
}

.steps-list {
    counter-reset: steps;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #fff;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    padding: 18px 22px;
}

.step-num {
    counter-increment: steps;
    min-width: 36px;
    height: 36px;
    background: var(--c-red);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.step-content h4 {
    font-weight: 700;
    color: var(--c-dark);
    font-size: 0.97rem;
    margin-bottom: 4px;
}

.step-content p {
    font-size: 0.88rem;
    color: var(--c-muted);
    line-height: 1.5;
}

.bonus-promo-card {
    background: var(--c-dark);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 40px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bonus-promo-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(226,10,3,0.18) 0%, transparent 65%);
    pointer-events: none;
}

.bonus-promo-tag {
    display: inline-block;
    background: var(--c-red);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.bonus-promo-value {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.bonus-promo-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: rgba(255,255,255,0.8);
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.bonus-promo-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.official-link-block {
    background: var(--c-light);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    border: 2px dashed var(--c-red);
}

.official-link-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--c-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.official-link-url {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--c-red);
    margin-bottom: 16px;
}

.two-col {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.two-col > * {
    flex: 1 1 400px;
    min-width: 280px;
}

.three-col {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.three-col > * {
    flex: 1 1 280px;
    min-width: 220px;
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 990;
}

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

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.benefit-item {
    background: #fff;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    padding: 22px;
    flex: 1 1 200px;
    min-width: 170px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: transform var(--transition);
}

.benefit-item:hover {
    transform: translateY(-3px);
}

.benefit-icon {
    font-size: 1.5rem;
}

.benefit-title {
    font-weight: 700;
    color: var(--c-dark);
    font-size: 0.93rem;
}

.benefit-desc {
    font-size: 0.83rem;
    color: var(--c-muted);
    line-height: 1.5;
}

.tag-bonus {
    display: inline-block;
    background: #dcfce7;
    color: #166534;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 20px;
}

.tag-new {
    display: inline-block;
    background: #fef3c7;
    color: #92400e;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 20px;
}

.main-content {
    flex: 1;
}

.pt0 { padding-top: 0; }
.pb0 { padding-bottom: 0; }
.mb4 { margin-bottom: 16px; }
.mb8 { margin-bottom: 32px; }
.text-center { text-align: center; }
.text-red { color: var(--c-red); }
.text-white { color: #fff; }


.technical-content {
    background: #fff;
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow);
    line-height: 1.75;
}

.technical-content h2 {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--c-dark);
    margin: 28px 0 12px;
}

.technical-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--c-dark);
    margin: 22px 0 10px;
}

.technical-content p {
    font-size: 0.95rem;
    color: var(--c-text);
    margin-bottom: 14px;
}

.technical-content ul, .technical-content ol {
    margin: 12px 0 16px 24px;
}

.technical-content li {
    font-size: 0.95rem;
    color: var(--c-text);
    margin-bottom: 6px;
    line-height: 1.65;
}

.x7f3b2 { position: relative; }
.k9m4n1 { display: block; }
.p2q8r5 { font-weight: inherit; }
.j6s1w3 { line-height: inherit; }

@media (max-width: 1024px) {
    .header-nav a {
        font-size: 0.80rem;
        padding: 5px 6px;
    }
    .header-inner {gap: 10px;}
}

@media (max-width: 768px) {
    .header-nav {
        display: none;
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        background: var(--c-dark);
        flex-direction: column;
        align-items: stretch;
        padding: 12px 16px;
        gap: 4px;
        z-index: 995;
        border-bottom: 3px solid var(--c-red);
    }

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

    .header-nav a {
        color: rgba(255,255,255,0.85);
        font-size: 0.95rem;
        padding: 11px 14px;
        border-radius: var(--radius-sm);
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .burger {
        display: flex;
    }

    .online-count {
        display: none;
    }

    .hero-content h1 {
        font-size: 1.6rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .hero {
        min-height: 340px;
    }

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

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

    .two-col > * {
        flex: 1 1 100%;
    }

    .author-box {
        flex-direction: column;
    }

    .content-review {
        padding: 20px;
    }

    .section {
        padding: 36px 0;
    }

    .jackpot-amount {
        font-size: 2.4rem;
    }

    .promo-code-value {
        font-size: 1.8rem;
        letter-spacing: 3px;
    }

    .demo-wrap iframe {
        height: 320px;
    }

    .footer-grid {
        gap: 24px;
    }

    .sticky-widget {
        flex-wrap: wrap;
    }

    .bonus-cards {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 10px;
    }

    .bonus-card {
        flex: 0 0 280px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.35rem;
    }

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

    .btn--xl {
        padding: 13px 28px;
        font-size: 1rem;
    }

    .header-actions .btn {
        padding: 7px 13px;
        font-size: 0.82rem;
    }

    .bonus-promo-value {
        font-size: 2.2rem;
    }
}

.jackpot-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.jackpot-card {
    flex: 1 1 220px;
    max-width: 280px;
    background: var(--c-dark);
    color: var(--c-white);
    border-radius: var(--radius);
    padding: 28px 20px 24px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: transform var(--transition), box-shadow var(--transition);
}

.jackpot-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(226,10,3,0.22);
}

.jackpot-card--mega {
    background: linear-gradient(135deg, #1a0a0a 0%, #3a0a03 100%);
    border: 2px solid var(--c-red);
}

.jackpot-card--major {
    background: linear-gradient(135deg, #182133 0%, #1e2d4a 100%);
    border: 2px solid #2563eb;
}

.jackpot-card--minor {
    background: linear-gradient(135deg, #1a1a0a 0%, #2a2a10 100%);
    border: 2px solid var(--c-gold);
}

.jackpot-card--mini {
    background: linear-gradient(135deg, #0a1a0a 0%, #102010 100%);
    border: 2px solid #22c55e;
}

.jackpot-card__label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.75;
}

.jackpot-card__amount {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--c-gold);
    text-shadow: 0 2px 12px rgba(245,158,11,0.35);
}

.jackpot-card--mega .jackpot-card__amount {
    color: #ff6b6b;
    text-shadow: 0 2px 12px rgba(226,10,3,0.4);
}

.technical-page-wrap {
    max-width: 860px;
    margin: 0 auto;
    padding: 48px 0 64px;
}

.technical-page-wrap h1 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--c-dark);
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 3px solid var(--c-red);
    line-height: 1.25;
}

.author-block {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--c-white);
    border: 1px solid var(--c-border);
    border-left: 4px solid var(--c-red);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
}

.author-block__img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 3px solid var(--c-red);
}

.author-block__info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.author-block__name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--c-dark);
}

.author-block__bio {
    font-size: 0.9rem;
    color: var(--c-muted);
    line-height: 1.55;
}

.author-block__link {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--c-red);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color var(--transition);
    width: fit-content;
}

.author-block__link:hover {
    border-color: var(--c-red);
}

@media (max-width: 600px) {
    .jackpot-grid {
        flex-direction: column;
        align-items: stretch;
    }
    .btn {white-space: wrap;}
    .jackpot-card {
        max-width: 100%;
    }

    .jackpot-card__amount {
        font-size: 1.6rem;
    }

    .technical-page-wrap h1 {
        font-size: 1.45rem;
    }

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

    .author-block__link {
        align-self: center;
    }
}
