.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(72, 72, 72, 0.5);
    color: white;
    padding: 16px;
    backdrop-filter: blur(64px);
}

.cookie-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-text {
    text-align: left;
    flex: 1;
    padding-right: 20px;
}

.cookie-title {
    font-size: 15px;
    margin: 0;
}

.cookie-desc {
    font-size: 12px;
    margin-top: 2px;
    opacity: 0.7;
    margin-bottom: 0;
}

.cookie-link {
    color: white;
    text-decoration: underline;
    font-size: 12px;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 10px 20px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
    white-space: nowrap;
}

.cookie-btn.primary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.cookie-btn.primary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(5px);
}

.cookie-btn.secondary {
    background: none;
    color: white;
}

.cookie-btn.secondary:hover {
    background: none;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(5px);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-text {
        text-align: center;
        padding-right: 0;
        margin-bottom: 12px;
    }
    
    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
}