@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes glow {
    0% { text-shadow: 0 0 5px rgba(59, 130, 246, 0.5); }
    50% { text-shadow: 0 0 20px rgba(59, 130, 246, 0.8), 0 0 30px rgba(59, 130, 246, 0.5); }
    100% { text-shadow: 0 0 5px rgba(59, 130, 246, 0.5); }
}

@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.fade-in {
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.glow-text {
    animation: glow 2s infinite;
}

.animated-gradient {
    background: linear-gradient(270deg, #3b82f6, #3730a3, #2563eb);
    background-size: 600% 600%;
    animation: gradientAnimation 10s ease infinite;
}

.player-list-item {
    transition: all 0.3s ease;
}

.player-list-item:hover {
    transform: translateX(10px);
    background-color: rgba(255, 255, 255, 0.1);
}

.score-bar-container {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    height: 24px;
    width: 100%;
    overflow: hidden;
}

.score-fill {
    background: linear-gradient(90deg, #3b82f6, #2563eb);
    height: 100%;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    transition: width 1s ease-out;
    min-width: 40px;
}

.table {
    background: transparent !important;
}

.table tr:hover {
    background-color: rgba(37, 99, 235, 0.1) !important;
}

.table td, .table th {
    border: none !important;
    padding: 1rem 0.75rem;
}

.table tr {
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.tag {
    border-radius: 20px;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    color: #1a202c;
    font-weight: bold;
    border: 1px solid rgba(255,255,255,0.2);
}

.tag.is-dark {
    color: #ffffff !important;
    background-color: rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.4);
}

.tag.tier-s {
    background: linear-gradient(45deg, #ff7e5f, #feb47b);
    color: white !important;
    box-shadow: 0 0 10px rgba(255, 126, 95, 0.5);
}

.tag.tier-a {
    background: linear-gradient(45deg, #0fd194, #185a9d);
    color: white !important;
}

.tag.tier-b {
    background: linear-gradient(45deg, #3b82f6, #2563eb);
    color: white !important;
}

.tag.tier-c {
    background: linear-gradient(45deg, #718096, #2d3748);
    color: white !important;
}
