.gamemode-rating-section {
    margin-top: 12px;
}

.gamemode-rating-btn-new {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(236, 72, 153, 0.2));
    color: #fff;
    border: 2px solid rgba(168, 85, 247, 0.5);
    border-radius: 8px;
    padding: 6px 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 12px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.3);
    animation: pulse-glow 2s ease-in-out infinite;
}

.gamemode-rating-btn-new::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shine 3s linear infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(168, 85, 247, 0.3), 0 0 40px rgba(236, 72, 153, 0.2);
        border-color: rgba(168, 85, 247, 0.5);
    }
    50% {
        box-shadow: 0 0 30px rgba(168, 85, 247, 0.5), 0 0 60px rgba(236, 72, 153, 0.3);
        border-color: rgba(236, 72, 153, 0.6);
    }
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.gamemode-rating-btn-new:hover {
    transform: translateY(-2px) scale(1.05);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(236, 72, 153, 0.3));
    box-shadow: 0 0 40px rgba(168, 85, 247, 0.5), 0 0 80px rgba(236, 72, 153, 0.4);
}

.gamemode-emoji {
    font-size: 14px;
    position: relative;
    z-index: 1;
}

.gamemode-text {
    font-size: 12px;
    font-weight: 500;
    color: white;
    position: relative;
    z-index: 1;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .gamemode-rating-btn-new {
        padding: 5px 8px;
        font-size: 11px;
        gap: 4px;
    }
    
    .gamemode-emoji {
        font-size: 12px;
    }
    
    .gamemode-text {
        font-size: 11px;
    }
}



