#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(22, 30, 42, 0.97);
    color: #ededed;
    padding: 16px 28px;
    display: none;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-family: 'PlayfairDisplay', serif;
    font-size: 13px;
    letter-spacing: 0.05em;
    border-top: 1px solid rgba(237, 237, 237, 0.15);
}

#cookie-banner p {
    margin: 0;
    line-height: 1.6;
    flex: 1;
}

#cookie-banner a {
    color: #ededed;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

#cookie-accept,
#cookie-decline {
    font-family: 'PlayfairDisplay', serif;
    font-size: 12px;
    letter-spacing: 0.1em;
    padding: 8px 22px;
    border-radius: 50px;
    cursor: pointer;
    border: 2px solid #ededed;
    transition: background 0.2s, color 0.2s;
}

#cookie-accept {
    background: #ededed;
    color: rgb(78, 97, 125);
}

#cookie-accept:hover {
    background: #ccc;
    border-color: #ccc;
}

#cookie-decline {
    background: transparent;
    color: #ededed;
}

#cookie-decline:hover {
    background: rgba(237, 237, 237, 0.1);
}

/* Placeholder shown when cookies are declined or not yet accepted */
.cookie-blocked-msg {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 720px;
    height: 405px;
    margin: 20px auto 32px;
    background: rgba(78, 97, 125, 0.08);
    border: 1px solid rgba(78, 97, 125, 0.25);
    color: rgb(78, 97, 125);
    font-size: 13px;
    letter-spacing: 0.08em;
    gap: 14px;
}

.cookie-blocked-msg p {
    margin: 0;
}

.cookie-blocked-msg a {
    color: rgb(78, 97, 125);
    border: 1px solid rgb(78, 97, 125);
    padding: 6px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 12px;
}

.cookie-blocked-msg a:hover {
    background: rgba(78, 97, 125, 0.1);
}

/* Bandcamp player placeholder (album page — light background) */
.cookie-blocked-player {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 120px;
    background: rgba(78, 97, 125, 0.08);
    border: 1px solid rgba(78, 97, 125, 0.25);
    color: rgb(78, 97, 125);
    font-size: 13px;
    letter-spacing: 0.08em;
    gap: 12px;
    border-radius: 4px;
}

.cookie-blocked-player a {
    color: rgb(78, 97, 125);
    border: 1px solid rgb(78, 97, 125);
    padding: 6px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 12px;
}

.cookie-blocked-player a:hover {
    background: rgba(78, 97, 125, 0.1);
}

/* "Manage cookies" reset button styled as inline link */
#cookie-reset {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    font: inherit;
    letter-spacing: inherit;
    padding: 0;
    text-decoration: none;
}

@media (max-width: 600px) {
    #cookie-banner {
        flex-direction: column;
        text-align: center;
        padding: 16px 20px;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .cookie-blocked-msg {
        height: 270px;
        max-width: 480px;
    }
}

@media (max-width: 480px) {
    .cookie-blocked-msg {
        height: 180px;
        max-width: 320px;
    }
}
