.nts-consent-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1080;
    background: linear-gradient(135deg, #0d1b2a 0%, #1b2838 50%, #2c3e50 100%);
    color: #f8f9fa;
    border-top: 2px solid #0dcaf0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.35);
    padding: 1rem 1.25rem;
    font-family: inherit;
}

.nts-consent-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    justify-content: space-between;
}

.nts-consent-text {
    flex: 1 1 480px;
    min-width: 280px;
    font-size: 0.9rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.85);
}

.nts-consent-text strong {
    color: #fff;
    display: block;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.nts-consent-text a {
    color: #0dcaf0;
    text-decoration: none;
    font-weight: 600;
}

.nts-consent-text a:hover {
    color: #fff;
    text-decoration: underline;
}

.nts-consent-actions {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.nts-consent-actions .btn {
    font-weight: 600;
    border-radius: 0.4rem;
    padding: 0.4rem 1rem;
}

.nts-consent-actions .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.35);
    color: rgba(255, 255, 255, 0.85);
}

.nts-consent-actions .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.6);
}

.nts-consent-actions .btn-info {
    background-color: #0dcaf0;
    border-color: #0dcaf0;
    color: #0d1b2a !important;
}

.nts-consent-actions .btn-info:hover {
    background-color: #0bb5d6;
    border-color: #0bb5d6;
    color: #0d1b2a !important;
}