body {
    font-family: 'Playfair Display', serif;
    margin: 0;
    background: linear-gradient(135deg, #003087, #1a1a1a);
    color: #fff;
}

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

h1 {
    font-size: 3.5rem;
    color: #ffd700;
    text-shadow: 0 0 15px #ffd700;
}

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

nav a {
    color: #ffd700;
    text-decoration: none;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

nav a:hover {
    background: #ffd700;
    color: #003087;
    box-shadow: 0 0 10px #ffd700;
}

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

footer {
    background: #003087;
    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, 215, 0, 0.5);
    max-width: 300px;
    text-align: center;
}

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

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

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

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