.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100000;
    padding: 16px;
    pointer-events: none;
}

.cookie-consent-inner {
    max-width: 960px;
    margin: 0 auto;
    padding: 18px 20px;
    border-radius: 14px;
    background: rgba(18, 22, 32, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
    pointer-events: auto;
    color: rgba(255, 255, 255, 0.9);
    font-family: Inter, system-ui, sans-serif;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-consent-inner p {
    margin: 0 0 14px;
}

.cookie-consent-inner a {
    color: #00d4aa;
    text-decoration: underline;
}

.cookie-consent-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cookie-consent-btn {
    border: none;
    border-radius: 10px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
}

.cookie-consent-btn-primary {
    background: #00d4aa;
    color: #0b1220;
}

.cookie-consent-btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.cookie-consent-btn:hover {
    opacity: 0.92;
}

@media (max-width: 600px) {
    .cookie-consent-actions {
        flex-direction: column;
    }
    .cookie-consent-btn {
        width: 100%;
    }
}
