/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2d1b3d;
    --secondary-color: #3d2b4d;
    --accent-color: #6b4c93;
    --text-color: #333;
    --text-light: #666;
    --bg-color: #f8f6fa;
    --card-bg: #ffffff;
    --border-color: #e0d8e8;
    --hover-color: #8b6fb8;
    --transition: all 0.3s ease;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--bg-color);
    font-size: 16px;
}

.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */
.header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: static;
    z-index: 100;
}

.header-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
}

.logo-img {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

.logo a:hover .logo-img {
    transform: scale(1.05);
    opacity: 0.9;
}

.main-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    max-width: 80vw;
    height: 100vh;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 0;
    transition: right 0.3s ease;
    z-index: 1000;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
}

.main-nav.active {
    right: 0;
    display: flex;
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 1rem;
    margin-bottom: 0.5rem;
    border-radius: 5px;
    transition: var(--transition);
    font-size: 1rem;
    width: 100%;
    text-align: left;
}

.main-nav a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.main-nav a.active {
    background-color: rgba(255, 255, 255, 0.3);
    font-weight: 600;
}

/* Burger Menu - Mobile First */
.burger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.burger-menu span {
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 3px;
    transition: var(--transition);
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Page Title Section */
.page-title-section {
    background: linear-gradient(135deg, #6b4c93 0%, #8b6fb8 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.page-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.mobile-casino-button {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.9rem 2rem;
    background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.mobile-casino-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.5);
    background: linear-gradient(135deg, #9333ea 0%, #a855f7 100%);
}

.mobile-casino-button {
    display: inline-block;
}

/* Main Content */
.main-content {
    padding: 2rem 0;
    min-height: calc(100vh - 200px);
}

.article {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 100%;
}

.article .top__item--other {
    width: 100%;
    max-width: 100%;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* Article Meta Information */
.article-meta {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    background: linear-gradient(135deg, #f8f6fa 0%, #ede9f3 100%);
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--accent-color);
    align-items: flex-start;
}

@media screen and (max-width: 480px) {
    .article-meta {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.8rem 1rem;
        align-items: center;
    }

    .meta-item {
        white-space: nowrap;
        flex-shrink: 0;
    }

    .meta-label,
    .meta-value {
        font-size: 0.7rem;
    }
}

@media screen and (max-width: 991px) {
    .article-meta {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.8rem 1rem;
        align-items: center;
    }

    .meta-item {
        white-space: nowrap;
        flex-shrink: 0;
    }

    .meta-label,
    .meta-value {
        font-size: 0.7rem;
    }
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
}

.meta-label {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.75rem;
}

.meta-value {
    color: var(--text-color);
    font-size: 0.75rem;
}

.author-link {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.author-link:hover {
    color: var(--hover-color);
    text-decoration: underline;
}

/* Sections */
section {
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

section:nth-child(1) { animation-delay: 0.1s; }
section:nth-child(2) { animation-delay: 0.2s; }
section:nth-child(3) { animation-delay: 0.3s; }
section:nth-child(4) { animation-delay: 0.4s; }
section:nth-child(5) { animation-delay: 0.5s; }

section h2 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--accent-color);
    position: relative;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--hover-color);
    transition: width 0.3s ease;
}

section:hover h2::after {
    width: 100px;
}

section p {
    margin-bottom: 1.2rem;
    text-align: justify;
    line-height: 1.8;
}

/* Casino Cards */
.casino-card {
    background: linear-gradient(135deg, #f8f6fa 0%, #ede9f3 100%);
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.casino-card:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left-color: var(--hover-color);
}

.casino-card.top-casino {
    background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
    border-left: 4px solid #a855f7;
    border: 2px solid #a855f7;
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.3);
    position: relative;
}

.casino-card.top-casino:hover {
    box-shadow: 0 6px 25px rgba(168, 85, 247, 0.4);
    transform: translateY(-3px);
}

.top-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 2px 10px rgba(168, 85, 247, 0.5);
    z-index: 10;
}

.casino-logo {
    margin-bottom: 1.5rem;
    text-align: center;
}

.casino-logo img {
    max-width: 180px;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: var(--transition);
}

.casino-card:hover .casino-logo img {
    transform: scale(1.05);
}

.casino-card h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
}

.casino-card.top-casino h3 {
    color: #9333ea;
}

.casino-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.casino-card p {
    margin-bottom: 0;
    text-align: center;
}

.casino-card strong {
    color: var(--accent-color);
    font-weight: 600;
}

.casino-link,
.top-card__btn.referral-btn {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.7rem 2rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--hover-color) 100%);
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    text-align: center;
    cursor: pointer;
    font-family: inherit;
}

.casino-link:hover,
.top-card__btn.referral-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(107, 76, 147, 0.3);
    background: linear-gradient(135deg, var(--hover-color) 0%, var(--accent-color) 100%);
}

.casino-card.top-casino .casino-link,
.casino-card.top-casino .top-card__btn.referral-btn {
    background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
    box-shadow: 0 2px 8px rgba(168, 85, 247, 0.4);
}

.casino-card.top-casino .casino-link:hover,
.casino-card.top-casino .top-card__btn.referral-btn:hover {
    background: linear-gradient(135deg, #9333ea 0%, #a855f7 100%);
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.5);
}

/* Process Steps */
.process-step {
    background: #f8f6fa;
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 6px;
    transition: var(--transition);
}

.process-step:hover {
    background: #ede9f3;
    transform: translateX(5px);
}

.process-step h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

/* Withdrawal Info */
.withdrawal-info {
    background: #fff;
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    transition: var(--transition);
}

.withdrawal-info:hover {
    border-color: var(--accent-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.withdrawal-info h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

/* Comparison Table */
.comparison-table {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    min-width: 800px;
}

.comparison-table thead {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.comparison-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
}

.comparison-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.2s ease;
}

.comparison-table tbody tr:hover {
    background-color: #f8f6fa;
}

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

/* Quality Criteria */
.quality-criteria {
    background: #f8f6fa;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
    transition: var(--transition);
}

.quality-criteria:hover {
    transform: translateX(5px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.quality-criteria h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

/* FAQ Section */
.faq-section {
    background: #f8f6fa;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.faq-item {
    background: white;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
    transition: var(--transition);
    cursor: pointer;
}

.faq-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

/* Summary Section */
.summary-section {
    background: linear-gradient(135deg, #f8f6fa 0%, #ede9f3 100%);
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid var(--accent-color);
}

/* Author Section */
.author-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.author-card {
    display: flex;
    gap: 2rem;
    background: #f8f6fa;
    padding: 2rem;
    border-radius: 10px;
    align-items: flex-start;
}

.author-image {
    flex-shrink: 0;
}

.author-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-color);
    transition: var(--transition);
}

.author-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.author-info {
    flex: 1;
}

.author-info p {
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 1.5rem 0 0.8rem;
    margin-top: 3rem;
    border-top: 2px solid var(--accent-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.2rem;
    margin-bottom: 1rem;
}

.footer-column h3 {
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
    color: #c084fc;
    border-bottom: 1px solid rgba(192, 132, 252, 0.3);
    padding-bottom: 0.3rem;
}

.footer-column p {
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8rem;
    margin-bottom: 0.4rem;
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 0.2rem;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.8rem;
    display: inline-block;
}

.footer-nav a:hover {
    color: #c084fc;
    transform: translateX(3px);
    padding-left: 3px;
}

.footer-disclaimer {
    margin-top: 0.8rem;
    padding: 0.6rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    border-left: 2px solid #a855f7;
}

.footer-disclaimer p {
    font-size: 0.75rem;
    line-height: 1.5;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.footer-disclaimer strong {
    color: #a855f7;
    font-size: 0.8rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 0.8rem;
    text-align: center;
}

.footer-bottom p {
    margin: 0.2rem 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
}

.footer-meta {
    font-size: 0.75rem !important;
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease forwards;
}

/* Scroll Animations */
.scroll-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile First - Tablet and Desktop */
@media (min-width: 481px) {
    .container {
        padding: 0 20px;
    }

    .article-meta {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 1.5rem;
        padding: 1rem 1.5rem;
    }

    .meta-label,
    .meta-value {
        font-size: 0.8rem;
    }

    .casino-logo img {
        max-width: 200px;
        max-height: 80px;
    }

    .casino-card h3 {
        font-size: 1.3rem;
    }

    .article {
        padding: 2rem;
    }

    section h2 {
        font-size: 1.6rem;
    }

    .page-title-section {
        padding: 2.5rem 0;
    }
}

@media (min-width: 769px) {
    .container {
        max-width: 1200px;
        padding: 0 20px;
    }

    .burger-menu {
        display: none;
    }

    .main-nav {
        display: flex;
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
        padding: 0;
        gap: 1.5rem;
        box-shadow: none;
        overflow: visible;
    }

    .main-nav.active {
        right: auto;
    }

    .main-nav a {
        width: auto;
        padding: 0.5rem 1rem;
        margin-bottom: 0;
        text-align: center;
        font-size: 0.95rem;
    }

    .main-nav a:hover {
        transform: translateY(-2px);
    }

    .mobile-casino-button {
        display: none;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .main-content {
        padding: 3rem 0;
    }

    .article {
        padding: 2.5rem;
    }

    section h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .article-meta {
        flex-wrap: nowrap;
        gap: 2rem;
        padding: 1.5rem;
    }

    .meta-label,
    .meta-value {
        font-size: 0.9rem;
    }

    .author-card {
        flex-direction: row;
        text-align: left;
    }

    .author-image {
        margin: 0;
    }

    .comparison-table {
        font-size: 1rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 1rem;
    }

    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.2rem;
    }

    .footer-column h3 {
        font-size: 0.95rem;
    }

    .footer {
        padding: 1.5rem 0 0.8rem;
    }

    .page-title-section {
        padding: 3rem 0;
    }

    /* Top Cards Desktop Layout */
    .top__list {
        gap: 2.4rem 0;
        margin-bottom: 2.4rem;
        justify-content: flex-start;
        align-items: stretch;
        width: 100%;
    }

    .top__item {
        display: flex;
        max-width: 100%;
    }

    .top__item--first {
        order: 2;
        padding-bottom: 2rem;
    }

    .top__item--second {
        order: 1;
        padding-top: 5.6rem;
        display: flex;
        align-items: stretch;
    }

    .top__item--third {
        order: 3;
        padding-top: 5.6rem;
        display: flex;
        align-items: stretch;
    }

    .top:not(.top--alt) .top__item--first,
    .top:not(.top--alt) .top__item--second,
    .top:not(.top--alt) .top__item--third {
        width: 32%;
        margin: 0;
    }

    .top__item--other {
        width: 100%;
        max-width: 100%;
        order: 4;
        margin: 0;
    }

    .top__card {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .top__item--second .top__card,
    .top__item--third .top__card {
        height: 100%;
    }

    .top__card-inner {
        display: flex;
        flex-direction: column;
        flex: 1;
    }

    .top__item--second .top__card-inner,
    .top__item--third .top__card-inner {
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .top__body {
        display: flex;
        flex-direction: column;
    }

    .top__item--second .top__body,
    .top__item--third .top__body {
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .top__right {
        display: flex;
        flex-direction: column;
    }

    .top__item--second .top__right,
    .top__item--third .top__right {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .top__img {
        max-height: 15rem;
    }

    .top__left-head {
        margin-bottom: 1.1rem;
    }

    .top__bonus {
        padding: 1.3rem 0.8rem 1.3rem 2.2rem;
    }

    .top__payments-list img,
    .top__more-payments img {
        max-width: 4rem;
        max-height: 2.6rem;
    }
}

/* Mobile and Tablet adjustments */
@media screen and (min-width: 576px) {
    .top__item {
        max-width: 37rem;
    }
}

@media screen and (min-width: 992px) {
    .top__item--other .top__card {
        padding: 1.4rem;
        border: 0.8rem solid var(--border-color);
        margin: 0;
        box-sizing: border-box;
        overflow: visible;
        width: 100%;
        max-width: 100%;
        height: 253.2px;
        min-height: 253.2px;
        max-height: 253.2px;
        background: var(--card-bg);
        border-radius: 1.6rem;
    }

    .top__item--other .top__card-inner {
        display: flex;
        flex-direction: column;
        overflow: hidden;
        width: 100%;
        height: 100%;
        box-sizing: border-box;
    }

    .top__item--other .top__card-content {
        display: flex;
        flex-direction: row;
        flex: 1;
        min-height: 0;
        align-items: center;
        position: relative;
    }

    .top__item--other .top__head {
        display: flex;
        flex-shrink: 0;
        margin-bottom: 0;
        padding-left: 0.8rem;
        padding-right: 0.5rem;
        width: auto;
        align-items: center;
        justify-content: center;
        align-self: center;
        position: relative;
    }
    
    /* Позиционирование псевдоэлемента ::before для top__item--other в левом верхнем углу top__card-content */
    .top__item--other .top__head::before {
        position: absolute;
        top: -1.4rem;
        left: -1.4rem;
        z-index: 10;
    }
    
    /* Центрирование логотипа для Rodeoslots */
    .top__item--other .top__head img[alt="Rodeoslots"],
    .top__item--other .top__head img[src*="rodeoslot"] {
        align-self: center;
        margin: 0 auto;
    }
    
    /* Центрирование контейнера для Rodeoslots */
    .top__item--other .top__head:has(img[alt="Rodeoslots"]),
    .top__item--other .top__head:has(img[src*="rodeoslot"]) {
        align-items: center !important;
    }
    
    /* Альтернативный способ без :has() - используем nth-child для первого top__item--other */
    .top__list .top__item--other:nth-of-type(4) .top__head {
        align-items: center !important;
    }

    .top__item--other .top__head .top__img {
        width: auto;
        height: auto;
        max-width: 12rem;
        max-height: 7rem;
        object-fit: contain;
    }

    .top__item--other .top__img2 {
        background-color: #000;
        width: auto;
        height: auto;
        max-width: 12rem;
        max-height: 7rem;
        object-fit: contain;
    }

    .top__item--other .top__body {
        position: relative;
        display: flex;
        flex-direction: row;
        width: 100%;
        padding: 0.3rem 0.5rem 0.3rem 0;
        box-sizing: border-box;
        flex: 1;
        min-height: 0;
        min-width: 0;
        align-items: flex-start;
        gap: 0;
        align-self: flex-end;
    }

    .top__item--other .top__left {
        display: flex;
        flex-direction: column;
        flex: 1;
        min-width: 0;
        margin: 0 0.8rem 0 0;
        padding: 0;
        box-sizing: border-box;
    }

    .top__item--other .top__left > * {
        width: 100%;
        flex-shrink: 0;
        box-sizing: border-box;
    }

    .top__item--other .top__left-head {
        display: flex;
        margin-top: 0.1rem;
        margin-bottom: 0.2rem;
    }

    .top__item--other .top__subtitle {
        font-size: 1.1rem;
        font-weight: bold;
        margin: 0;
        line-height: 1.3;
    }

    .top__item--other .top__rating {
        margin: 0 0 0.3rem;
    }

    .top__item--other .top__rating .rating {
        height: auto;
        font-size: 0.9rem;
        min-width: 5rem;
    }
    
    .top__item--other .top__rating .rating::before,
    .top__item--other .top__rating .rating::after {
        letter-spacing: 0.1rem;
    }

    .top__item--other .top__info {
        border: 0.1rem dashed #e9d5ff;
        border-top: none;
        border-bottom: none;
        gap: 0.2rem;
        padding: 0.2rem 0;
        margin: 0;
    }

    .top__item--other .top__info li {
        padding: 0.15rem 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .top__item--other .top__info-label {
        font-size: 0.7rem;
        margin-bottom: 0.1rem;
        line-height: 1.3;
        color: #666;
    }

    .top__item--other .top__info-text {
        font-size: 0.8rem;
        line-height: 1.3;
        font-weight: bold;
        color: #000;
    }

    .top__item--other .top__right {
        flex-shrink: 0;
        width: 16rem;
        margin-left: 0.5rem;
        margin-right: 0.5rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-self: flex-end;
    }

    .top__item--other .top__bonus {
        margin: 0 0 0.4rem;
        padding: 0.5rem 0.6rem;
        background: #f6f4ff;
        border-radius: 0.6rem;
        flex-shrink: 0;
    }

    .top__item--other .top__bonus-text {
        font-size: 0.75rem;
        line-height: 1.3;
        margin: 0;
        display: flex;
        align-items: center;
        gap: 0.3rem;
    }

    .top__item--other .top__bonus-img {
        width: 1.4rem;
        height: 1.4rem;
        flex-shrink: 0;
    }

    .top__item--other .top__payments {
        position: absolute;
        bottom: 1.8rem;
        left: 2.7rem;
        right: 30rem;
        max-width: 36.8rem;
        margin: 0;
        display: none;
    }

    .top__item--other .top__payments,
    .top__item--other .top__payments.hidden {
        display: none !important;
    }

    .top__item--other .top__btns {
        flex-shrink: 0;
        margin-top: auto;
    }

    .top__item--other .top__btns button,
    .top__item--other .top__btns .referral-btn {
        margin-bottom: 0;
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        font-weight: bold;
        line-height: 1.2;
        width: 100%;
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
        color: white;
        border: none;
        border-radius: 0.5rem;
        cursor: pointer;
        text-transform: uppercase;
    }

    .top__item--other .top__bottom-payments {
        display: flex;
        align-items: center;
        width: calc(100% + 2.8rem);
        margin: 0.3rem -1.4rem -1.4rem -1.4rem;
        padding: 0.4rem 1rem;
        background: #f3e8ff;
        border-radius: 0 0 0.8rem 0.8rem;
        box-sizing: border-box;
        flex-shrink: 0;
    }

    /* Скрываем кнопку на десктопе */
    .top__item--other .top__bottom-payments-toggle {
        display: none !important;
    }

    .top__item--other .top__bottom-payments-list {
        display: flex;
        flex-wrap: wrap;
        gap: 0.3rem 0.8rem;
        margin: 0;
        padding: 0;
        list-style: none;
        align-items: center;
    }

    /* Показываем все платежки на десктопе */
    .top__item--other .top__bottom-payments-list li {
        display: flex !important;
        align-items: center;
    }

    .top__item--other .top__bottom-payments-list img {
        max-width: 2.5rem;
        max-height: 1.5rem;
        width: auto;
        height: auto;
        object-fit: contain;
    }

    .top__item--other .top__bottom-payments-list img[src$=".svg"],
    .top__item--other .top__bottom-payments-list img[src*=".svg"] {
        width: 100%;
    }

    .top__item--other .top__more-payments {
        right: 1.6rem;
        left: auto;
        transform: translateY(95%);
    }

    .top__item--other .top__bonus-img {
        width: 2.6rem;
        height: 2.8rem;
    }
}

@media screen and (min-width: 1200px) {
    .top__item--other .top__head-btn {
        width: 33.5rem;
    }

    .top__item--other .top__left {
        flex: 1;
        min-width: 20rem;
        max-width: none;
        margin: 0 1rem 0 0;
        padding: 0;
    }

    .top__item--other .top__right {
        width: 16rem;
        flex-shrink: 0;
    }
}

@media screen and (max-width: 991px) {
    .top__item .top__card,
    .top__item .top__body,
    .top__item .top__right {
        display: flex;
        flex-direction: column;
    }

    .top__item--other .top__card {
        height: auto;
        min-height: auto;
        max-height: none;
        padding: 1.2rem;
        border: 0.1rem solid var(--border-color);
    }

    .top__item--other .top__card-inner {
        flex-direction: column;
        height: auto;
    }

    .top__item--other .top__card-content {
        flex-direction: column;
        align-items: stretch;
    }

    .top__item--other .top__head {
        padding-left: 0;
        padding-right: 0;
        margin-bottom: 1.5rem;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .top__item--other .top__head .top__img {
        max-width: 150px;
        max-height: 80px;
        width: auto;
        height: auto;
    }

    .top__item--other .top__body {
        flex-direction: column;
        padding: 0;
        width: 100%;
    }

    .top__item--other .top__left {
        margin: 0 0 1rem 0;
        max-width: 100%;
        width: 100%;
    }

    .top__item--other .top__subtitle {
        font-size: 1.3rem;
        text-align: center;
    }

    .top__item--other .top__rating {
        justify-content: center;
        margin: 0.5rem 0;
    }

    .top__item--other .top__info {
        border: none;
        gap: 0.8rem;
        padding: 0;
        margin: 0;
    }

    .top__item--other .top__info li {
        align-items: center;
        text-align: center;
    }

    .top__item--other .top__info-label {
        font-size: 0.75rem;
    }

    .top__item--other .top__info-text {
        font-size: 0.85rem;
        white-space: nowrap;
    }

    .top__item--other .top__right {
        width: 100%;
        margin: 0;
    }

    .top__item--other .top__bonus {
        margin: 0 0 1.2rem 0;
        padding: 1rem;
        text-align: center;
    }

    .top__item--other .top__bonus-text {
        font-size: 0.9rem;
        justify-content: center;
    }

    .top__item--other .top__bonus-img {
        width: 20px;
        height: 21px;
    }

    .top__item--other .top__payments {
        position: static;
        left: auto;
        right: auto;
        max-width: 100%;
        margin: 0 0 1.2rem 0;
        display: block;
    }

    .top__item--other .top__payments-list {
        justify-content: center;
    }

    .top__item--other .top__btns {
        width: 100%;
    }

    .top__item--other .top__btns button,
    .top__item--other .top__btns .referral-btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
    }

    .top__item--other .top__bottom-payments {
        display: flex;
        flex-direction: column;
        margin: 1rem -1.2rem -1.2rem -1.2rem;
        width: calc(100% + 2.4rem);
        padding: 0.8rem 1rem;
        background: #f3e8ff;
        border-radius: 0 0 1.6rem 1.6rem;
    }

    .top__item--other .top__bottom-payments-list {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .top__item--other .top__bottom-payments-list li {
        display: flex;
        align-items: center;
        flex-shrink: 0;
    }

    /* Скрываем платежки после 6-й на мобильных */
    .top__item--other .top__bottom-payments-list li:nth-child(n+7) {
        display: none;
    }

    /* Показываем все при активном состоянии */
    .top__item--other .top__bottom-payments.expanded .top__bottom-payments-list li {
        display: flex !important;
    }

    /* Кнопка "Показать еще" */
    .top__item--other .top__bottom-payments-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 0.8rem;
        padding: 0.6rem 1rem;
        background: rgba(168, 85, 247, 0.1);
        border: 1px solid rgba(168, 85, 247, 0.3);
        border-radius: 0.5rem;
        color: #6b4c93;
        font-size: 0.85rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        width: 100%;
    }

    .top__item--other .top__bottom-payments-toggle:hover {
        background: rgba(168, 85, 247, 0.2);
        border-color: rgba(168, 85, 247, 0.5);
    }

    .top__item--other .top__bottom-payments-toggle::after {
        content: '▼';
        margin-left: 0.5rem;
        font-size: 0.7rem;
        transition: transform 0.3s ease;
    }

    .top__item--other .top__bottom-payments.expanded .top__bottom-payments-toggle::after {
        transform: rotate(180deg);
    }

    /* Компактный размер иконок на мобильных */
    .top__item--other .top__bottom-payments-list img {
        max-width: 32px;
        max-height: 20px;
        width: auto;
        height: auto;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background: var(--accent-color);
    color: white;
}

/* Top Casino Cards Structure (from compet) */
.top {
    margin: 2rem 0;
}

.top__list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.6rem 1rem;
    margin: 0 0 1.6rem;
    padding: 0;
    list-style: none;
    counter-reset: top;
}

.top__item {
    display: flex;
    width: 100%;
    margin: 0;
    counter-increment: top;
    position: relative;
}

.top__item--other {
    margin: 0;
    max-width: 100%;
    width: 100%;
}

.article .top__item--other {
    margin: 0;
    width: 100%;
    max-width: 100%;
}

.article .top__item--other .top__card {
    width: 100%;
    max-width: 100%;
}

@media screen and (min-width: 992px) {
    .article .top__item--other .top__card {
        height: 253.2px;
        min-height: 253.2px;
        max-height: 253.2px;
    }
}

.top__card {
    width: 100%;
    background: var(--card-bg);
    border-radius: 1.6rem;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
}

.top__item--other .top__card {
    width: 100%;
    max-width: 100%;
}

.top__card:hover {
    box-shadow: 0 4px 25px rgba(107, 76, 147, 0.15);
    transform: translateY(-2px);
}

.top__item--first .top__card {
    background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
    border: 2px solid #a855f7;
    box-shadow: 0 4px 25px rgba(168, 85, 247, 0.3);
}

.top__item--first .top__card:hover {
    box-shadow: 0 6px 30px rgba(168, 85, 247, 0.4);
}

.top__card-inner {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}

.top__badge {
    z-index: 2;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 2.8rem;
    line-height: 1.5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.3rem 0.7rem;
    font-size: 1.2rem;
    line-height: 1.3;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    background: #a855f7;
    border-radius: 1.8rem 1.6rem 0 0;
    margin-top: -1.5rem;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
}

.top__head {
    text-align: center;
    margin-bottom: 1.5rem;
}

.top__item--first .top__head {
    background: #9079ea;
    border-radius: 1.8rem 1.6rem 0 0;
    padding: 0.6rem;
    margin: -1.5rem -1.5rem 1.2rem -1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 14rem;
    position: relative;
    overflow: visible;
    z-index: 1;
}

.top__item--first .top__img {
    max-width: 270px;
    max-height: 95px;
    width: 270px;
    height: 95px;
    display: block !important;
    object-fit: contain;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    opacity: 1 !important;
    visibility: visible !important;
    background: transparent;
}

.top__head-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: inline-block;
}

.top__img {
    max-width: 270px;
    max-height: 95px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: var(--transition);
}

.top__head-btn:hover .top__img {
    transform: scale(1.05);
}

.top__body {
    display: flex;
    flex-direction: column;
    width: 100%;
    flex-shrink: 0;
}

.top__left {
    width: 100%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.top__left-head {
    width: 100%;
    flex-shrink: 0;
    text-align: center;
    margin-bottom: 1.1rem;
}

.top__subtitle {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
}

.top__rating {
    display: flex;
    justify-content: center;
    margin: 0.5rem 0;
}

.rating {
    width: auto;
    height: auto;
    min-width: 6rem;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    display: inline-block;
    font-size: 1rem;
    line-height: 1;
    background: none !important;
}

.rating::before {
    content: '★★★★★';
    color: #898797;
    letter-spacing: 0.15rem;
    display: block;
}

.rating::after {
    content: '★★★★★';
    position: absolute;
    left: 0;
    top: 0;
    color: #FDBD13;
    letter-spacing: 0.15rem;
    overflow: hidden;
    white-space: nowrap;
    width: 0;
}

/* 5.0 рейтинг - 100% */
.rating[style*="0% 100%"]::after {
    width: 100%;
}

/* 4.9 рейтинг - 98% */
.rating[style*="2% 98%"]::after {
    width: 98%;
}

/* 4.6 рейтинг - 92% */
.rating[style*="8% 92%"]::after {
    width: 92%;
}

/* 4.5 рейтинг - 90% */
.rating[style*="10% 90%"]::after {
    width: 90%;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.top__info {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
    flex-shrink: 0;
}

.top__info li {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.top__info-label {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 0.2rem;
}

.top__info-text {
    font-size: 0.95rem;
    color: var(--text-color);
    font-weight: 600;
}

.top__right {
    display: flex;
    flex-direction: column;
    width: 100%;
    flex-shrink: 0;
}

.top__bonus {
    margin: 0 0 1.6rem;
    padding: 1.1rem 0.8rem 1.1rem 1.3rem;
    background: #f6f4ff;
    border-radius: 0.8rem;
}

.top__bonus-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

.top__bonus-img {
    width: 20px;
    height: 21px;
    object-fit: contain;
}

.top__payments {
    position: relative;
    width: 100%;
    flex-shrink: 0;
    margin: 0 0 1.6rem;
}

.top__payments-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.top__payments-list li {
    display: flex;
    align-items: center;
}

.top__payments-list img {
    width: 38px;
    height: 30px;
    object-fit: contain;
    opacity: 0.8;
    transition: var(--transition);
}

.top__payments-list img:hover {
    opacity: 1;
    transform: scale(1.1);
}

.top__payments-btn {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 0.4rem 0.8rem;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: var(--transition);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.top__payments-btn:hover {
    background: var(--hover-color);
    transform: translateY(-2px);
}

.top__payments-btn span:last-child {
    display: none;
}

.top__payments-btn.active span:first-child {
    display: none;
}

.top__payments-btn.active span:last-child {
    display: inline;
}

.top__more-payments {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0 0;
    display: none;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.top__more-payments.active {
    display: flex;
}

.top__more-payments li {
    display: flex;
    align-items: center;
}

.top__more-payments img {
    width: 38px;
    height: 30px;
    object-fit: contain;
    opacity: 0.8;
    transition: var(--transition);
}

.top__more-payments img:hover {
    opacity: 1;
    transform: scale(1.1);
}

.top__btns {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
    width: 100%;
    flex-shrink: 0;
}

.referral-btn {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--hover-color) 100%);
    color: white;
    border: none;
    padding: 0.9rem 2.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    text-align: center;
    box-shadow: 0 2px 10px rgba(107, 76, 147, 0.3);
}

.referral-btn:hover {
    background: linear-gradient(135deg, var(--hover-color) 0%, var(--accent-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(107, 76, 147, 0.4);
}

.top__item--first .referral-btn {
    background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
    box-shadow: 0 2px 10px rgba(168, 85, 247, 0.4);
}

.top__item--first .referral-btn:hover {
    background: linear-gradient(135deg, #9333ea 0%, #a855f7 100%);
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.5);
}

/* Компактные стили для первых трех карточек */
.top__item--first .top__card-inner,
.top__item--second .top__card-inner,
.top__item--third .top__card-inner {
    padding: 1.2rem;
}

.top__item--second .top__head,
.top__item--third .top__head {
    min-height: 14rem;
    margin-bottom: 1.2rem;
}

.top__item--first .top__left,
.top__item--second .top__left,
.top__item--third .top__left {
    gap: 0.7rem;
}

.top__item--first .top__left-head,
.top__item--second .top__left-head,
.top__item--third .top__left-head {
    margin-bottom: 0.8rem;
}

.top__item--first .top__subtitle,
.top__item--second .top__subtitle,
.top__item--third .top__subtitle {
    font-size: 1.4rem;
    line-height: 1.2;
}

.top__item--first .top__rating,
.top__item--second .top__rating,
.top__item--third .top__rating {
    margin: 0.3rem 0;
}

.top__item--first .top__info,
.top__item--second .top__info,
.top__item--third .top__info {
    gap: 0.6rem;
}

.top__item--first .top__info-label,
.top__item--second .top__info-label,
.top__item--third .top__info-label {
    font-size: 0.7rem;
    margin-bottom: 0.15rem;
}

.top__item--first .top__info-text,
.top__item--second .top__info-text,
.top__item--third .top__info-text {
    font-size: 0.85rem;
    white-space: nowrap;
}

.top__item--first .top__bonus,
.top__item--second .top__bonus,
.top__item--third .top__bonus {
    margin: 0 0 1.2rem;
    padding: 0.9rem 0.6rem 0.9rem 1rem;
}

.top__item--first .top__bonus-text,
.top__item--second .top__bonus-text,
.top__item--third .top__bonus-text {
    font-size: 0.85rem;
    gap: 0.4rem;
}

.top__item--first .top__bonus-img,
.top__item--second .top__bonus-img,
.top__item--third .top__bonus-img {
    width: 18px;
    height: 19px;
}

.top__item--first .top__payments,
.top__item--second .top__payments,
.top__item--third .top__payments {
    margin: 0 0 1.2rem;
}

.top__item--first .referral-btn,
.top__item--second .referral-btn,
.top__item--third .referral-btn {
    padding: 0.75rem 2rem;
    font-size: 0.9rem;
}

.top__item--first .top__btns,
.top__item--second .top__btns,
.top__item--third .top__btns {
    gap: 0.6rem;
}

/* Выравнивание карточек 2 и 3 по высоте */
@media screen and (min-width: 769px) {
    .top__item--second .top__card,
    .top__item--third .top__card {
        height: 100%;
    }

    .top__item--second .top__card-inner,
    .top__item--third .top__card-inner {
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .top__item--second .top__body,
    .top__item--third .top__body {
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .top__item--second .top__right,
    .top__item--third .top__right {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .top__item--second .top__btns,
    .top__item--third .top__btns {
        margin-top: auto;
    }
}

/* top list styles copy */

.top {
    padding: 0 0 4rem;
    text-align: center;
}
.top__title {
    position: relative;
    z-index: 1;
    margin: 0 0 1.6rem;
    font-size: 2rem;
    line-height: 1.4;
    text-align: left;
}
.top__list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.6rem 1rem;
    margin: 0 0 1.6rem;
    padding: 0;
    list-style: none;
    counter-reset: top;
}
.top__item {
    display: flex;
    width: 100%;
    margin: 0 auto;
    counter-increment: top;
}
@media screen and (min-width: 576px) {
    .top__item {
        max-width: 37rem;
    }
}
@media screen and (max-width: 991px) {
    .top__item .top__card,
    .top__item .top__body,
    .top__item .top__right {
        display: flex;
        flex-direction: column;
    }
    .top__item .top__head,
    .top__item .top__body,
    .top__item .top__left,
    .top__item .top__right,
    .top__item .top__info,
    .top__item .top__payments,
    .top__item .top__btns {
        width: 100%;
        flex-shrink: 0;
    }
    .top__item .top__body,
    .top__item .top__right {
        flex-grow: 1;
    }
    .top__item .top__btns {
        margin-top: auto;
    }
}
.top__item.hidden {
    display: none;
}
.top__card {
    position: relative;
    width: 100%;
    background: #ffffff;
    border-radius: 1.8rem 1.6rem 1.6rem;
    border: 0.1rem solid #d1d2f6;
}
.top__head {
    position: relative;
    margin: 0 0 1.8rem;
}
.top__head:before {
    z-index: 1;
    content: counter(top);
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
    font-weight: 700;
    border-radius: 1.6rem 0;
    background: #d1d2f6;
    width: 3.2rem;
    height: 2.8rem;
}
.top__badge {
    z-index: 1;
    position: absolute;
    top: 23px;
    right: 0;
    left: 0;
    height: 2.8rem;
    line-height: 1.5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.3rem 0.7rem;
    font-size: 1.2rem;
    line-height: 1.3;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    background: #8655f0;
    border-radius: 1.8rem 1.6rem 0 0;
}
.top__badge + .top__head {
    margin-top: 2.8rem;
}
.top__badge + .top__head:before {
    transform: translateY(-100%);
}
.top__badge + .top__head .top__head-btn {
    border-radius: 0;
}
.top__head-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem;
    background: #1f1e23;
    border-radius: 1.8rem 1.6rem 0 0;
    border: none;
    cursor: pointer;
    overflow: hidden;
    width: 100%;
    height: 16.8rem;
}
.top__img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}
.top__body {
    padding: 0 1.5rem 1.6rem;
}
.top__left-head {
    margin: 0 0 0.8rem;
}
.top__subtitle {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 800;
}
.top__left-rating {
    display: none;
}
.top__rating {
    margin: 0 0 1.6rem;
}
.top__rating .rating {
    margin: 0 auto;
}
.top__bonus {
    margin: 0 0 1.6rem;
    padding: 1.1rem 0.8rem 1.1rem 1.3rem;
    background: #f6f4ff;
    border-radius: 0.8rem;
}
.top__bonus-label {
    margin: 0;
    font-size: 1.4rem;
}
.top__bonus-text {
    display: flex;
    align-items: center;
    margin: 0;
    text-align: left;
    font-weight: 700;
    font-size: 1.4rem;
    line-height: 1.2;
}
.top__bonus-img {
    flex-shrink: 0;
    margin-right: 1.6rem;
    width: 2rem;
    height: 2.1rem;
}
.top__info {
    display: flex;
    margin: 0 0 1.6rem;
    padding: 0;
    list-style: none;
}
.top__info li {
    flex-shrink: 0;
    width: 33%;
    padding: 0 0.2rem;
}
.top__info li:nth-child(2) {
    border: 0.1rem dashed #d1d2f6;
    border-top: none;
    border-bottom: none;
}
.top__info-label {
    margin: 0;
    font-size: 1.4rem;
    line-height: 1.4;
    color: #898797;
}
@media screen and (max-width: 991px) {
    .top__info-label svg {
        display: none;
    }
}
.top__info-text {
    margin: 0;
    font-size: 1.6rem;
    line-height: 1.2;
    font-weight: 700;
    word-break: break-word;
}
.top__payments {
    position: relative;
    display: flex;
    align-items: center;
    margin: 0 0 1.6rem;
    line-height: 1;
}
.top__payments-list,
.top__more-payments {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.2rem;
    list-style: none;
}
.top__payments-list li,
.top__more-payments li {
    display: flex;
    align-items: center;
}
.top__payments-list img,
.top__more-payments img {
    max-width: 3.8rem;
    max-height: 3rem;
    font-size: 1.2rem;
    width: auto;
    height: auto;
}
.top__payments-list img[src$=".svg"],
.top__payments-list img[src*=".svg"],
.top__more-payments img[src$=".svg"],
.top__more-payments img[src*=".svg"] {
    width: 100%;
}
.top__payments-list {
    margin: 0;
    padding: 0 0.5rem 0 0;
}
.top__payments-btn {
    flex-shrink: 0;
    margin: 0 0 0 auto;
    padding: 0.1rem;
    font-size: 1.4rem;
    font-weight: 500;
    background: #a855f7;
    border: 0.1rem solid #e4e4ff;
    border-radius: 0.6rem;
    transition:
        background 0.2s,
        color 0.2s;
    cursor: pointer;
    width: 3.2rem;
    height: 2.3rem;
}
.top__payments-btn:not(.top__payments-btn--mobile):hover {
    color: #fff;
    background: #8655f0;
}
.top__payments-btn:not(.top__payments-btn--mobile) span:last-child {
    display: none;
}
.top__payments-btn--mobile span:last-child {
    display: none;
}
.top__payments-btn--mobile.active {
    color: #fff;
    background: #8655f0;
}
.top__payments-btn--mobile.active span:first-child {
    display: none;
}
.top__payments-btn--mobile.active span:last-child {
    display: inline;
}
.top__payments-btn--mobile.active + .top__more-payments {
    display: flex;
    transform: translateY(-3rem);
}
.top__more-payments {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    display: none;
    background: #f6f4ff;
    margin: 0;
    padding: 0.9rem 1.4rem;
    border-radius: 0.6rem;
    transform: translateY(110%);
}
.top__btns button,
.top__btns .referral-btn {
    display: block;
    width: 100%;
    margin: 0 0 1.2rem;
    padding: 1.5rem 0.5rem;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    text-decoration: none;
    line-height: 1.2;
    text-transform: uppercase;
    border-radius: 0.8rem;
    border: none;
    background: #5339b2 linear-gradient(180deg, #8655f0 0%, #8655f0 63.3%, #2e2484 152.17%);
    transition: background 0.2s;
    cursor: pointer;
}
.top__btns button:after,
.top__btns .referral-btn:after {
    display: none;
}
.top__btns button:hover,
.top__btns .referral-btn:hover {
    background: #5339b2 linear-gradient(180deg, #8655f0 0%, #2e2484 128.26%);
}
.top__btns button:active,
.top__btns .referral-btn:active {
    background: #5339b2;
}
.top__btns a {
    position: relative;
    color: inherit;
    font-weight: 700;
    font-size: 1.4rem;
    text-decoration: none;
    text-transform: lowercase;
}
.top__btns a:after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -0.1rem;
    left: 0;
    height: 0.1rem;
    background: #1f1e23;
    transition: 0.2s opacity;
}
.top__btns a:hover:after {
    opacity: 0;
}
.top__bottom-payments {
    font-size: 1.2rem;
}
@media screen and (max-width: 991px) {
    .top__bottom-payments {
        display: none;
    }
}
.top__load-more {
    display: none;
    width: 100%;
    max-width: 37rem;
    margin: 0 auto;
    padding: 1.5rem 0.5rem;
    color: #8655f0;
    font-size: 1.4rem;
    font-weight: 700;
    background: #eaebfd;
    border-radius: 1.6rem;
    border: 0.1rem solid #d1d2f6;
    text-transform: uppercase;
    transition: background 0.2s;
    cursor: pointer;
}
.top__load-more:hover {
    background: #d1d2f6;
}
.top--alt .top__item .top__card {
    border-color: #e1e8f6;
}
[dir="rtl"] .top__head:before {
    z-index: 1;
    right: 0.8rem;
    left: auto;
}
[dir="rtl"] .top__badge {
    right: 2.8rem;
    left: auto;
}
