/* Ratings Grid */
.ratings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    padding: 20px;
    max-height: 600px;
    overflow-y: auto;
}

.rating-card {
    background: var(--item-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.rating-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.rating-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.rating-card .rating-stats {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--secondary-text);
}

.rating-card .rating-stat {
    display: flex;
    justify-content: space-between;
    padding: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.rating-card .rating-stat strong {
    color: var(--text-color);
}

.rating-card.vip-card {
    border: 2px solid #ffd700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
}

.rating-card.vip-card h3 {
    color: #ffd700;
    font-weight: 800;
}

.rating-card {
    position: relative;
    overflow: hidden;
}

.rating-timer {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--cloth-color);
    background: rgba(0, 0, 0, 0.2);
    padding: 3px 8px;
    border-radius: 10px;
}