/* public/css/admin.css */

@keyframes gradientBG {
    0% { background: linear-gradient(135deg, #1a1a2e, #162447); }
    50% { background: linear-gradient(135deg, #162447, #1a1a2e); }
    100% { background: linear-gradient(135deg, #1a1a2e, #162447); }
}

body {
    font-family: 'Roboto', sans-serif;
    color: #f5f5f5;
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    animation: gradientBG 20s ease infinite;
}

header {
    width: 100%;
}

.admin-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    width: 100%;
}

.admin-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
    width: 100%;
    max-width: 600px;
}

.admin-container h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: #ff6b81;
    text-shadow: 0 0 2px #ff6b81, 0 0 4px #ff4b2b;
}

.admin-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    width: 100%;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-card h2 {
    color: #ff6b81;
    font-family: 'Montserrat', sans-serif;
    margin-top: 0;
    margin-bottom: 1.5rem;
}

#admin-controls label {
    display: block;
    margin-bottom: .5rem;
    font-size: 1.1rem;
}

#admin-controls input[type="number"] {
    padding: 0.5rem;
    border-radius: 8px;
    border: 1px solid #ccc;
    background: rgba(0,0,0,0.2);
    color: white;
    width: 80px;
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

#player-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

#player-list li {
    background: rgba(0,0,0,0.2);
    padding: 0.75rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* Custom Button Styles */
.btn-custom {
    background: linear-gradient(45deg, #ff416c, #ff4b2b);
    border: none;
    padding: 0.75rem 2rem;
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
    border-radius: 50px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    margin: 0.5rem;
}

.btn-custom:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 75, 43, 0.6);
}

.btn-custom:disabled {
    background: #555;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}
