#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a2e;
    color: #fff;
    padding: 1rem;
    z-index: 9999;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 280px;
}
.cookie-content a {
    color: #4dabf7;
    text-decoration: underline;
}
.cookie-buttons {
    display: flex;
    gap: 0.5rem;
}
.cookie-accept, .cookie-decline {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
}
.cookie-accept {
    background: #228be6;
    color: #fff;
}
.cookie-accept:hover {
    background: #1971c2;
}
.cookie-decline {
    background: transparent;
    color: #868e96;
    border: 1px solid #495057;
}
.cookie-decline:hover {
    color: #adb5bd;
}