/* Reset css básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Gentium Plus", serif;
    background: url("../img/background.jpg") no-repeat center center/cover;
    /*background: linear-gradient(to bottom, #0c0f18, #1a1f2e);*/
    /*background-color: #f5f5f5;*/
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: e0e0e0;
}

.container {
    background: rgba(20, 25, 40, 0.9);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 0 25px rgba(0,0,0,0.8), inset 0 0 8px rgba(255,255,255,0.05);
    text-align: center;
    max-width: 700px;
    width: 100%;
    border: 1px solid rgba(255,255,255,0.1);
}

h1 {
    font-family: "Cinzel", serif;
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #ff4081;
    text-shadow: 0 0 6px rgba(200,200,255,0.6), 0 0 12px rgba(150,180,255,0.4);
}

.input-container {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

input {
    flex: 1;
    padding: 10px;
    border-radius: 8px;
    border: 2px solid #6a7bbf;
    background: #101522;
    color: #e0e0e0;
    outline: none;
    font-size: 1em;
}

input::placeholder {
    color: #888;
}

button {
    padding: 10px 15px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.2s, background 0.3s;
}

button:hover {
    transform: scale(1.05);
}

#btnAdicionar {
    background: #4a5dbd;
    color: white;
}

#btnAdicionar:hover {
    background: #5c6fe0;
}

.btn-sortear {
    margin-top: 15px;
    background: #3a9d6f;
    color: white;
    font-size: 1.1em;
}

.btn-sortear:hover {
    background: #48b98a;
}

.btn-limpar {
    margin-top: 10px;
    background: #a53e3e;
    color: white;
    font-size: 1.1em;
}

.btn-limpar:hover {
    background: #c94d4d;
}

ul {
    list-style: none;
    margin-top: 15px;
    text-align: left;
    padding: 0;
    max-height: 200px;
    overflow-y: auto;
}

ul li {
    padding: 8px 10px;
    background: rgba(255,255,255,0.05);
    margin-bottom: 8px;
    border-radius: 6px;
    font-weight: bold;
    color: #d0d4e6;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-remover {
    background: transparent;
    border: none;
    font-size: 1.1em;
    cursor: pointer;
    color: #ff6b6b;
    margin-left: 10px;
    transition: transform 0.2s;
}

.btn-remover:hover {
    transform: scale(1.2);
}

#resultado {
    font-family: "Cinzel", serif;
    margin-top: 20px;
    font-size: 1.5em;
    color: #f0f4ff;
    text-shadow: 0 0 10px rgba(180,200,255,0.7), 0 0 20px rgba(100,150,255,0.5);
}