body {
    font-family: 'Georgia', serif;
    background: linear-gradient(to right, #ffefba, #ffffff);
    color: #333;
    text-align: center;
    padding: 2em;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

header {
    margin-bottom: 2em;
    padding: 1em;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

h1 {
    color: #cc0000;
    font-size: 3.5em;
    margin-bottom: 0.1em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: 2px;
}

h1 + p {
    font-style: italic;
    color: #666;
    font-size: 1.2em;
}

main {
    flex-grow: 1;
    width: 90%;
    max-width: 800px;
    padding: 2em;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    margin-top: 2em;
    margin-bottom: 2em;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.horoscope-selector {
    margin-bottom: 2.5em;
    padding: 1.5em;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

h2 {
    color: #007bff;
    font-size: 1.8em;
    margin-bottom: 1em;
}

.horoscope-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1em;
}

.horoscope-buttons button {
    padding: 0.8em 1.5em;
    font-size: 1em;
    color: #fff;
    background: linear-gradient(to right, #007bff, #0056b3);
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.horoscope-buttons button:hover {
    background: linear-gradient(to right, #0056b3, #007bff);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.result-container {
    margin-top: 2em;
    padding: 0;
    border: none;
    border-radius: 12px;
    background-color: transparent;
    box-shadow: none;
    font-size: 1.1em;
    line-height: 1.6;
    color: #555;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.color-swatch {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    padding: 1em;
    box-sizing: border-box;
}

.color-swatch h3 {
    font-size: 2em;
    margin-bottom: 0.5em;
}

.color-swatch p {
    font-size: 1.2em;
    margin-bottom: 0;
}

.accessory-container {
    margin-top: 2em;
    padding: 1.5em;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.accessory-container h3 {
    color: #007bff;
    font-size: 1.5em;
    margin-bottom: 1em;
}

.accessory-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5em;
}

.accessory-item {
    text-align: center;
    font-size: 1em;
    color: #555;
}

.accessory-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 0.5em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5em;
    }

    h2 {
        font-size: 1.5em;
    }

    .horoscope-buttons button {
        flex-basis: calc(33.333% - 1em);
    }

    main {
        width: 95%;
        padding: 1.5em;
    }

    .accessory-item img {
        width: 80px;
        height: 80px;
    }
}

.feedback-form {
    margin-top: 2em;
    padding: 2em;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 800px;
}

.feedback-form h2 {
    color: #007bff;
    font-size: 1.8em;
    margin-bottom: 1em;
}

.feedback-form form {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.feedback-form label {
    font-size: 1.1em;
    text-align: left;
}

.feedback-form input,
.feedback-form textarea {
    padding: 0.8em;
    font-size: 1em;
    border-radius: 8px;
    border: 1px solid #ccc;
}

.feedback-form button {
    padding: 0.9em 1.8em;
    font-size: 1.1em;
    color: #fff;
    background: linear-gradient(to right, #28a745, #218838);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.feedback-form button:hover {
    background: linear-gradient(to right, #218838, #28a745);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}