/* ===== GLOBAL ===== */

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(to bottom right, #1c1c2e, #2c2c44);
    color: #f5f5f5;
}

/* ===== TITLE ===== */

h1 {
    font-family: 'MedievalSharp', cursive;
    text-align: center;
    font-size: 3rem;
    margin-top: 20px;
    color: #f4d35e;
    text-shadow: 2px 2px 4px #000;
}

/* ===== MAIN CONTAINER ===== */

.container {
    max-width: 800px;
    margin: 40px auto;
    padding: 30px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0,0,0,0.8);
}

/* ===== FORM ELEMENTS ===== */

label {
    font-weight: 600;
    display: block;
    margin-top: 15px;
}

select, button {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border-radius: 8px;
    border: none;
    font-size: 1rem;
}

select {
    background-color: #333;
    color: #fff;
}

/* ===== BUTTON ===== */

button {
    margin-top: 20px;
    background-color: #f4d35e;
    color: #1c1c2e;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background-color: #ffd166;
    transform: translateY(-2px);
}

/* ===== CHARACTER CARD ===== */

.character-card {
    margin-top: 30px;
    padding: 20px;
    background: #222;
    border-left: 6px solid #f4d35e;
    border-radius: 10px;
}

.character-card h2 {
    margin-top: 0;
    color: #f4d35e;
}
