body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    background: linear-gradient(135deg, #00b4db, #0083b0);
    color: #fff;
}

header {
    background: rgba(0, 0, 0, 0.5);
    padding: 30px;
    text-align: center;
    animation: pulse 2s infinite;
}

h1 {
    font-size: 3rem;
    color: #ff9900;
    text-shadow: 0 0 10px #ff9900;
    animation: glow 1.5s infinite alternate;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
}

nav a {
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    background: rgba(255, 153, 0, 0.2);
    border-radius: 25px;
    transition: all 0.3s ease;
}

nav a:hover {
    background: #ff9900;
    color: #000;
    transform: rotate(5deg);
}

.content {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    margin: 50px auto;
    max-width: 1000px;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(255, 153, 0, 0.3);
    animation: slideUp 0.8s ease;
}

footer {
    background: rgba(0, 0, 0, 0.8);
    text-align: center;
    padding: 20px;
}

.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 153, 0, 0.5);
    max-width: 300px;
    text-align: center;
}

.cookie-consent button {
    background: #ff9900;
    color: #000;
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-consent button:hover {
    background: #ffcc00;
    box-shadow: 0 0 10px #ff9900;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

@keyframes glow {
    from { text-shadow: 0 0 10px #ff9900; }
    to { text-shadow: 0 0 20px #ff9900; }
}

@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
