/* ============================================
   BRONEST — Student-Facing Styles
   🪺 "Where Bronesty builds champions"
   ============================================ */

/* ============================================
   MODAL OVERLAYS
   ============================================ */
.bns-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.bns-modal-overlay.active {
    display: flex !important;
}

/* ============================================
   JOIN MODAL
   ============================================ */
.bns-join-modal {
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    max-width: 420px;
    width: 100%;
    text-align: center;
    border: 1px solid rgba(124, 58, 237, 0.3);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(124, 58, 237, 0.1);
    position: relative;
    overflow: hidden;
}

.bns-join-modal::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 20%, rgba(124, 58, 237, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.bns-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.2s;
}

.bns-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.bns-join-icon {
    font-size: 4rem;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 4px 12px rgba(124, 58, 237, 0.4));
    animation: bnsNestFloat 3s ease-in-out infinite;
}

@keyframes bnsNestFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.bns-join-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    margin: 0 0 0.3rem 0;
    background: linear-gradient(135deg, #c4b5fd, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bns-join-subtitle {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin: 0 0 1.5rem 0;
}

.bns-join-input-wrap {
    position: relative;
    margin-bottom: 0.5rem;
}

.bns-join-input {
    width: 100%;
    padding: 1rem 1.2rem;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.06);
    border: 2px solid rgba(124, 58, 237, 0.3);
    border-radius: 14px;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: 2px;
    text-transform: uppercase;
    outline: none;
    transition: all 0.3s;
}

.bns-join-input:focus {
    border-color: rgba(124, 58, 237, 0.7);
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.2);
}

.bns-join-input::placeholder {
    color: rgba(255, 255, 255, 0.25);
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: none;
}

.bns-join-error {
    color: #ef4444;
    font-size: 0.8rem;
    margin: 0.5rem 0;
    font-weight: 600;
}

.bns-join-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #7c3aed, #4f46e5);
    border: none;
    border-radius: 14px;
    color: white;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.3);
    margin-top: 0.5rem;
}

.bns-join-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(124, 58, 237, 0.5);
}

.bns-join-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.bns-join-hint {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.75rem;
    margin: 1rem 0 0 0;
}

/* ============================================
   DASHBOARD MODAL
   ============================================ */
.bns-dash-modal {
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    max-height: 88vh;
    overflow-y: auto;
    border: 1px solid rgba(124, 58, 237, 0.3);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.bns-dash-header {
    background: linear-gradient(135deg, #7c3aed, #4f46e5);
    padding: 1.2rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 10;
}

.bns-dash-header-left {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.bns-dash-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 0 0 20px rgba(218, 165, 32, 0.2);
    flex-shrink: 0;
}

.bns-dash-title {
    margin: 0;
    color: white;
    font-size: 1.3rem;
    font-weight: 800;
}

.bns-dash-batch {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
}

/* ============================================
   SECTIONS
   ============================================ */
.bns-section {
    padding: 1rem 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.bns-section-title {
    margin: 0 0 0.8rem 0;
    color: #c4b5fd;
    font-size: 0.9rem;
    font-weight: 700;
}

/* ============================================
   ANNOUNCEMENT CARDS
   ============================================ */
.bns-ann-card {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    padding: 0.8rem 1rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    border-left: 3px solid rgba(124, 58, 237, 0.5);
    transition: all 0.2s;
    position: relative;
}

.bns-ann-card:hover {
    background: rgba(255, 255, 255, 0.06);
}

.bns-ann-urgent {
    border-left-color: #ef4444;
    background: rgba(239, 68, 68, 0.08);
}

.bns-ann-important {
    border-left-color: #f59e0b;
    background: rgba(245, 158, 11, 0.06);
}

.bns-ann-date {
    display: block;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 4px;
}

/* ============================================
   SURVEY CARDS — Premium World-Class
   ============================================ */
.bns-survey-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 1.2rem 1.3rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(124, 58, 237, 0.12);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.bns-survey-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #7c3aed, #a78bfa, #c4b5fd);
    opacity: 0.6;
    transition: opacity 0.3s;
}

.bns-survey-card:hover {
    border-color: rgba(124, 58, 237, 0.3);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 24px rgba(124, 58, 237, 0.08);
}

.bns-survey-card:hover::before {
    opacity: 1;
}

.bns-survey-answered {
    opacity: 0.7;
    border-color: rgba(34, 197, 94, 0.2);
}

.bns-survey-answered::before {
    background: linear-gradient(90deg, #22c55e, #4ade80, #86efac);
}

.bns-survey-q {
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1rem;
    line-height: 1.5;
    letter-spacing: -0.01em;
}

/* ---- Yes/No Buttons ---- */
.bns-survey-options {
    display: flex;
    gap: 0.75rem;
}

.bns-surv-btn {
    flex: 1;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: white;
    font-weight: 600;
    font-size: 0.92rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.bns-btn-icon {
    font-size: 1.3rem;
    transition: transform 0.3s;
}

.bns-btn-label {
    font-weight: 700;
}

.bns-surv-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.bns-surv-btn:active {
    transform: translateY(0) scale(0.97);
}

.bns-surv-yes:hover {
    background: rgba(34, 197, 94, 0.15);
    border-color: rgba(34, 197, 94, 0.5);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.15);
}

.bns-surv-yes:hover .bns-btn-icon {
    transform: scale(1.2) rotate(-10deg);
}

.bns-surv-no:hover {
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.5);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.15);
}

.bns-surv-no:hover .bns-btn-icon {
    transform: scale(1.2) rotate(10deg);
}

.bns-surv-submit {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.25), rgba(79, 70, 229, 0.25));
    border-color: rgba(124, 58, 237, 0.35);
    flex: unset;
    padding: 0.75rem 1.4rem;
}

.bns-surv-submit:hover {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.45), rgba(79, 70, 229, 0.45));
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.2);
}

/* ---- Rating Stars — Premium Golden ---- */
.bns-rating-container {
    text-align: center;
}

.bns-rating-stars {
    display: flex;
    gap: 0.6rem;
    justify-content: center;
    padding: 0.5rem 0;
}

.bns-star {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    font-size: 1.6rem;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.bns-star-icon {
    color: rgba(255, 255, 255, 0.2);
    transition: color 0.25s, text-shadow 0.25s, transform 0.2s;
    font-style: normal;
}

.bns-star:hover {
    transform: scale(1.18);
    background: rgba(255, 215, 0, 0.12);
    border-color: rgba(255, 215, 0, 0.4);
}

.bns-star:hover .bns-star-icon,
.bns-star-active .bns-star-icon {
    color: #fbbf24;
    text-shadow: 0 0 12px rgba(251, 191, 36, 0.5);
}

.bns-star-active {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
}

.bns-star:active {
    transform: scale(0.9);
}

.bns-rating-label {
    margin-top: 0.6rem;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color 0.3s;
}

/* ---- MCQ Options — with Letter Badges ---- */
.bns-mcq-options {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.bns-mcq-opt {
    padding: 0.8rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: white;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: left;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.bns-mcq-letter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: rgba(124, 58, 237, 0.15);
    color: #a78bfa;
    font-weight: 800;
    font-size: 0.8rem;
    flex-shrink: 0;
    transition: all 0.3s;
}

.bns-mcq-text {
    flex: 1;
    font-weight: 500;
    line-height: 1.4;
}

.bns-mcq-opt:hover {
    background: rgba(124, 58, 237, 0.12);
    border-color: rgba(124, 58, 237, 0.4);
    transform: translateX(6px);
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.1);
}

.bns-mcq-opt:hover .bns-mcq-letter {
    background: rgba(124, 58, 237, 0.35);
    color: #c4b5fd;
    transform: scale(1.05);
}

.bns-mcq-opt:active {
    transform: translateX(6px) scale(0.98);
}

/* ---- Open Text Input ---- */
.bns-open-input textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: white;
    font-size: 0.9rem;
    resize: vertical;
    outline: none;
    margin-bottom: 0.5rem;
    font-family: inherit;
    line-height: 1.5;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.bns-open-input textarea::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.bns-open-input textarea:focus {
    border-color: rgba(124, 58, 237, 0.5);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.08);
}

.bns-open-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.bns-char-count {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    font-variant-numeric: tabular-nums;
    transition: color 0.3s;
}

/* ---- Answered State — Premium ---- */
.bns-answered {
    text-align: center;
    color: #4ade80;
    font-weight: 600;
    font-size: 0.92rem;
    padding: 1rem 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    animation: bnsAnsweredIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.bns-answer-checkmark {
    font-size: 1.8rem;
    animation: bnsBounceIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes bnsAnsweredIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bnsBounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }

    60% {
        transform: scale(1.15);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* ---- Submitting State ---- */
.bns-submitting {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.88rem;
    font-weight: 500;
}

.bns-submit-spinner {
    width: 20px;
    height: 20px;
    border: 2.5px solid rgba(124, 58, 237, 0.2);
    border-top-color: #a78bfa;
    border-radius: 50%;
    animation: bnsSpinnerRotate 0.7s linear infinite;
}

@keyframes bnsSpinnerRotate {
    to {
        transform: rotate(360deg);
    }
}

/* ---- Error & Retry State ---- */
.bns-answer-error {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.8rem;
    color: #f87171;
    font-size: 0.88rem;
    font-weight: 500;
    flex-wrap: wrap;
}

.bns-retry-btn {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(239, 68, 68, 0.3);
    background: rgba(239, 68, 68, 0.1);
    color: #fca5a5;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.bns-retry-btn:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.5);
    transform: translateY(-1px);
}

/* ============================================
   MATERIAL CARDS
   ============================================ */
.bns-mat-card {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    padding: 0.8rem 1rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.88rem;
    border-left: 3px solid rgba(59, 130, 246, 0.5);
}

.bns-mat-link {
    display: inline-block;
    margin-top: 0.4rem;
    color: #60a5fa;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.82rem;
    transition: color 0.2s;
}

.bns-mat-link:hover {
    color: #93c5fd;
}

.bns-mat-note {
    margin-top: 0.4rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.82rem;
    white-space: pre-wrap;
}

/* ============================================
   EMPTY STATE
   ============================================ */
.bns-empty-state {
    text-align: center;
    padding: 3rem 2rem;
}

.bns-empty-logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    opacity: 0.6;
    filter: drop-shadow(0 4px 15px rgba(218, 165, 32, 0.3));
    animation: bnsEmptyPulse 3s ease-in-out infinite;
}

@keyframes bnsEmptyPulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

.bns-empty-state p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

/* ============================================
   MOBILE MENU LINK
   ============================================ */
.bns-link-logo {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 1.5px solid rgba(124, 58, 237, 0.4);
    box-shadow: 0 2px 6px rgba(218, 165, 32, 0.2);
}

.bns-mobile-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.2rem;
    color: #c4b5fd;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(79, 70, 229, 0.05));
    border: 1px solid rgba(124, 58, 237, 0.2);
}

.bns-mobile-link:hover {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(79, 70, 229, 0.1));
}

.bns-nest-badge {
    font-size: 0.6rem;
    background: linear-gradient(135deg, #7c3aed, #4f46e5);
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   BRONEST NAVBAR BUTTON — Premium World-Class
   ============================================ */
.bns-nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 50%;
    border: 2px solid rgba(218, 165, 32, 0.5);
    background: linear-gradient(145deg, rgba(218, 165, 32, 0.12), rgba(184, 134, 11, 0.08));
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    animation: bnsNavEntry 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
    overflow: visible;
}

@keyframes bnsNavEntry {
    from {
        opacity: 0;
        transform: scale(0.3) rotate(-30deg);
    }

    50% {
        transform: scale(1.1) rotate(5deg);
    }

    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.bns-nav-btn:hover {
    border-color: rgba(218, 165, 32, 0.9);
    background: linear-gradient(145deg, rgba(218, 165, 32, 0.22), rgba(184, 134, 11, 0.15));
    transform: scale(1.12);
    box-shadow:
        0 0 18px rgba(218, 165, 32, 0.35),
        0 0 40px rgba(218, 165, 32, 0.12),
        0 4px 16px rgba(0, 0, 0, 0.25);
}

.bns-nav-btn:active {
    transform: scale(0.92);
    transition-duration: 0.1s;
}

.bns-nav-logo {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    filter: drop-shadow(0 1px 4px rgba(218, 165, 32, 0.4));
    pointer-events: none;
    transition: filter 0.3s ease;
}

.bns-nav-btn:hover .bns-nav-logo {
    filter: drop-shadow(0 2px 8px rgba(218, 165, 32, 0.6)) brightness(1.1);
}

/* Subtle breathing pulse ring */
.bns-nav-pulse {
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 1.5px solid rgba(218, 165, 32, 0.3);
    animation: bnsNavPulse 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes bnsNavPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.4;
    }

    50% {
        transform: scale(1.15);
        opacity: 0;
    }
}

/* ============================================
   NOTIFICATION BADGE — Premium Indicator
   ============================================ */
.bns-nav-badge {
    display: none;
    /* shown via JS */
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 10px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    line-height: 18px;
    text-align: center;
    box-shadow:
        0 2px 8px rgba(239, 68, 68, 0.5),
        0 0 0 2px rgba(15, 15, 26, 0.9);
    z-index: 2;
    pointer-events: none;
    animation: bnsBadgeEntry 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: -0.02em;
}

.bns-nav-badge.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.bns-nav-badge.pulse {
    animation: bnsBadgePulse 2s ease-in-out infinite;
}

@keyframes bnsBadgeEntry {
    from {
        opacity: 0;
        transform: scale(0.2);
    }

    60% {
        transform: scale(1.3);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bnsBadgePulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(239, 68, 68, 0.5), 0 0 0 2px rgba(15, 15, 26, 0.9);
    }

    50% {
        transform: scale(1.15);
        box-shadow: 0 2px 14px rgba(239, 68, 68, 0.7), 0 0 0 2px rgba(15, 15, 26, 0.9);
    }
}

/* Mobile menu BroNest badge */
.bns-mobile-badge {
    display: none;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 10px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    line-height: 18px;
    text-align: center;
    margin-left: auto;
    box-shadow: 0 2px 6px rgba(239, 68, 68, 0.4);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.bns-mobile-badge.active {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Responsive sizing */
@media (max-width: 968px) {
    .bns-nav-btn {
        width: 44px;
        height: 44px;
    }

    .bns-nav-logo {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 480px) {
    .bns-nav-btn {
        width: 38px;
        height: 38px;
    }

    .bns-nav-logo {
        width: 26px;
        height: 26px;
    }

    .bns-nav-badge {
        min-width: 16px;
        height: 16px;
        font-size: 0.6rem;
        line-height: 16px;
        padding: 0 4px;
        top: -3px;
        right: -3px;
    }
}

@media (max-width: 360px) {
    .bns-nav-btn {
        width: 36px;
        height: 36px;
    }

    .bns-nav-logo {
        width: 24px;
        height: 24px;
    }

    .bns-nav-pulse {
        display: none;
    }
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 640px) {
    .bns-join-modal {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }

    .bns-join-title {
        font-size: 1.5rem;
    }

    .bns-dash-modal {
        max-height: 92vh;
        border-radius: 16px;
    }

    .bns-dash-header {
        padding: 1rem;
    }

    .bns-dash-title {
        font-size: 1.1rem;
    }

    .bns-section {
        padding: 0.8rem 1rem;
    }

    .bns-rating-stars {
        gap: 0.3rem;
    }

    .bns-star {
        width: 42px;
        height: 42px;
    }
}