body {
    font-family: 'Cormorant Garamond', serif;
    background-color: #121212;
    color: #fff;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-image: url('https://images.unsplash.com/photo-1558655146-d09347e92766?q=80&w=1964&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-size: cover;
    background-position: center;
    position: relative;
}

body::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.container {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    text-align: center;
    max-width: 600px;
    width: 100%;
}

header h1 {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2rem;
    color: #ccc;
}

.input-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

select {
    width: 100%;
    padding: 10px;
    border: 1px solid #d4af37;
    border-radius: 5px;
    background-color: transparent;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
}

select option {
    background-color: #121212;
}

button {
    background-color: #d4af37;
    color: #121212;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #c09e2e;
}

#result-container {
    margin-top: 30px;
    padding: 30px;
    border: 1px solid #d4af37;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.1);
}

#perfume-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #d4af37;
}

#perfume-img[src=""] {
    display: none;
}

#perfume-name {
    font-size: 2rem;
    color: #d4af37;
    margin-top: 20px;
}

#perfume-description {
    font-size: 1.1rem;
    color: #ccc;
    margin-top: 10px;
}

.hidden {
    display: none;
}
