body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #cd3f51, #292b52, #d13f50);
    background-size: 500% 500%;
    animation: gradientBackground 60s ease infinite;
    font-family: 'Roboto', sans-serif;
}

@keyframes gradientBackground {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Weitere Anpassungen für ein modernes Look-and-Feel */
section {
    position: relative;
    overflow: hidden;
}

h1, h2, h3 {
    font-family: 'Roboto', sans-serif;
    font-weight: 300; /* Light */
}

button, a {
    transition: all 0.3s ease;
}

/* Cookie Consent Banner Styling */
#cookie-consent, #cookie-settings {
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

#cookie-consent.hidden, #cookie-settings.hidden {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

#cookie-consent, #cookie-settings {
    background: rgba(17, 24, 39, 0.9); /* bg-gray-900 mit Opazität */
    border-radius: 0.5rem; /* rounded-lg */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* shadow-lg */
    padding: 1.5rem; /* p-6 */
    max-width: 32rem; /* max-w-lg */
    margin: 0 auto;
    z-index: 100;
}

#cookie-consent p, #cookie-settings p {
    color: #e5e7eb; /* text-gray-200 */
    margin-bottom: 1rem; /* mb-4 */
}

#cookie-consent .flex, #cookie-settings .flex {
    display: flex;
    gap: 1rem; /* gap-4 */
    justify-content: center;
}

#cookie-consent button, #cookie-settings button {
    padding: 0.5rem 1rem; /* px-4 py-2 */
    border-radius: 9999px; /* rounded-full */
    font-weight: 600; /* font-semibold */
    transition: all 0.3s ease;
}

#accept-cookies {
    background-color: #cb4051; /* bg-[#cb4051] */
    color: white;
}

#accept-cookies:hover {
    background-color: #a83242; /* hover:bg-[#a83242] */
}

#reject-cookies, #close-settings {
    background-color: #4b5563; /* bg-gray-700 */
    color: white;
}

#reject-cookies:hover, #close-settings:hover {
    background-color: #374151; /* hover:bg-gray-600 */
}

#settings-cookies {
    background: none;
    color: #e5e7eb; /* text-gray-200 */
    text-decoration: underline;
}

#settings-cookies:hover {
    color: white;
}

#save-settings {
    background-color: #cb4051; /* bg-[#cb4051] */
    color: white;
}

#save-settings:hover {
    background-color: #a83242; /* hover:bg-[#a83242] */
}

#cookie-settings .checkbox-container {
    display: flex;
    align-items: center;
    gap: 0.5rem; /* gap-2 */
    margin-bottom: 1rem; /* mb-4 */
}

#cookie-settings input[type="checkbox"] {
    width: 1.25rem; /* w-5 */
    height: 1.25rem; /* h-5 */
}