body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    background: #fff;
    color: #333;
}

header {
    background: #cc0000;
    padding: 25px;
    text-align: center;
    animation: glow 2s infinite alternate;
}

h1 {
    font-size: 3rem;
    color: #fff;
    text-shadow: 0 0 15px #000;
}

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

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

nav a:hover {
    background: #000;
    color: #fff;
    border-radius: 5px;
}

.content {
    background: #f5f5f5;
    padding: 35px;
    margin: 40px auto;
    max-width: 1000px;
    border-left: 5px solid #cc0000;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.7s ease;
}

footer {
    background: #000;
    color: #fff;
    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(204, 0, 0, 0.5);
    max-width: 300px;
    text-align: center;
}

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

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

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
