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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #0f1419;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 14px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: #00d4ff;
    color: #000;
    font-weight: 700;
}

.btn-primary:hover {
    background: #00b8e6;
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    border: 1px solid #333;
}

.btn-outline:hover {
    background: #333;
    color: #ffffff;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 20, 25, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #00d4ff;
}

.logo-icon {
    font-size: 24px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #00d4ff;
}

.nav-buttons {
    display: flex;
    gap: 1rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #00d4ff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 50%, #0f1419 100%);
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(138, 43, 226, 0.1) 100%);
}

.hero-character {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    width: 400px;
    height: 500px;
    opacity: 0.8;
}

.character-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    filter: brightness(0.8) contrast(1.2);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    max-width: 600px;
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 2rem;
    color: #00d4ff;
    font-weight: 600;
}

.hero-description {
    font-size: 16px;
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.hero-bonus {
    display: flex;
    justify-content: center;
}

.bonus-card {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(138, 43, 226, 0.1) 100%);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 350px;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00d4ff, transparent);
}

.bonus-header {
    margin-bottom: 1rem;
}

.bonus-label {
    background: #00d4ff;
    color: #000;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bonus-amount {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.bonus-percentage {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.bonus-text {
    font-size: 1.2rem;
    color: #cccccc;
    font-weight: 600;
}

.bonus-value {
    font-size: 3rem;
    font-weight: 800;
    color: #00d4ff;
    font-family: 'Poppins', sans-serif;
}

.bonus-extra {
    margin-bottom: 2rem;
}

.bonus-extra span {
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
}

.bonus-btn-top {
    display: inline-block;
    padding: 20px 56px; /* Больше по всем сторонам */
    background-color: #00d4ff;
    color: #000;
    font-size: 18px; /* Чуть крупнее */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 10px;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 14px rgba(0, 212, 255, 0.25);
}

.bonus-btn-top:hover {
    background-color: #00b8e6;
    transform: translateY(-2px);
}

.bonus-btn {
    display: block;
    width: 100%;
    padding: 16px;
    background: #00d4ff;
    color: #000;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bonus-btn:hover {
    background: #00b8e6;
    transform: translateY(-2px);
}

.bonus-cashback {
    color: #cccccc;
    font-size: 14px;
    font-weight: 500;
}

/* Casino Info Section */
.casino-info {
    padding: 80px 0;
    background: #0f1419;
}

.section-title {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: 3rem;
    color: #00d4ff;
    text-align: center;
}

.info-table {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-row:first-child {
    background: rgba(0, 212, 255, 0.1);
}

.info-row:first-child .info-label,
.info-row:first-child .info-value {
    font-weight: 700;
    color: #00d4ff;
}

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

.info-label,
.info-value {
    padding: 1.5rem 2rem;
    color: #ffffff;
}

.info-label {
    background: rgba(255, 255, 255, 0.02);
    font-weight: 600;
}

/* Modern Design Section */
.modern-design {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a2332 0%, #0f1419 100%);
    text-align: center;
}

.design-description {
    font-size: 16px;
    color: #cccccc;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.casino-logo-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #00d4ff;
}

/* Games Section */
.games-section {
    padding: 80px 0;
    background: #0f1419;
}

.games-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.games-description {
    font-size: 16px;
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.games-showcase {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.jackpot-bar {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.jackpot-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, #ff6b35, #ffd700);
    color: #000;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 12px;
    min-width: 80px;
    text-align: center;
}

.jackpot-game {
    font-size: 10px;
    margin-bottom: 2px;
}

.jackpot-amount {
    font-size: 12px;
}

.top-games {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 1.5rem;
}

.games-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.games-header h3 {
    color: #ffffff;
    font-size: 18px;
    margin: 0;
}

.view-all {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #cccccc;
    font-size: 14px;
}

.nav-arrows {
    display: flex;
    gap: 0.5rem;
}

.arrow-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #00d4ff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.arrow-btn:hover {
    background: rgba(0, 212, 255, 0.2);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.game-card {
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.game-card:hover {
    transform: scale(1.05);
}

.game-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Pros and Cons Section */
.pros-cons {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a2332 0%, #0f1419 100%);
}

.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.pros-card,
.cons-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pros-title {
    color: #00ff88;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.cons-title {
    color: #ff4757;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.pros-list,
.cons-list {
    list-style: none;
}

.pros-list li,
.cons-list li {
    color: #cccccc;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 16px;
}

.pros-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00ff88;
    font-weight: bold;
    font-size: 18px;
}

.cons-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #ff4757;
    font-weight: bold;
    font-size: 18px;
}

/* Additional Info Section */
.additional-info {
    padding: 30px 0;
    background: #0f1419;
}

.additional-content {
    max-width: 1000px;
    margin: 0 auto;
}

.content-block {
    margin-bottom: 3rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.content-block h3 {
    color: #00d4ff;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.content-block p {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 16px;
}

.content-block p:last-child {
    margin-bottom: 0;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a2332 0%, #0f1419 100%);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: #00d4ff;
    background: rgba(0, 212, 255, 0.05);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(0, 212, 255, 0.05);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 600;
}

.faq-icon {
    font-size: 1.5rem;
    color: #00d4ff;
    font-weight: bold;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 2rem 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    color: #cccccc;
    line-height: 1.7;
    margin: 0;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a2332 0%, #0f1419 100%);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-section h3 {
    color: #00d4ff;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 1rem;
}

.footer-description {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.footer-certifications {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cert-item {
    background: rgba(0, 212, 255, 0.1);
    color: #00d4ff;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.footer-title {
    color: #00d4ff;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00d4ff;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.payment-item {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal {
    color: #999;
    font-size: 0.9rem;
}

.footer-responsible {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #999;
    font-size: 0.9rem;
}

.responsible-logos {
    display: flex;
    gap: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-character {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 300px;
        height: 300px;
        margin: 0 auto;
    }

    .games-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pros-cons-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(15, 20, 25, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 2rem;
        padding: 2rem;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .nav-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 200px;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 60px;
    }

    .hero-background {
        display: none;
    }

    .bonus-card {
        max-width: 100%;
    }

    .info-row {
        grid-template-columns: 1fr;
    }

    .info-label {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .jackpot-bar {
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .faq-question {
        padding: 1rem 1.5rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1rem;
    }

    .content-block {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

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

    .bonus-percentage,
    .bonus-value {
        font-size: 2rem;
    }

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

    .jackpot-item {
        min-width: 70px;
        padding: 6px 12px;
    }

    .content-block {
        padding: 1.5rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode */
@media (prefers-contrast: more) {
    .btn-outline {
        border-width: 2px;
    }

    .faq-item {
        border-width: 2px;
    }
}


/* Print styles */
@media print {
    .header,
    .hero,
    .nav-toggle,
    .btn,
    .footer {
        display: none !important;
    }

    body {
        background: white !important;
        color: black !important;
    }

    .section-title,
    .pros-title,
    .cons-title {
        color: black !important;
    }
}

.responsive-image {
    width: 500px;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 10px;
}

/* По умолчанию — float right */
.responsive-image.right {
    float: right;
    margin-left: 20px;
}

/* Опционально: float left */
.responsive-image.left {
    float: left;
    margin-right: 20px;
}

@media (max-width: 768px) {
    .responsive-image,
    .responsive-image.left,
    .responsive-image.right {
        float: none;
        display: block;
        margin: 20px auto;
    }
}


/* Основной стиль изображения */
.responsive-image {
    width: 500px;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 10px;
}

.responsive-image.right {
    float: right;
    margin-left: 20px;
}

.responsive-image.left {
    float: left;
    margin-right: 20px;
}

@media (max-width: 768px) {
    .responsive-image,
    .responsive-image.left,
    .responsive-image.right {
        float: none;
        display: block;
        margin: 20px auto;
    }
}

/* Сетка шагов */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.step-item {
    background-color: #1c1f24;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    color: #fff;
}

.step-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

.step-item h3 {
    font-size: 1.1em;
    color: #00d2ff;
    margin-bottom: 10px;
}

.step-item p {
    font-size: 0.95em;
    line-height: 1.5;
    color: #ccc;
}

/* Адаптивная сетка */
@media (max-width: 992px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .step-item {
        padding: 15px;
    }
}

.cta-center {
    text-align: center;
    margin-top: 30px;
}

a {
    color: #00d2ff; /* яркий голубой */
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease, text-decoration 0.2s ease;
}

a:hover,
a:focus {
    color: #00ffff; /* немного светлее при наведении */
    text-decoration: none; /* убрано подчёркивание */
}


.logo-link {
    display: inline-block;
    text-decoration: none;
    color: inherit;
}

.logo-link:hover,
.logo-link:focus {
    text-decoration: none;
    color: inherit;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #ffffff;
}

.logo-icon {
    font-size: 1.4em;
}

.logo-text {
    font-size: 1.1em;
}

.bonus-grid-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.bonus-grid-section h2 {
    text-align: center;
    font-size: 24px;
    color: #00d4ff;
    margin-bottom: 30px;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.bonus-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.bonus-card h3 {
    font-size: 16px;
    color: #00d4ff;
    margin-bottom: 12px;
}

.bonus-card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 12px;
}

.bonus-amount {
    font-weight: 700;
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 10px;
}

.bonus-table-wrapper {
    margin-top: 10px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    overflow: hidden;
}

.bonus-table-wrapper table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.bonus-table-wrapper td {
    padding: 8px 12px;
    color: #cccccc;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    word-wrap: break-word;
}

.bonus-table-wrapper td:first-child {
    font-weight: 600;
    color: #00d4ff;
    width: 50%;
}

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

.bonus-grid a.bonus-card {
    text-decoration: none;
    display: block;
    transition: transform 0.2s ease;
}

.bonus-grid a.bonus-card:hover {
    transform: scale(1.02);
}

.providers-list {
    padding: 40px 20px;
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.providers-grid ul {
    list-style-type: disc;
    padding-left: 20px;
    margin: 0;
}

.providers-grid li {
    margin-bottom: 8px;
    color: #fff;
    font-size: 16px;
}

/* Обёртка для адаптивности */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    margin: 20px 0;
    border-radius: 8px;
}

/* Базовая таблица */
.table-responsive table {
    width: 100%;
    min-width: 600px; /* Позволяет скролл на мобилках */
    border-collapse: collapse;
    background-color: #111920;
    color: #ffffff;
    font-size: 15px;
    border: 1px solid #2a2f36;
    border-radius: 8px;
    overflow: hidden;
}

/* Заголовки таблицы */
.table-responsive thead {
    background-color: #1e2a31;
}

.table-responsive thead th {
    padding: 12px 16px;
    text-align: left;
    color: #00e0ff;
    font-weight: 600;
    border-bottom: 1px solid #2f3a41;
    white-space: nowrap;
}

/* Ячейки таблицы */
.table-responsive tbody td {
    padding: 12px 16px;
    border-top: 1px solid #2a2f36;
    white-space: nowrap;
}

/* Чередование строк */
.table-responsive tbody tr:nth-child(even) {
    background-color: #141d25;
}

/* Hover-эффект */
.table-responsive tbody tr:hover {
    background-color: #1a242d;
}
