#pc-cookie-banner {
    position: fixed;
    bottom: -200px;
    left: 20px;
    max-width: 420px;
    background: #0f172a;
    color: #ffffff;
    font-size: 14px;
    z-index: 9999;
    border-radius: 10px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
    transition: all 0.4s ease;
}

#pc-cookie-banner.show {
    bottom: 20px;
}

.pc-cookie-inner {
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pc-cookie-inner p {
    margin: 0;
    line-height: 1.6;
}

.pc-cookie-inner a {
    color: var(--pc-accent);
    text-decoration: underline;
}

.pc-cookie-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#pc-accept {
    background: var(--pc-accent);
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
}

#pc-close {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
}

/* Mobile optimisation */
@media (max-width: 600px) {
    #pc-cookie-banner {
        left: 10px;
        right: 10px;
        max-width: unset;
    }
}
