body{
    background:#111827;
    color:white;
    font-family:Arial;
    margin:0;
    padding:0;
}

.auth-container{
    width:100%;
    max-width:400px;
    margin:60px auto;
    background:#1f2937;
    padding:30px;
    border-radius:12px;
}

input{
    width:100%;
    padding:12px;
    margin-bottom:15px;
    border:none;
    border-radius:8px;
}

button{
    width:100%;
    padding:12px;
    background:#2563eb;
    border:none;
    color:white;
    border-radius:8px;
    cursor:pointer;
}

a{
    color:#60a5fa;
    text-decoration:none;
}

.error{
    background:#7f1d1d;
    padding:10px;
    margin-bottom:15px;
}

.success{
    background:#14532d;
    padding:10px;
    margin-bottom:15px;
}

.page-container{
    padding:20px;
}

.page-title{
    margin-bottom:20px;
    font-size:24px;
}

.team-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.team-card{
    background:#1f2937;
    padding:20px;
    border-radius:14px;
}

.team-card h3{
    margin-top:0;
    margin-bottom:15px;
}

.team-card p{
    margin-bottom:10px;
    color:#d1d5db;
}

@media(max-width:768px){

    .auth-container{
        margin:20px;
    }

    .page-title{
        font-size:20px;
    }

}

.player-card{
    background:#1f2937;
    border-radius:16px;
    padding:24px;
    display:flex;
    justify-content:space-between;
    gap:20px;
    margin-bottom:20px;
}

.player-card h2{
    margin-top:0;
}

.rating-box{
    background:#0f172a;
    border:1px solid #2563eb;
    border-radius:14px;
    padding:20px;
    min-width:120px;
    text-align:center;
}

.rating-box span{
    display:block;
    color:#93c5fd;
    margin-bottom:8px;
}

.rating-box strong{
    font-size:36px;
    color:#22c55e;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(160px,1fr));
    gap:16px;
    margin-bottom:20px;
}

.stat-card,
.panel-card{
    background:#1f2937;
    border-radius:14px;
    padding:18px;
}

.stat-card span{
    color:#9ca3af;
    display:block;
    margin-bottom:8px;
}

.stat-card strong{
    font-size:24px;
}

@media(max-width:768px){
    .player-card{
        flex-direction:column;
    }
}