.container-card {
    max-width: 1400px;
    margin: 0 auto;
}

.casino-card {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding: 15px 25px;
    border-radius: 25px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.casino-card-green {
    background: linear-gradient(to right, #e8f5e9 0%, #f1f8e9 100%);
    border: 3px solid #8bc34a;
}

.casino-card-orange {
    background: linear-gradient(to right, #fff3e0 0%, #ffe0b2 100%);
    border: 3px solid #ff9800;
}

.casino-card-gray {
    background: linear-gradient(to right, #f5f5f5 0%, #eeeeee 100%);
    border: 3px solid #bdbdbd;
}

.rank-badge {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: white;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.rank-badge-green {
    background: linear-gradient(135deg, #8bc34a, #689f38);
}

.rank-badge-orange {
    background: linear-gradient(135deg, #ff9800, #f57c00);
}

.rank-badge-gray {
    background: linear-gradient(135deg, #9e9e9e, #757575);
}

.logo-section {
    position: relative;
    flex-shrink: 0;
}

.logo-wrapper {
    width: 240px;
    height: 180px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border: 4px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.logo-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.badge {
    position: absolute;
    top: -10px;
    right: -10px;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25), 0 6px 20px rgba(0, 0, 0, 0.2);
}

.badge-first {
    background: linear-gradient(135deg, #ffd700 0%, #ffb700 40%, #fff1a6 100%);
    color: #3b2f00;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.6);
}

.badge-second {
    background: linear-gradient(135deg, #dcdcdc 0%, #c0c0c0 50%, #f8f8f8 100%);
    color: #333;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.7);
}

.info-section {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 40px;
    padding-left: 30px;
}

.casino-name {
    min-width: 180px;
}

.casino-name h3 {
    font-size: 32px;
    font-weight: 700;
    color: #212121;
    margin-bottom: 8px;
    margin-top: 0;
}

.bonus-section {
    flex: 1;
    text-align: center;
}

.bonus-label {
    font-size: 22px;
    color: #616161;
    font-weight: 600;
}

.bonus-amount {
    font-size: 24px;
    line-height: 38px;
    font-weight: 900;
    color: var(--color-accent);
    letter-spacing: 1px;
}

.c800eb {
    display: inline-block;
    background: var(--color-accent);
    color: #fff !important;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 26px;
    white-space: normal;
    text-align: center;
    padding: 15px;
    border-radius: 15px !important;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform-origin: center;
    border: none;
    max-width: 170px;
}

.c800eb:hover {
    transform: translateY(-2px);
}

.c800eb:active {
    transform: translateY(0);
}

@media (max-width: 1200px) {
    .info-section {
        gap: 20px;
    }

    .bonus-amount {
        font-size: 28px;
    }
}

@media (max-width: 1024px) {
    .casino-card {
        flex-direction: column;
        padding: 30px 20px 20px;
    }

    .rank-badge {
        top: 0;
        left: 20px;
        transform: translate(0, -50%);
    }

    .info-section {
        flex-direction: column;
        padding-left: 0;
        gap: 20px;
        width: 100%;
    }

    .casino-name {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .c800eb {
        font-size: 18px;
        padding: 20px;
    }
}