body {
    background: #ffffff !important;
}

.bnl-container {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
}

.bnl-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.bnl-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.bnl-domain {
    margin-bottom: 6px;
    font-size: 20px;
}

.bnl-category {
    color: #777;
    margin-bottom: 12px;
}

.bnl-price {
    margin-bottom: 6px;
}

.bnl-card-actions {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.bnl-card-actions button {
    flex: 1;
    padding: 12px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 500;
}

.bnl-lease {
    background: #0f6a6a;
    color: #fff;
}

.bnl-buy {
    background: #18a0a0;
    color: #fff;
}

#bnl-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

#bnl-modal.active {
    display: flex;
}

.bnl-modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    width: 360px;
    text-align: center;
}

#bnl-modal input,
#bnl-modal textarea {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ddd;
}

#bnl-submit {
    background: #0f6a6a;
    color: #fff;
    padding: 10px;
    border-radius: 6px;
    border: none;
    margin-right: 10px;
}

#bnl-close {
    background: #ccc;
    padding: 10px;
    border-radius: 6px;
    border: none;
}