/* VIP Roster Page CSS */

.idgVip {
    position: relative;
    background: #0b0f14;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    overflow: hidden;
    margin-bottom: 30px;
}

.idgVip-noise {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
    pointer-events: none;
    z-index: 0;
}

.idgVip-topGlow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 234, 255, 0.8), transparent);
    box-shadow: 0 0 20px 2px rgba(0, 234, 255, 0.4);
    z-index: 1;
}

.idgVip-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
    margin-bottom: 24px;
}

.idgVip-headerLeft {
    display: flex;
    align-items: center;
    gap: 16px;
}

.idgVip-headerIcon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(0, 234, 255, 0.2), rgba(0, 234, 255, 0.05));
    border: 1px solid rgba(0, 234, 255, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00eaff;
    font-size: 18px;
    box-shadow: 0 0 15px rgba(0, 234, 255, 0.1);
}

.idgVip-title {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(0, 234, 255, 0.3);
}

.idgVip-subtitle {
    margin: 4px 0 0 0;
    font-size: 0.9rem;
    color: #8b9eb3;
}

.idgVip-manyMore {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.idgVip-carouselOuter {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
}

.idgVip-arrow {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
    position: absolute;
    z-index: 5;
}

.idgVip-arrow:hover {
    background: rgba(0, 234, 255, 0.15);
    border-color: #00eaff;
    color: #00eaff;
    box-shadow: 0 0 15px rgba(0, 234, 255, 0.2);
}

.idgVip-arrow--left {
    left: -18px;
}

.idgVip-arrow--right {
    right: -18px;
}

.idgVip-trackWrapper {
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
    margin: 0 20px;
}

.idgVip-track {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
    gap: 10px;
}

.idgVip-card {
    flex: 0 0 110px;
    width: 110px;
}

.idgVip-cardInner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none !important;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 12px 6px;
    transition: all 0.3s ease;
    height: 100%;
}

.idgVip-cardInner:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 234, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.idgVip-avatarWrap {
    position: relative;
    width: 64px;
    height: 64px;
    margin-bottom: 12px;
}

.idgVip-avatarGlow {
    position: absolute;
    inset: -10px;
    background: radial-gradient(circle at center, rgba(0, 234, 255, 0.2), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.idgVip-cardInner:hover .idgVip-avatarGlow {
    opacity: 1;
}

.idgVip-avatarFrameWrap {
    position: absolute;
    inset: -10px;
    background-image: var(--frame-url);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 2;
}

.idgVip-avatar {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.idgVip-corner {
    position: absolute;
    width: 6px;
    height: 6px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 3;
}

.idgVip-corner--tl { top: -2px; left: -2px; border-right: none; border-bottom: none; }
.idgVip-corner--tr { top: -2px; right: -2px; border-left: none; border-bottom: none; }
.idgVip-corner--bl { bottom: -2px; left: -2px; border-right: none; border-top: none; }
.idgVip-corner--br { bottom: -2px; right: -2px; border-left: none; border-top: none; }

.idgVip-cardInner:hover .idgVip-corner {
    border-color: #00eaff;
}

.idgVip-username {
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.idgVip-badge {
    font-size: 0.65rem;
    font-weight: 800;
    background: rgba(255, 183, 0, 0.1);
    color: #ffb700;
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid rgba(255, 183, 0, 0.2);
    margin-bottom: 4px;
    text-transform: uppercase;
}

.idgVip-label {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
}
