#fighter-creation {
    margin: auto;
    width: 90%;
    max-width: 500px;
    background: rgba(20, 20, 40, 0.85);
    backdrop-filter: blur(10px);
    border: 2px solid #4040ff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 0 20px rgba(0, 100, 255, 0.5);
}

.stat-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat label {
    width: 120px;
    font-weight: bold;
}

.stat input[type="range"] {
    flex: 1;
    height: 8px;
    -webkit-appearance: none;
    background: #2a2a4a;
    border-radius: 4px;
    outline: none;
}

.stat input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #4040ff;
    cursor: pointer;
    transition: all 0.2s;
}

.stat input[type="range"]::-webkit-slider-thumb:hover {
    background: #60f0ff;
    box-shadow: 0 0 10px #60f0ff;
}

.stat input[type="range"].at-max::-webkit-slider-thumb {
    background: #ffcc00;
    box-shadow: 0 0 10px #ffcc00;
}

.stat span {
    width: 30px;
    text-align: center;
    font-weight: bold;
    color: #60f0ff;
}

.points-remaining {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    color: #ffcc00;
}

.fighter-name-input {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.fighter-name-input label {
    width: 120px;
    font-weight: bold;
}

.fighter-name-input input[type="text"] {
    flex: 1;
    padding: 0.5rem;
    background: rgba(20, 20, 60, 0.6);
    border: 1px solid #4040ff;
    border-radius: 4px;
    color: #e0e0ff;
    font-size: 1rem;
}

.fighter-name-input input[type="text"]:focus {
    outline: none;
    border-color: #60f0ff;
    box-shadow: 0 0 10px rgba(96, 240, 255, 0.5);
}

.creation-guide {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #a0a0ff;
    font-size: 0.95rem;
    line-height: 1.4;
    background: rgba(0, 0, 20, 0.3);
    padding: 10px;
    border-radius: 5px;
}

.stat-description {
    font-size: 0.8rem;
    color: #a0a0ff;
    margin-top: 5px;
    font-style: italic;
    opacity: 0.8;
}

.stat:hover .stat-description {
    color: #60f0ff;
    opacity: 1;
}