.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #12121a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
}

.cookie-consent.hidden {
    display: none;
}

.cookie-consent__text {
    color: #d0d0d8;
    font-size: 14px;
    max-width: 600px;
    margin: 0;
}

.cookie-consent__text a {
    color: #8b8bf5;
    text-decoration: underline;
}

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

.cookie-consent__actions button {
    font-family: inherit;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.cookie-consent__actions button:hover {
    opacity: 0.85;
}

.cookie-consent__accept {
    background: #6c63ff;
    color: #fff;
}

.cookie-consent__decline {
    background: transparent;
    color: #d0d0d8;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}