#cookie-banner {
    position: fixed;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: min(940px, calc(100% - 18px));
    color: #ecf5ff;
    text-align: center;
    padding: 0.8rem 0.9rem;
    z-index: 1200;
    border-radius: var(--radius-md);
    border: 1px solid var(--line-strong);
    background: rgba(7, 19, 33, 0.97);
    box-shadow: 0 14px 32px rgba(5, 12, 22, 0.45);
    backdrop-filter: blur(6px);
}

#cookie-banner p {
    color: #ecf5ff;
    margin: 0;
    display: inline;
    font-size: 0.9rem;
}

#cookie-banner a {
    color: #bfe8c9;
    text-decoration: underline;
    font-weight: 600;
}

#cookie-banner a:hover,
#cookie-banner a:focus-visible {
    color: #d5ecff;
}

#cookie-banner button {
    margin-left: 0.6rem;
    min-height: 36px;
    padding: 0.42rem 0.78rem;
    border-radius: 10px;
    font-size: 0.84rem;
    border: 1px solid rgba(255, 255, 255, 0.24);
    color: #ffffff;
    background: linear-gradient(170deg, #38d39f 0%, #2ea97f 100%);
}

@media (max-width: 640px) {
    #cookie-banner {
        bottom: 8px;
        padding: 0.72rem;
    }

    #cookie-banner p {
        display: block;
        margin-bottom: 0.5rem;
    }

    #cookie-banner button {
        margin-left: 0;
    }
}
