:root {
    --color-primary: linear-gradient(150deg, #5210bb, #7b2ff7); 
    --color-secondary: #f2cefa; 
    --color-tertiary: #7b2ff7; 
    --color-button: linear-gradient(135deg, #ff4fd8, #7b2ff7); 
    --color-button-hover: #e43cbf; 
    --color-text: #444444;
    --color-white: #ffffff;
}

/* Estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    background: var(--color-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Merriweather", serif; 
}

.main-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

/* Banner */
.header-banner {
    flex: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0 0;
}

/* Sección de entrada */
.input-section {
    flex: 60%;
    background-color: var(--color-secondary);
    border: 1px solid #c705aa;
    border-radius: 64px 64px 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    width: 100%;
}

/* Títulos */
.main-title {
    font-size: 55px;
    font-family: "Harrington", serif; 
    font-weight: 900;
    font-style: italic;
    color: #00d5ff;
}

.section-title {
    font-family: "Playfair Display", serif;
    font-size: 36px;
    font-weight: 700;
    color: #7b2ff7;
    margin: 10px 0;
    text-align: center;
}

/* Contenedores de entrada y botón */
.input-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 600px;
    margin-top: 20px;
}

.input-name {
    width: 100%;
    padding: 10px;
    border: 2px solid #383838;
    border-radius: 25px 0 0 25px;
    font-size: 16px;
    font-family: "Merriweather", serif;
}

.button-container {
    width: 300px;
    justify-content: center;
}

/* Estilos de entrada de texto */
.input-title {
    flex: 1;
    padding: 10px 15px;
    font-size: 16px;
    border: 2px solid #000;
    border-right: none;
    border-radius: 25px 0 0 25px;
    font-family: "Merriweather", serif;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Estilos de botón */
button {
    padding: 15px 30px;
    font-family: "Merriweather", serif;
    font-size: 16px;
    border: 2px solid #000;
    border-radius: 25px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.button-add {
    background-color: var(--color-tertiary);
    color: var(--color-white);
    border-radius: 0 25px 25px 0;
}

.button-add:hover {
    background-color: #00CFFF;
}

/* Listas */
ul {
    list-style-type: disc; 
    padding-left: 40px; 
    font-family: "Merriweather", serif;
    font-size: 18px;
    margin: 20px 0;
    color: #7b2ff7; 
}

li {
    color: #7b2ff7; 
}

.result-list {
    list-style-type: none;
    margin-top: 15px;
    color: #a876ff;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
}

/* Botón de sortear título */
.button-draw {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 10px 40px;
    color: var(--color-white);
    background: var(--color-button);
    font-size: 16px;
    transition: 0.3s;
    font-family: "Merriweather", serif;
}

.button-draw img {
    margin-right: 40px;
}

.button-draw:hover {
    background: var(--color-button-hover);
}
