body {
    font-family: 'Roboto', sans-serif;
    background-color: #fdf6f0;
    color: #4a4a4a;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    max-width: 600px;
    width: 100%;
    background: #ffffff;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #eee;
}

header {
    text-align: center;
    margin-bottom: 30px;
}

h1 {
    font-family: 'Playfair Display', serif;
    color: #d17a3f;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.intro {
    font-size: 1.1rem;
    color: #666;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: #333;
}

input[type="number"],
select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    box-sizing: border-box;
    background-color: #f9f9f9;
    transition: border-color 0.3s;
}

input[type="number"]:focus,
select:focus {
    outline: none;
    border-color: #d17a3f;
    box-shadow: 0 0 0 3px rgba(209, 122, 63, 0.2);
}

button[type="submit"] {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: #d17a3f;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

button[type="submit"]:hover {
    background-color: #b96a32;
    transform: translateY(-2px);
}

#result {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    text-align: center;
}

#result.hidden {
    display: none;
}

#result h2 {
    font-family: 'Playfair Display', serif;
    color: #333;
    font-size: 1.8rem;
}

#result-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    margin: 20px auto;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

#result-hairstyle-name {
    font-family: 'Playfair Display', serif;
    color: #d17a3f;
    font-size: 2rem;
    margin-bottom: 15px;
}

#result-description {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

#lucky-dates {
    background-color: #fdf6f0;
    padding: 20px;
    border-radius: 8px;
    text-align: left;
    border: 1px dashed #d17a3f;
}

#lucky-dates h4 {
    font-family: 'Playfair Display', serif;
    color: #333;
    margin-top: 0;
    text-align: center;
}

#lucky-dates ul {
    list-style-type: '✨';
    padding-left: 20px;
}

#lucky-dates li {
    margin-bottom: 10px;
}

.warning {
    font-size: 0.9rem;
    color: #a15c2d;
    text-align: center;
    margin-top: 15px;
}

