@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/roboto-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/roboto-700.woff2') format('woff2');
}


* {
    box-sizing: border-box;
}
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f1f2f4;
    margin: 0;
    padding: 0;
    color: #333;
}
.content-container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 15px;
}
a {
    text-decoration: none;
}
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 8px;
    color: #fff;
    font-weight: 600;
    background-color: #1fad66;
}
.register-btn {
    background-color: #ff0100;
}
.site-header {
    background-color: #1a1d1f;
    height: 70px;
    color: #fff;
}
.header-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.brand-logo img {
    height: 40px;
}
.navigation-menu ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: 20px;
}
.navigation-menu li {
    position: relative;
}
.navigation-menu a,
.navigation-menu label {
    color: #fff;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 6px;
    transition: background .3s;
    display: block;
}
.navigation-menu a:hover,
.navigation-menu label:hover {
    background: #32383e;
}
.action-buttons {
    display: flex;
    gap: 10px;
    padding: 10px 0;
}
.menu-toggle,
.hamburger-icon {
    display: none;
}
.mobile-navigation {
    display: none;
}
.hero-section {
    background-color: #1a1d1f;
    color: #fff;
    padding: 50px 0;
}
.hero-layout {
    display: flex;
    align-items: stretch;
    gap: 20px;
}
.hero-text {
    flex: 1;
}
.hero-image {
    flex: 1;
    position: relative;
}
.hero-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 16px;
}
.bonus-highlight {
    padding: 20px 0;
    text-align: center;
}
.bonus-block {
    display: inline-block;
    text-align: center;
    width: 100%;
    max-width: 1200px;
    padding: 10px;
    box-sizing: border-box;
    border: 4px solid #1a1d1f;
    border-radius: 12px;
}
.bonus-title {
    font-size: 1.5rem;
    font-weight: 500;
    margin: 0 0 10px 0;
    color: #333;
}
.hero-bonus {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 20px 0;
    color: #ff0100;
    display: block;
    animation: pulse-color 1.5s infinite;
}
@keyframes pulse-color {
    0% {
        color: #ff0100;
    }
    50% {
        color: #1a1d1f;
    }
    100% {
        color: #ff0100;
    }
}
.info-section {
    padding: 30px 0;
}
.info-layout {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.info-block {
    background-color: #eaecee;
    padding: 10px;
    border-radius: 16px;
    text-align: center;
}
.info-block i {
    font-size: 32px;
    color: #ff0100;

}
.info-blocks i {
    font-size: 50px;
    color: #ff0100;
}
.info-block .info-title {
    display: block;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    margin: 12px 0 8px 0;
    color: inherit;
}
.games-section {
    padding: 50px 0;
    text-align: center;
}
.games-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.custom-icon {
    font-size: 2em;
    color: #ff0100;
    flex-shrink: 0;
}
.games-section h2 {
    margin: 0;
}
.games-layout {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}
.game-block img {
    width: 100%;
    border-radius: 16px;
    max-width: 100px;
    max-height: 100px;
}
.game-block p {
    margin: 5px 0;
}
.bonus-section {
    position: relative;
    padding: 50px 0;
    overflow: hidden;
    background-color: #1a1d1f;
    color: #ffffff;
}
.bonus-layout {
    max-width: 70%;
    z-index: 1;
    position: relative;
}
.bonus-bg-image {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30%;
    max-width: 30%;
    object-fit: contain;
}
.bonus-logo {
    height: 50px;
}
.promo-section {
    padding: 50px 0;
    background-color: #f1f2f4;
}
.promo-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.promo-block {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}
.promo-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0;
}
.promo-text {
    background-color: #fff;
    padding: 0 10px 10px;
    text-align: left;
    flex-grow: 1;
}
.promo-text h4 {
    font-size: 1.2em;
    font-weight: 700;
    margin: 0 0 5px 0;
    color: #ff0100;
}
.promo-text p {
    font-size: 0.9em;
    margin: 0;
    color: #666;
}
.image-text-section {
    padding: 50px 0;
}
.image-text-layout {
    display: flex;
    align-items: center;
    gap: 10%;
}
.text-block,
.image-block {
    flex: 0 0 45%;
}
.image-block img {
    width: 100%;
    border-radius: 16px;
}
.reverse {
    flex-direction: row-reverse;
}
.text-section {
    padding: 50px 0;
    text-align: left;
}
.text-section h2,
.text-section p,
.text-section table {
    text-align: left;
}
.styled-list {
    list-style: none;
    padding: 0 0 0 20px;
    margin-left: 0;
}
.styled-list li {
    position: relative;
    padding-left: 20px;
}
.styled-list li::before {
    content: '\2022';
    color: #ff0100;
    font-weight: bold;
    position: absolute;
    left: 0;
}
.adaptive-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}
.adaptive-table thead {
    background-color: #1a1d1f;
    color: #fff;
}
.adaptive-table th,
.adaptive-table td {
    padding: 10px;
    border: 1px solid #ddd;
}
.centered-image {
    max-width: 90%;
    margin: 20px auto;
    display: block;
    border-radius: 16px;
}
.color-section {
    padding: 50px 0;
    text-align: center;
    background-color: #eaecee;
    border-radius: 0;
}
.reviews-section {
    padding: 50px 0;
    text-align: center;
}
.reviews-section h2,
.reviews-section p {
    text-align: center;
}
.reviews-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.review-block {
    background-color: #eaecee;
    padding: 20px;
    border-radius: 16px;
    text-align: center;
}
.stars {
    color: gold;
    font-size: 20px;
}
.pros-cons-section {
    padding: 50px 0;
    text-align: center;
    border-radius: 0;
}
.pros-cons-section h2,
.pros-cons-section p {
    text-align: center;
}
.pros-cons-layout {
    display: flex;
    gap: 20px;
}
.pros,
.cons {
    flex: 1;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}
.pros {
    background-color: #d4edda;
}
.cons {
    background-color: #f8d7da;
}
.pros-list li::before {
    color: green;
}
.cons-list li::before {
    color: red;
}
.pros ul,
.cons ul {
    padding-left: 20px;
    text-align: left;
}
.faq-section {
    padding: 50px 0;
}
details {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    font-size: 18px;
}
summary {
    cursor: pointer;
    font-weight: 600;
    font-size: 18px;
}
details div {
    padding-top: 10px;
    font-size: 16px;
}
.site-footer {
    background-color: #1a1d1f;
    color: #fff;
    padding: 50px 0;
}
.footer-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-items: start;
}
.footer-navigation ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.footer-navigation a {
    color: #fff;
}
.social-payments {
    display: flex;
    justify-content: space-between;
    grid-column: span 2;
}
.social-links a {
    color: #fff;
    font-size: 24px;
    margin-right: 10px;
}
.payment-methods img {
    height: 30px;
    margin-left: 10px;
}
.copyright-info {
    grid-column: span 2;
    text-align: center;
}
.responsible-gaming {
    grid-column: span 2;
    text-align: center;
}
.brand-logo {
    grid-column: span 2;
    text-align: center;
}
.footer-navigation {
    grid-column: span 2;
    text-align: center;
}
.footer-navigation ul {
    justify-content: center;
}
section:not(.hero-section):not(.bonus-section),
.btn,
img {
    border-radius: 16px;
}
.secondary-bg {
    background-color: #eaecee;
}
.color-section-bg {
    background-color: #eaecee;
}
.info-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 16px;
    overflow: hidden;
}
.info-table td {
    padding: 15px;
}
.title-col {
    width: 10%;
    text-align: left;
    vertical-align: top;
}
.text-col {
    width: 80%;
    text-align: left;
    vertical-align: top;
}
@media (min-width: 769px) {
    .promo-text .btn {
        left: 0;
    }
}
@media (max-width: 768px) {
    .site-header {
        height: auto;
    }
    .header-layout {
        flex-direction: column;
        padding: 10px 0;
    }
    .navigation-menu {
        display: none;
    }
    .action-buttons {
        margin-top: 10px;
        padding: 0;
    }
    .hamburger-icon {
        display: block;
        position: absolute;
        right: 15px;
        top: 18px;
        font-size: 24px;
        color: #fff;
        background: none;
        border: none;
        cursor: pointer;
        padding: 6px 10px;
        line-height: 1;
    }
    .mobile-navigation.open {
        display: block;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #1a1d1f;
        padding: 20px 15px;
        z-index: 10;
        box-sizing: border-box;
    }
    .mobile-navigation ul {
        list-style: none;
        padding: 0;
    }
    .mobile-navigation li {
        margin: 10px 0;
    }
    .mobile-navigation a {
        color: #fff;
        padding: 6px 12px;
        display: block;
    }
    .hero-layout {
        flex-direction: column;
    }
    .hero-text {
        text-align: center;
    }
    .hero-image {
        position: static;
        min-height: 200px;
    }
    .hero-image img {
        position: static;
        height: auto;
    }
    .hero-section .btn {
        display: block;
        width: calc(100% - 20px);
        margin: 0 auto;
        text-align: center;
        padding: 12px 20px;
        font-size: 1.1rem;
    }
    .info-layout {
        grid-template-columns: repeat(2, 1fr);
    }
    .games-layout {
        grid-template-columns: repeat(2, 1fr);
    }
    .promo-layout {
        grid-template-columns: 1fr;
    }
    .promo-block {
        flex-direction: column;
    }
    .promo-text {
        width: 100%;
        text-align: center;
        padding-bottom: 0;
    }
    .promo-text h4 {
        text-align: center;
    }
    .promo-text .btn {
        position: relative;
        left: auto;
        bottom: auto;
        margin: 10px auto 0;
        display: block;
    }
    .image-text-layout {
        flex-direction: column;
    }
    .reverse {
        flex-direction: column;
    }
    .text-block {
        text-align: center;
    }
    .image-block {
        margin-top: 20px;
    }
    .adaptive-table {
        display: block;
        overflow-x: auto;
        margin: 20px auto;
        width: auto;
        max-width: 100%;
    }
    .centered-image {
        max-width: 100%;
    }
    .reviews-layout {
        grid-template-columns: 1fr;
    }
    .pros-cons-layout {
        flex-direction: column;
    }
    .pros ul,
    .cons ul {
        padding-left: 5px;
    }
    .pros-cons-section .content-container {
        padding: 0 5px;
    }
    .pros-cons-section {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    .pros,
    .cons {
        width: 90%;
        margin: 0 auto;
    }
    .footer-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-navigation ul {
        grid-template-columns: 1fr;
        margin: 0 auto;
    }
    .brand-logo {
        display: block;
        margin: 0 auto;
    }
    .social-payments {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .title-col {
        width: 30%;
    }
    .text-col {
        width: 60%;
    }
    .image-text-section li {
        text-align: left;
    }
    }
    .info-blocks .info-table {
        width: 100%;
    }

    .info-blocks .info-table td {
        vertical-align: middle;
        text-align: center;
        padding: 25px 15px;
    }

    .info-blocks .info-table p {
        text-align: left;
    }

/* ==================================================
   REFRESH 2026: новые блоки
   ================================================== */

/* Update badge (дата обновления + рейтинг в hero) */
.update-badge {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    padding: 10px 16px;
    margin-bottom: 20px;
    background: #fff;
    border-radius: 10px;
    font-size: 13px;
    color: #555;
    border-left: 3px solid #1fad66;
}
.update-badge .bi { color: #1fad66; margin-right: 4px; }
.update-badge .rating-badge {
    margin-left: auto;
    background: #fff7d6;
    color: #a56600;
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 600;
}
.update-badge .rating-badge .bi-star-fill { color: #f5b50a; }
@media (max-width: 560px) {
    .update-badge { justify-content: center; text-align: center; }
    .update-badge .rating-badge { margin-left: 0; }
}

/* Summary (ключевые параметры сеткой) */
.summary-section { padding: 30px 0; }
.summary-table-wrap {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.summary-heading { margin: 0 0 20px; font-size: 22px; }
.summary-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.summary-item {
    display: flex;
    flex-direction: column;
    padding: 14px;
    background: #f1f2f4;
    border-radius: 8px;
}
.summary-item .summary-label {
    font-size: 12px;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}
.summary-item strong { font-size: 16px; color: #1a1d1f; }
@media (max-width: 768px) {
    .summary-grid { grid-template-columns: repeat(2, 1fr); }
}

/* TOC */
.toc-section { padding: 20px 0; }
.toc-details {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e6e8ec;
}
.toc-details > summary {
    list-style: none;
    cursor: pointer;
    padding: 16px 20px;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.toc-details > summary::-webkit-details-marker { display: none; }
.toc-chevron { margin-left: auto; transition: transform .2s; }
.toc-details[open] .toc-chevron { transform: rotate(180deg); }
.toc-nav { padding: 0 20px 18px; }
.toc-nav ol {
    margin: 0;
    padding-left: 22px;
    line-height: 1.9;
}
.toc-nav a { color: #1fad66; }
.toc-nav a:hover { text-decoration: underline; }

/* Info-blocks stack (новая вёрстка вместо FA таблиц) */
.info-blocks-stack { padding: 20px 15px; }
.info-row {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}
.info-row .info-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eafdf2;
    color: #1fad66;
    border-radius: 50%;
    font-size: 22px;
}
.info-row .info-text p { margin: 0; }

/* Semantic forms (login/register) */
.semantic-form {
    background: #f7f9fb;
    border: 1px solid #e4e7eb;
    border-radius: 10px;
    padding: 18px;
    margin-top: 16px;
}
.semantic-form .form-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 12px;
}
.semantic-form label {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #333;
}
.semantic-form input {
    padding: 10px 12px;
    border: 1px solid #d0d4da;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
}
.semantic-form input:focus {
    outline: none;
    border-color: #1fad66;
    box-shadow: 0 0 0 2px rgba(31,173,102,0.2);
}
.semantic-form .form-submit {
    width: 100%;
    padding: 12px;
    border: none;
    font-size: 14px;
    cursor: pointer;
}

/* Reviews aggregate rating */
.reviews-aggregate {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
    padding: 14px 18px;
    background: #fff7d6;
    border-radius: 8px;
}
.reviews-aggregate .aggregate-rating strong { font-size: 26px; color: #1a1d1f; }
.reviews-aggregate .rating-stars { color: #f5b50a; letter-spacing: 2px; font-size: 18px; }
.reviews-aggregate .aggregate-count { color: #666; font-size: 14px; }
.review-block .review-author { display: block; margin-bottom: 8px; color: #555; font-size: 14px; }

/* FAQ с chevron */
.faq-intro { margin-bottom: 18px; color: #555; }
.faq-accordion .faq-item {
    background: #fff;
    border: 1px solid #e6e8ec;
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
}
.faq-accordion .faq-item > summary {
    list-style: none;
    cursor: pointer;
    padding: 14px 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.faq-accordion .faq-item > summary::-webkit-details-marker { display: none; }
.faq-accordion .faq-item > summary .bi-chevron-down { transition: transform .2s; }
.faq-accordion .faq-item[open] > summary .bi-chevron-down { transform: rotate(180deg); }
.faq-accordion .faq-answer { padding: 0 18px 16px; color: #444; }
.faq-accordion .faq-answer p { margin: 0; }

/* Footer grid */
.site-footer { background: #1a1d1f; color: #ccc; padding: 40px 0 20px; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}
.footer-col .footer-tagline { font-size: 13px; color: #999; margin-top: 12px; }
.footer-title { font-size: 15px; color: #fff; margin: 0 0 12px; }
.footer-title-sm { margin-top: 18px; }
.footer-nav { list-style: none; padding: 0; margin: 0; }
.footer-nav li { margin-bottom: 6px; }
.footer-nav a { color: #bbb; font-size: 13px; }
.footer-nav a:hover { color: #1fad66; }
.footer-col .payment-methods { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.footer-col .payment-methods img { width: auto; height: 28px; object-fit: contain; }
.footer-col .social-links { display: flex; gap: 12px; }
.footer-col .social-links a {
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    background: #2c3034;
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
}
.footer-col .social-links a:hover { background: #1fad66; }
.footer-bottom {
    border-top: 1px solid #2c3034;
    padding-top: 20px;
    font-size: 12px;
}
.footer-bottom .responsible-gaming { color: #999; margin: 0 0 10px; }
.footer-bottom .responsible-gaming a { color: #1fad66; }
.footer-bottom .copyright-info p { margin: 0; color: #777; }
@media (max-width: 991px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
    .footer-grid { grid-template-columns: 1fr; }
}

/* Mirror CTA */
.mirror-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-top: 18px;
    padding: 16px 20px;
    background: #eafdf2;
    border-left: 4px solid #1fad66;
    border-radius: 8px;
}
.mirror-cta .mirror-status {
    color: #1b7e4a;
    font-size: 14px;
    font-weight: 600;
}
.mirror-cta .mirror-status .bi { margin-right: 4px; color: #1fad66; }

/* NDFL calculator */
.ndfl-calc {
    background: #fff;
    border: 1px solid #d6dbe0;
    border-left: 4px solid #1fad66;
    border-radius: 10px;
    padding: 22px;
    margin: 20px 0;
}
.calc-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.calc-field { display: flex; flex-direction: column; }
.calc-field label { font-size: 13px; font-weight: 600; margin-bottom: 6px; color: #333; }
.calc-field input {
    padding: 10px 12px;
    border: 1px solid #d0d4da;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
}
.calc-field input:focus {
    outline: none;
    border-color: #1fad66;
    box-shadow: 0 0 0 2px rgba(31,173,102,0.2);
}
.calc-results { margin-top: 8px; padding-top: 14px; border-top: 1px dashed #e0e3e8; }
.calc-row-result {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 14px;
}
.calc-row-result strong { color: #1a1d1f; }
.calc-info {
    margin-top: 14px;
    padding: 12px 14px;
    border-radius: 6px;
    border-left: 3px solid;
    font-size: 14px;
    line-height: 1.5;
}
.calc-info.info-success { background: #eafdf2; border-left-color: #1fad66; color: #1b7e4a; }
.calc-info.info-warning { background: #fff7d6; border-left-color: #f5b50a; color: #8c6a00; }
.calc-info.info-neutral { background: #f1f2f4; border-left-color: #888; color: #555; }
@media (max-width: 560px) {
    .calc-inputs { grid-template-columns: 1fr; }
}

/* Author box (E-E-A-T) */
.author-box {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    margin: 40px 0;
}
.author-box__avatar {
    flex-shrink: 0;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
}
.author-box__info h3 { margin: 0 0 4px; font-size: 18px; }
.author-box__role { display: block; color: #1fad66; font-weight: 600; font-size: 13px; margin-bottom: 10px; }
.author-box__bio { margin: 0 0 10px; font-size: 14px; color: #555; }
.author-box__social { display: flex; gap: 10px; }
.author-box__social a {
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    background: #f1f2f4;
    border-radius: 50%;
    color: #1a1d1f;
    font-size: 14px;
}
.author-box__social a:hover { background: #1fad66; color: #fff; }
@media (max-width: 560px) {
    .author-box { flex-direction: column; align-items: center; text-align: center; }
}

/* Update strip (fake freshness plate) */
.update-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 14px 20px;
    background: #fff;
    border-left: 4px solid #1fad66;
    border-radius: 8px;
    margin: 30px 0;
    font-size: 14px;
}
.update-strip .update-item {
    display: flex;
    gap: 8px;
    color: #555;
}
.update-strip .update-item strong { color: #1a1d1f; }
.update-strip .update-item .bi { color: #1fad66; font-size: 16px; }

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 14px;
    z-index: 1000;
    background: #1a1d1f;
    border: 1px solid #2c3034;
    border-radius: 14px;
    box-shadow: 0 12px 36px rgba(0,0,0,0.35), 0 0 0 1px rgba(31,173,102,0.2);
    padding: 10px 12px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: opacity .25s ease, transform .25s ease;
    max-width: 560px;
    margin: 0 auto;
}
.sticky-cta.visible { pointer-events: auto; }
.sticky-cta.visible { opacity: 1; transform: translateY(0); }
.sticky-cta .sticky-close {
    position: absolute;
    top: 6px;
    right: 8px;
    width: 24px;
    height: 24px;
    border: none;
    background: transparent;
    color: #888;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
}
.sticky-cta .sticky-close:hover { color: #fff; }
.sticky-cta .sticky-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    padding-right: 32px;
}
.sticky-cta .sticky-logo {
    flex-shrink: 0;
    width: 48px;
    height: auto;
    background: transparent;
    border-radius: 0;
    padding: 0;
}
.sticky-cta .sticky-text {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    line-height: 1.2;
    min-width: 0;
}
.sticky-cta .sticky-title {
    font-size: 12px;
    color: #1fad66;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
.sticky-cta .sticky-sub {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.sticky-cta .sticky-btn {
    flex-shrink: 0;
    padding: 8px 16px;
    background: #1fad66;
    color: #fff;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
}
.sticky-cta .sticky-link:hover .sticky-btn { background: #179856; }

/* Десктоп — крупнее, прижат в правый нижний угол */
@media (min-width: 768px) {
    .sticky-cta {
        left: auto;
        right: 24px;
        bottom: 24px;
        max-width: 460px;
        padding: 18px 22px;
        border-radius: 18px;
    }
    .sticky-cta .sticky-link { gap: 18px; padding-right: 36px; }
    .sticky-cta .sticky-logo { width: 72px; padding: 0; border-radius: 0; }
    .sticky-cta .sticky-title { font-size: 13px; }
    .sticky-cta .sticky-sub { font-size: 17px; margin-top: 4px; }
    .sticky-cta .sticky-btn { padding: 12px 26px; font-size: 16px; border-radius: 10px; }
    .sticky-cta .sticky-close { top: 10px; right: 12px; width: 30px; height: 30px; font-size: 26px; }
}