.casinos-section {
    padding: 72px 0 100px;
    background: var(--bg-section);
}

/* Шапка таблицы */
.casino-table-head {
    display: grid;
    grid-template-columns: 48px 1fr 110px 160px 160px;
    gap: 16px;
    padding: 0 20px 12px;
    border-bottom: 1px solid var(--border-subtle);
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--text-muted);
}

.casino-table {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 48px;
}

/* Строка казино */
.casino-row {
    display: grid;
    grid-template-columns: 48px 1fr 110px 160px 160px;
    gap: 16px;
    align-items: center;
    background: var(--grad-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 18px 20px;
    transition: border-color .25s, box-shadow .25s;
}

.casino-row > * {
    min-width: 0;
}

.casino-row:hover {
    border-color: var(--border);
    box-shadow: 0 6px 28px rgba(0, 0, 0, .4);
}

/* Ранг */
.cr-rank {
    font-size: 1rem;
    font-weight: 900;
    color: var(--text-muted);
    text-align: center;
}

.cr-rank.top {
    color: var(--gold-light);
}

/* Название + теги */
.cr-name {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.cr-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

/* Рейтинг */
.cr-rating {
    text-align: center;
}

.cr-rating-val {
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--gold-light);
    display: block;
}

.cr-rating-stars {
    font-size: .75rem;
    color: var(--gold);
}

/* Промокод */
.cr-bonus {
    background: var(--accent-subtle);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 10px 14px;
    text-align: center;
    cursor: pointer;
    transition: all .2s;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
}

.cr-bonus:hover {
    background: rgba(168, 85, 247, .22);
    transform: translateY(-1px);
}

.cr-bonus-label {
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--text-muted);
}

.cr-bonus-code {
    font-size: .88rem;
    font-weight: 800;
    color: var(--accent-light);
    letter-spacing: .04em;
}

.cr-bonus.copied .cr-bonus-code::after {
    content: ' ✓';
    color: var(--gold-light);
}

.cr-action {
    display: flex;
    align-items: center;
}

.cr-action .btn {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 16px;
    justify-content: center;
}

.tips-block {
    background: var(--grad-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-top: 48px;
}

.tips-block h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 24px;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.tip-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px;
    background: rgba(255, 255, 255, .025);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
}

.tip-icon {
    font-size: 1.2rem;
    width: 36px;
    height: 36px;
    background: var(--accent-subtle);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tip-text {
    font-size: .88rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.tip-text strong {
    color: var(--text-primary);
}

@media (max-width: 860px) {
    .casino-table-head {
        display: none;
    }

    .casino-row {
        grid-template-columns: 36px 1fr 90px;
        grid-template-rows: auto auto auto;
        gap: 12px;
    }

    .cr-rank {
        grid-column: 1;
        grid-row: 1;
    }

    .cr-info {
        grid-column: 2;
        grid-row: 1;
    }

    .cr-rating {
        grid-column: 3;
        grid-row: 1;
    }

    .cr-bonus {
        grid-column: 1 / -1;
        grid-row: 2;
    }

    .cr-action {
        grid-column: 1 / -1;
        grid-row: 3;
    }

    .cr-action .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .casino-row {
        padding: 16px;
        overflow: hidden;
    }

    .cr-action {
        width: 100%;
        min-width: 0;
    }

    .cr-action .btn {
        display: flex;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        white-space: normal;
    }

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