* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

header {
    text-align: center;
    margin-bottom: 30px;
}

h1 {
    color: #8B0000;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.language-selector {
    position: absolute;
    top: 20px;
    right: 20px;
}

.language-selector button {
    background: none;
    border: 1px solid #ddd;
    padding: 5px 10px;
    margin: 0 2px;
    border-radius: 4px;
    cursor: pointer;
}

.step {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.input-group {
    margin: 20px 0;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.input-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
}

button {
    background: #8B0000;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
}

button:hover {
    background: #a00000;
}
/* Paso 2 - Selección de vino */
.step-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-weight: 500;
}

.step-number {
    color: #666;
}

.step-points {
    color: #8B0000;
    font-weight: bold;
}

.vinos-container {
    margin: 20px 0;
}

.vino-item {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.2s;
}

.vino-item:hover {
    border-color: #8B0000;
    background: #fff5f5;
}

.vino-item.selected {
    border-color: #8B0000;
    background: #ffeaea;
}

.vino-item strong {
    color: #8B0000;
    margin-right: 10px;
}

.step-footer {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}

.btn-secondary {
    background: #6c757d;
}

.btn-secondary:hover {
    background: #5a6268;
}

.btn-primary:disabled {
    background: #cccccc;
    cursor: not-allowed;
}
/* Paso 3 - Emojis */
.categoria-puntuacion {
    margin: 25px 0;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    background: #fafafa;
}

.categoria-puntuacion h4 {
    margin-bottom: 15px;
    color: #333;
    font-size: 1.1rem;
}

.emojis-container {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.emoji-btn {
    flex: 1;
    height: 50px;
    border: 2px solid #ddd;
    border-radius: 8px;
    background: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.2s;
}

.emoji-btn:hover {
    border-color: #8B0000;
    transform: scale(1.05);
}

.etiquetas {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #666;
    margin-top: 5px;
}

.puntos-totales-container {
    margin: 30px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.puntos-totales {
    font-size: 1.2rem;
}

.puntos-totales strong {
    display: block;
    font-size: 2rem;
    color: #8B0000;
    margin-top: 5px;
}