.rc-live-stream-wrapper {
    width: calc(100% - 40px);
    max-width: 1400px;
    margin: 30px auto;
    background: linear-gradient(160deg, #060a06 0%, #0c150c 60%, #0a120a 100%);
    border-radius: 20px;
    padding: 50px 40px;
    box-sizing: border-box;
}

.rc-live-stream-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.rc-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #4ade80;
    background: rgba(74, 222, 128, 0.08);
    border: 1px solid rgba(74, 222, 128, 0.3);
    border-radius: 30px;
    padding: 6px 14px;
    margin-bottom: 18px;
}

.rc-eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff3b3b;
    animation: rc-pulse 1.4s infinite;
}

.rc-section-title {
    font-size: 34px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 26px;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.rc-section-title .rc-title-accent {
    color: #4ade80;
}

@keyframes rc-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.6); }
    70%  { box-shadow: 0 0 0 8px rgba(255, 59, 59, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 59, 59, 0); }
}

.rc-card-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.rc-card {
    display: block;
    width: 226px;
    border-radius: 14px;
    overflow: hidden;
    background: #0f1a0f;
    border: 1px solid rgba(74, 222, 128, 0.18);
    text-decoration: none;
    color: inherit;
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.rc-card:hover {
    transform: translateY(-3px);
    border-color: rgba(74, 222, 128, 0.55);
    box-shadow: 0 8px 24px rgba(74, 222, 128, 0.12);
}

.rc-card-thumb {
    position: relative;
    width: 100%;
    height: 150px;
    background: #182618;
}

.rc-card-thumb img,
.rc-ivs-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #000;
}

.rc-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rc-badge-live {
    background: #ff3b3b;
    color: #fff;
}

.rc-viewers {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 11px;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    padding: 2px 8px;
    border-radius: 10px;
}

.rc-card-body {
    padding: 14px 14px 18px;
}

.rc-card-title {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rc-card-sub {
    font-size: 12px;
    color: #7d9b7d;
    margin: 0 0 10px;
}

.rc-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    padding: 9px 16px;
    border-radius: 8px;
    text-decoration: none;
}

.rc-btn-live {
    background: #4ade80;
    color: #06240f;
}

.rc-btn-live:hover {
    background: #6ee89b;
}

@media (max-width: 480px) {
    .rc-live-stream-wrapper {
        padding: 40px 15px;
    }
    .rc-section-title {
        font-size: 26px;
    }
    .rc-card {
        width: 47%;
    }
}
