body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #b55239;
    color: white;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
    z-index: 0;
}

header {
    background: #8f3d2e;
    padding: 15px;
    text-align: center;
    border-bottom: 3px solid white;
    position: relative;
    z-index: 1;
}

nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

nav a {
    color: #cddc39;
    text-decoration: none;
    font-weight: bold;
    padding: 6px 10px;
    border-radius: 6px;
}

nav a:hover {
    border: 1px solid #cddc39;
}

.container {
    max-width: 1000px;
    margin: auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.card {
    background: rgba(0,0,0,0.25);
    padding: 15px;
    margin-bottom: 15px;
    border-left: 4px solid #cddc39;
    border-radius: 8px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.92);
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
}

.cookie-buttons button {
    background: #cddc39;
    border: none;
    padding: 8px 12px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
}

@media (max-width: 768px) {
    nav { flex-direction: column; }
}