/* Yoldaş Gaming Custom Animations and Styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: #0f0f13;
}
::-webkit-scrollbar-thumb {
    background: #e50914;
    border-radius: 3px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.4s ease-out forwards;
}

/* Login Background Particles (CSS only simple effect) */
.login-bg {
    background: radial-gradient(circle at center, #1f1f23 0%, #0f0f13 100%);
}

.login-box {
    animation: fadeIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Sidebar Custom Styling */
.sidebar-link {
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}
.sidebar-link:hover, .sidebar-link.active {
    background: rgba(229, 9, 20, 0.1);
    color: #fff;
    border-left-color: #e50914;
}

.sidebar-link i {
    transition: transform 0.2s;
}
.sidebar-link:hover i {
    transform: scale(1.1);
    color: #e50914;
}
.sidebar-link.active i {
    color: #e50914;
}

/* Glassmorphism effects */
.glass-panel {
    background: rgba(31, 31, 35, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Button glow effects */
.glow-on-hover {
    transition: box-shadow 0.3s ease;
}
.glow-on-hover:hover {
    box-shadow: 0 0 15px rgba(229, 9, 20, 0.6);
}

/* Terminal Console Styling */
.console-output {
    font-family: 'Consolas', 'Monaco', monospace;
    white-space: pre-wrap;
    word-break: break-all;
}

/* Table styling for players */
.cs-table th {
    background-color: rgba(0,0,0,0.2);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    color: #9ca3af;
}
.cs-table tr {
    transition: background-color 0.2s;
}
.cs-table tbody tr:hover {
    background-color: rgba(255,255,255,0.02);
}
