@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Poppins', sans-serif;
    background: #f8fafc;
    color: #0f172a;
}

/* =========================
   AUTH SYSTEM
========================= */

.auth-bg{
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        135deg,
        #fff1f5 0%,
        #f8fafc 50%,
        #eef2ff 100%
    );
    padding: 20px;
}

.auth-box{
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(18px);
    border-radius: 28px;
    box-shadow: 0 20px 50px rgba(15,23,42,0.06);
    width: 100%;
    max-width: 430px;
    padding: 45px 35px;
    border: 1px solid rgba(255,255,255,0.5);
}

.auth-title{
    font-size: 30px;
    font-weight: 800;
    text-align: center;
    background: linear-gradient(135deg,#ff2e63,#ff6b81);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 35px;
}

/* =========================
   SIDEBAR
========================= */

.sidebar{
    width: 260px;
    height: 100vh;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(18px);
    position: fixed;
    top: 0;
    left: 0;
    padding: 35px 24px;
    border-right: 1px solid #e2e8f0;
    z-index: 100;
}

.sidebar h3{
    font-weight: 800;
    font-size: 30px;
    background: linear-gradient(135deg,#ff2e63,#ff6b81);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 45px;
    text-align: center;
}

.sidebar .nav-link{
    color: #475569 !important;
    padding: 15px 18px;
    border-radius: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.sidebar .nav-link:hover,
.sidebar .nav-link.active{
    background: rgba(255,46,99,0.08);
    color: #ff2e63 !important;
    transform: translateX(3px);
}

.sidebar .nav-link.text-danger:hover{
    background: rgba(239,68,68,0.08);
    color: #ef4444 !important;
}

.main-content{
    margin-left: 260px;
    padding: 45px;
    min-height: 100vh;
}

/* =========================
   PAGE TITLE
========================= */

.page-title{
    font-size: 3rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
}

.page-subtitle{
    color: #475569;
    font-size: 15px;
    font-weight: 500;
}

/* =========================
   SEARCH BOX
========================= */

.search-box{
    background: rgba(255,255,255,0.98);
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 14px 20px;
    font-size: 14px;
    transition: 0.3s;
    box-shadow: 0 5px 18px rgba(15,23,42,0.03);
    color: #0f172a;
}

.search-box::placeholder{
    color: #64748b;
}

.search-box:focus{
    border-color: #ff2e63;
    box-shadow: 0 0 0 5px rgba(255,46,99,0.10);
    outline: none;
}

/* =========================
   CARD DESIGN
========================= */

.swipe-card{
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    height: 600px;
    background: #fff;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
    transition: 0.35s ease;
    border: none;
}

.swipe-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 22px 50px rgba(255,46,99,0.18);
}

.swipe-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.swipe-card:hover .swipe-img{
    transform: scale(1.03);
}

/* =========================
   OVERLAY
========================= */

.swipe-overlay{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.98) 0%,
        rgba(0,0,0,0.93) 25%,
        rgba(0,0,0,0.75) 50%,
        rgba(0,0,0,0.40) 75%,
        rgba(0,0,0,0.08) 100%
    );
    color: white;
}

/* =========================
   MATCH BADGE
========================= */

.match-percent{
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,46,99,0.20);
    color: #ffd3de;
    padding: 7px 15px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    backdrop-filter: blur(10px);
    margin-bottom: 16px;
    border: 1px solid rgba(255,255,255,0.10);
}

/* =========================
   CARD CONTENT
========================= */

.card-name{
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 5px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.6);
}

.card-age{
    color: rgba(255,255,255,0.90);
    font-size: 1.1rem;
    font-weight: 500;
}

.card-bio{
    color: #ffffff;
    font-size: 15px;
    line-height: 1.85;
    margin-bottom: 20px;
    padding: 12px 14px;
    background: linear-gradient(135deg, rgba(10,10,18,0.36), rgba(255,255,255,0.10));
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 14px;
    box-shadow: 0 12px 34px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.12);
    backdrop-filter: blur(14px) saturate(135%);
    -webkit-backdrop-filter: blur(14px) saturate(135%);
    text-shadow: 0 2px 8px rgba(0,0,0,0.72), 0 0 1px rgba(0,0,0,0.90);
    font-weight: 500;
    letter-spacing: 0.2px;
}

/* =========================
   TAGS
========================= */

.vibe-tag{
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.12);
    color: #ffffff;
    padding: 8px 15px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    backdrop-filter: blur(12px);
}

/* =========================
   INFO TEXT
========================= */

.info-text{
    color: rgba(255,255,255,0.96);
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.8;
    text-shadow: 0 2px 10px rgba(0,0,0,0.55);
    font-weight: 500;
}

.info-text strong{
    color: #ffffff;
    font-weight: 700;
}

/* =========================
   VIEW PROFILE BUTTON
========================= */

.view-btn{
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.98);
    color: #111827;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
    width: fit-content;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.view-btn:hover{
    background: #ff2e63;
    color: white;
    transform: translateY(-2px);
}

/* =========================
   LIKE BUTTON
========================= */

.btn-circle-like{
    position: absolute;
    bottom: 25px;
    right: 25px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg,#ff2e63,#ff6b81);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white !important;
    font-size: 24px;
    box-shadow: 0 12px 28px rgba(255,46,99,0.40);
    transition: 0.3s;
    text-decoration: none;
}

.btn-circle-like:hover{
    transform: scale(1.12);
    box-shadow: 0 18px 35px rgba(255,46,99,0.50);
}

/* =========================
   PROFILE PAGE
========================= */

.profile-card{
    background: rgba(255,255,255,0.94);
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.5);
    padding: 35px;
    box-shadow: 0 15px 40px rgba(15,23,42,0.05);
    backdrop-filter: blur(14px);
}

.profile-img-preview{
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 10px 30px rgba(15,23,42,0.10);
}

/* =========================
   DASHBOARD PREMIUM POLISH
========================= */

html body{
    background:
        radial-gradient(circle at top left, rgba(255,46,99,0.10), transparent 34%),
        radial-gradient(circle at 85% 12%, rgba(99,102,241,0.09), transparent 28%),
        linear-gradient(135deg, #fbfdff 0%, #f7f8fc 45%, #fff5f8 100%);
    color: #111827;
}

body .sidebar{
    background: rgba(255,255,255,0.78);
    border-right: 1px solid rgba(255,255,255,0.72);
    box-shadow: 18px 0 45px rgba(15,23,42,0.06);
    backdrop-filter: blur(22px) saturate(150%);
    -webkit-backdrop-filter: blur(22px) saturate(150%);
}

body .sidebar h3{
    font-weight: 800;
    letter-spacing: 0;
    background: linear-gradient(135deg,#ff2e63 0%,#ff6b8d 48%,#111827 120%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

body .sidebar .nav-link{
    color: #334155 !important;
    font-weight: 650;
    border: 1px solid transparent;
}

body .sidebar .nav-link.active,
body .sidebar .nav-link:hover{
    background: rgba(255,46,99,0.10);
    color: #ff2e63 !important;
    border-color: rgba(255,46,99,0.14);
    box-shadow: 0 10px 28px rgba(255,46,99,0.10);
}

body .main-content:has(#userGrid){
    padding-top: 48px;
}

body .main-content:has(#userGrid) > .d-flex.justify-content-between{
    gap: 22px;
    margin-bottom: 32px !important;
}

body .main-content:has(#userGrid) h2.fw-bold{
    color: #0f172a;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.05;
    font-weight: 800 !important;
    letter-spacing: 0;
}

body .main-content:has(#userGrid) p.text-muted{
    color: #475569 !important;
    font-weight: 550;
}

body .main-content:has(#userGrid) .search-box{
    background: rgba(255,255,255,0.86);
    border: 1px solid rgba(255,46,99,0.12);
    border-radius: 20px;
    padding: 14px 20px;
    box-shadow: 0 18px 42px rgba(15,23,42,0.07);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

body .main-content:has(#userGrid) .search-box:focus{
    border-color: rgba(255,46,99,0.75);
    box-shadow: 0 0 0 5px rgba(255,46,99,0.12), 0 22px 48px rgba(15,23,42,0.09);
}

body .main-content #userGrid{
    row-gap: 10px;
}

body .main-content #userGrid .swipe-card{
    position: relative;
    isolation: isolate;
    overflow: hidden;
    height: 600px;
    border-radius: 30px;
    background: rgba(15,23,42,0.22);
    border: 1px solid rgba(255,255,255,0.22);
    box-shadow:
        0 28px 70px rgba(15,23,42,0.18),
        0 10px 26px rgba(255,46,99,0.08),
        inset 0 1px 0 rgba(255,255,255,0.18);
    backdrop-filter: blur(18px) saturate(145%);
    -webkit-backdrop-filter: blur(18px) saturate(145%);
    transform: translateZ(0);
    transition: transform 0.45s cubic-bezier(.2,.8,.2,1), box-shadow 0.45s ease, border-color 0.45s ease;
}

body .main-content #userGrid .swipe-card::before{
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.01) 0%, rgba(0,0,0,0.11) 38%, rgba(0,0,0,0.50) 100%),
        radial-gradient(circle at 18% 8%, rgba(255,255,255,0.22), transparent 26%),
        radial-gradient(circle at 90% 18%, rgba(255,46,99,0.18), transparent 30%);
}

body .main-content #userGrid .swipe-card::after{
    content: "";
    position: absolute;
    inset: 1px;
    z-index: 2;
    pointer-events: none;
    border-radius: 29px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}

body .main-content #userGrid .swipe-card:hover{
    transform: translateY(-9px) scale(1.012);
    border-color: rgba(255,46,99,0.30);
    box-shadow:
        0 34px 86px rgba(15,23,42,0.24),
        0 18px 48px rgba(255,46,99,0.22),
        inset 0 1px 0 rgba(255,255,255,0.24);
}

body .main-content #userGrid .swipe-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.005);
    filter: saturate(1.06) contrast(1.03);
    transition: transform 0.65s cubic-bezier(.2,.8,.2,1), filter 0.45s ease;
}

body .main-content #userGrid .swipe-card:hover .swipe-img{
    transform: scale(1.065);
    filter: saturate(1.13) contrast(1.06);
}

body .main-content #userGrid .swipe-overlay{
    position: absolute;
    inset: auto 0 0 0;
    z-index: 3;
    padding: 28px;
    color: #ffffff;
    background: linear-gradient(
        to top,
        rgba(5,8,15,0.76) 0%,
        rgba(7,10,18,0.58) 38%,
        rgba(10,10,18,0.24) 72%,
        rgba(10,10,18,0.02) 100%
    );
}

body .main-content #userGrid .match-percent{
    margin-bottom: 14px;
    padding: 7px 14px;
    background: rgba(255,46,99,0.22);
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 999px;
    box-shadow: 0 12px 28px rgba(255,46,99,0.20), inset 0 1px 0 rgba(255,255,255,0.16);
    backdrop-filter: blur(16px) saturate(150%);
    -webkit-backdrop-filter: blur(16px) saturate(150%);
    text-shadow: 0 2px 8px rgba(0,0,0,0.45);
}

body .main-content #userGrid .match-percent i{
    color: #fff0f5;
    filter: drop-shadow(0 0 8px rgba(255,46,99,0.75));
}

body .main-content #userGrid .swipe-overlay h3{
    color: #ffffff;
    font-size: 2rem;
    line-height: 1.1;
    font-weight: 800 !important;
    letter-spacing: 0;
    text-shadow: 0 4px 18px rgba(0,0,0,0.62);
}

body .main-content #userGrid .swipe-overlay h3 .text-muted{
    color: rgba(255,255,255,0.86) !important;
    font-weight: 650;
    text-shadow: 0 3px 14px rgba(0,0,0,0.60);
}

body .main-content #userGrid .swipe-overlay p.text-secondary{
    color: #ffffff !important;
    margin-top: 10px;
    padding: 11px 13px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0.07));
    border: 1px solid rgba(255,255,255,0.16);
    box-shadow: 0 10px 30px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.10);
    backdrop-filter: blur(14px) saturate(130%);
    -webkit-backdrop-filter: blur(14px) saturate(130%);
    font-size: 13.5px;
    line-height: 1.7;
    font-weight: 550;
    text-shadow: 0 2px 8px rgba(0,0,0,0.72);
}

body .main-content #userGrid .vibe-tag{
    padding: 8px 13px;
    background: rgba(255,255,255,0.16);
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 999px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
    backdrop-filter: blur(14px) saturate(145%);
    -webkit-backdrop-filter: blur(14px) saturate(145%);
    font-size: 12px;
    font-weight: 650;
    text-shadow: 0 2px 8px rgba(0,0,0,0.46);
}

body .main-content #userGrid .card-desc{
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255,255,255,0.90);
    font-size: 13.5px;
    line-height: 1.55;
    font-weight: 520;
    text-shadow: 0 2px 9px rgba(0,0,0,0.70);
}

body .main-content #userGrid .card-desc i{
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 22px;
    border-radius: 999px;
    background: rgba(255,255,255,0.16);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.14);
}

body .main-content #userGrid .card-desc b{
    color: #ffffff;
    font-weight: 750;
}

body .main-content #userGrid .profile-btn{
    border: 1px solid rgba(255,255,255,0.22);
    background: rgba(255,255,255,0.92);
    color: #111827;
    border-radius: 999px;
    padding: 10px 17px;
    font-weight: 750;
    box-shadow: 0 14px 32px rgba(0,0,0,0.20);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, color 0.28s ease;
}

body .main-content #userGrid .profile-btn:hover{
    background: #ffffff;
    color: #ff2e63;
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(0,0,0,0.24);
}

body .main-content #userGrid .btn-circle-like{
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.22);
    background:
        radial-gradient(circle at 32% 22%, rgba(255,255,255,0.55), transparent 26%),
        linear-gradient(135deg,#ff2e63 0%,#ff5f7f 55%,#ff8aa0 100%);
    color: #ffffff !important;
    font-size: 21px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 38px rgba(255,46,99,0.42), 0 0 0 7px rgba(255,46,99,0.10);
    text-decoration: none;
    transition: transform 0.32s cubic-bezier(.2,.8,.2,1), box-shadow 0.32s ease, filter 0.32s ease;
}

body .main-content #userGrid .btn-circle-like i{
    color: #ffffff;
    line-height: 1;
    filter: drop-shadow(0 2px 7px rgba(122,0,33,0.42));
}

body .main-content #userGrid .btn-circle-like:hover{
    background:
        radial-gradient(circle at 32% 22%, rgba(255,255,255,0.62), transparent 28%),
        linear-gradient(135deg,#ff174f 0%,#ff2e63 50%,#ff7a95 100%);
    color: #ffffff !important;
    transform: translateY(-3px) scale(1.10);
    box-shadow: 0 22px 48px rgba(255,46,99,0.55), 0 0 0 9px rgba(255,46,99,0.13);
    filter: saturate(1.08);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width: 992px){

    .sidebar{
        width: 100%;
        height: auto;
        position: relative;
    }

    .main-content{
        margin-left: 0;
        padding: 25px;
    }

    .swipe-card{
        height: 560px;
    }

    .page-title{
        font-size: 2.2rem;
    }

    body .main-content:has(#userGrid) > .d-flex.justify-content-between{
        align-items: flex-start !important;
        flex-direction: column;
    }

    body .main-content:has(#userGrid) > .d-flex.justify-content-between > div:last-child{
        max-width: 100% !important;
    }
}

@media(max-width: 576px){

    .main-content{
        padding: 18px;
    }

    .swipe-card{
        height: 540px;
    }

    .card-name{
        font-size: 1.6rem;
    }

    .card-bio{
        font-size: 13px;
        padding: 10px 12px;
    }

    .btn-circle-like{
        width: 56px;
        height: 56px;
        font-size: 20px;
    }

    body .main-content #userGrid .swipe-card{
        height: 560px;
        border-radius: 26px;
    }

    body .main-content #userGrid .swipe-card::after{
        border-radius: 25px;
    }

    body .main-content #userGrid .swipe-overlay{
        padding: 22px;
    }

    body .main-content #userGrid .swipe-overlay h3{
        font-size: 1.55rem;
    }

    body .main-content #userGrid .swipe-overlay p.text-secondary{
        font-size: 12.8px;
        line-height: 1.6;
        padding: 10px 12px;
    }

    body .main-content #userGrid .vibe-tag{
        padding: 7px 11px;
        font-size: 11px;
    }

    body .main-content #userGrid .card-desc{
        font-size: 12.8px;
        gap: 8px;
    }

    body .main-content #userGrid .profile-btn{
        padding: 9px 14px;
        font-size: 13px;
    }

    body .main-content #userGrid .btn-circle-like{
        width: 52px;
        height: 52px;
        min-width: 52px;
        font-size: 19px;
    }
}

.nav-unread-badge{
    margin-left:auto;
    min-width:24px;
    height:24px;
    padding:0 8px;
    border-radius:999px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#ff2e63,#ff7a95);
    color:#fff;
    font-size:12px;
    font-weight:800;
    line-height:1;
    box-shadow:0 10px 22px rgba(255,46,99,0.28);
}

.notification-nav{
    position:relative;
}

.topbar-actions{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:14px;
}

.notification-bell-wrap{
    position:relative;
    display:inline-flex;
}

.notification-bell-btn{
    position:relative;
    width:48px;
    height:48px;
    border:1px solid rgba(255,255,255,0.78);
    border-radius:18px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(145deg,rgba(255,255,255,0.94),rgba(255,255,255,0.68));
    color:#ff2e63;
    box-shadow:0 18px 42px rgba(15,23,42,0.10),0 10px 24px rgba(255,46,99,0.10);
    backdrop-filter:blur(18px) saturate(145%);
    -webkit-backdrop-filter:blur(18px) saturate(145%);
    transition:transform .24s ease, box-shadow .24s ease, color .24s ease;
}

.notification-bell-btn:hover,
.notification-bell-btn:focus{
    color:#ff2e63;
    transform:translateY(-2px);
    box-shadow:0 22px 50px rgba(15,23,42,0.14),0 14px 30px rgba(255,46,99,0.16);
    outline:none;
}

.notification-bell-badge{
    position:absolute;
    top:-7px;
    right:-7px;
    min-width:24px;
    height:24px;
    padding:0 7px;
    border-radius:999px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#ff2e63,#ff7a95);
    color:#fff;
    border:2px solid rgba(255,255,255,0.94);
    font-size:12px;
    font-weight:850;
    line-height:1;
    box-shadow:0 10px 22px rgba(255,46,99,0.30);
}

.notification-bell-menu{
    width:min(360px, calc(100vw - 32px));
    padding:14px;
    border-radius:22px;
    background:linear-gradient(145deg,rgba(255,255,255,0.94),rgba(255,255,255,0.76));
    border:1px solid rgba(255,255,255,0.78);
    box-shadow:0 28px 70px rgba(15,23,42,0.16),0 12px 30px rgba(255,46,99,0.10);
    backdrop-filter:blur(22px) saturate(150%);
    -webkit-backdrop-filter:blur(22px) saturate(150%);
    overflow:hidden;
}

.notification-dropdown-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    padding:4px 4px 12px;
    color:#0f172a;
}

.notification-dropdown-count{
    padding:5px 9px;
    border-radius:999px;
    background:rgba(255,46,99,0.12);
    color:#ff2e63;
    font-size:12px;
    font-weight:850;
}

.notification-dropdown-item{
    display:flex;
    gap:12px;
    padding:12px;
    border-radius:16px;
    text-decoration:none;
    color:#334155;
    border:1px solid transparent;
    transition:.22s ease;
    white-space:normal;
}

.notification-dropdown-item:hover,
.notification-dropdown-item.is-unread{
    background:rgba(255,46,99,0.08);
    border-color:rgba(255,46,99,0.12);
}

.notification-dropdown-icon{
    width:38px;
    height:38px;
    min-width:38px;
    border-radius:14px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#ff2e63,#ff7a95);
    color:#fff;
    box-shadow:0 12px 24px rgba(255,46,99,0.24);
}

.notification-dropdown-copy{
    min-width:0;
    display:flex;
    flex-direction:column;
    gap:3px;
}

.notification-dropdown-title{
    display:flex;
    align-items:center;
    gap:7px;
    color:#0f172a;
    font-size:13px;
    font-weight:850;
    white-space:normal;
}

.notification-dot{
    width:8px;
    height:8px;
    border-radius:50%;
    background:#ef4444;
    box-shadow:0 0 0 4px rgba(239,68,68,0.12);
}

.notification-dropdown-message{
    color:#64748b;
    font-size:12px;
    line-height:1.45;
    white-space:normal;
}

.notification-dropdown-time{
    color:#94a3b8;
    font-size:11px;
    font-weight:700;
}

.notification-dropdown-empty{
    padding:18px 12px;
    color:#64748b;
    font-size:13px;
    text-align:center;
}

.notification-dropdown-all{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:40px;
    margin-top:8px;
    border-radius:999px;
    background:rgba(255,46,99,0.10);
    color:#ff2e63;
    text-decoration:none;
    font-size:13px;
    font-weight:850;
}

.notification-dropdown-all:hover{
    background:linear-gradient(135deg,#ff2e63,#ff7a95);
    color:#fff;
}

@media(max-width: 992px){
    .nav-unread-badge{
        margin-left:2px;
        min-width:20px;
        height:20px;
        padding:0 6px;
        font-size:11px;
    }

    .topbar-actions{
        width:100%;
        justify-content:flex-start;
    }

    .notification-bell-menu{
        width:min(340px, calc(100vw - 28px));
    }
}

/* =========================
   MOBILE APP RESPONSIVENESS
========================= */

@media(max-width: 992px){
    html body{
        overflow-x: hidden;
    }

    html body .sidebar{
        position: sticky;
        top: 0;
        width: 100%;
        height: auto;
        padding: 18px 18px 14px;
        border-right: 0;
        border-bottom: 1px solid rgba(226,232,240,0.72);
        z-index: 100;
    }

    html body .sidebar h3{
        margin-bottom: 14px;
        font-size: 24px;
        text-align: left;
    }

    html body .sidebar .nav{
        flex-direction: row !important;
        gap: 8px;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 4px;
        scrollbar-width: none;
    }

    html body .sidebar .nav::-webkit-scrollbar{
        display: none;
    }

    html body .sidebar .nav-item{
        flex: 0 0 auto;
    }

    html body .sidebar .nav-link{
        margin-bottom: 0;
        padding: 10px 13px;
        border-radius: 999px;
        white-space: nowrap;
        gap: 8px;
        font-size: 13px;
    }

    html body .sidebar .nav-link:hover,
    html body .sidebar .nav-link.active{
        transform: translateY(-1px);
    }

    html body .main-content{
        margin-left: 0;
        padding: 24px;
        width: 100%;
    }

    html body .main-content:has(#userGrid){
        padding-top: 24px;
    }

    body .main-content:has(#userGrid) > .d-flex.justify-content-between{
        width: 100%;
    }

    body .main-content:has(#userGrid) .search-box{
        width: 100%;
        min-height: 48px;
    }

    body .main-content #userGrid .user-card-item{
        margin-bottom: 22px !important;
    }

    body .main-content #userGrid .swipe-card{
        height: clamp(520px, 76vh, 620px);
    }

    .profile-modern-card{
        border-radius: 28px;
        overflow: hidden;
    }

    .profile-modern-img{
        width: 100%;
        max-height: 460px;
        object-fit: cover;
    }
}

@media(max-width: 576px){
    html body .sidebar{
        padding: 16px 14px 12px;
    }

    html body .sidebar h3{
        font-size: 22px;
    }

    html body .sidebar .nav-link{
        padding: 9px 12px;
        font-size: 12px;
    }

    html body .main-content{
        padding: 18px 14px 24px;
    }

    body .main-content:has(#userGrid) h2.fw-bold{
        font-size: 2rem;
    }

    body .main-content:has(#userGrid) > .d-flex.justify-content-between{
        gap: 16px;
        margin-bottom: 22px !important;
    }

    body .main-content #userGrid{
        margin-left: -6px;
        margin-right: -6px;
    }

    body .main-content #userGrid > [class*="col-"]{
        padding-left: 6px;
        padding-right: 6px;
    }

    body .main-content #userGrid .swipe-card{
        height: clamp(500px, 74vh, 570px);
    }

    body .main-content #userGrid .swipe-overlay{
        padding: 20px 18px;
    }

    body .main-content #userGrid .swipe-overlay .d-flex.justify-content-between{
        gap: 12px;
    }

    body .main-content #userGrid .profile-btn{
        min-height: 46px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        white-space: nowrap;
    }

    .profile-modern-card{
        border-radius: 24px;
    }

    .profile-modern-img{
        max-height: 360px;
    }

    .profile-content{
        padding: 22px !important;
    }

    .profile-content h1{
        font-size: 1.8rem;
        line-height: 1.15;
    }

    .profile-bio{
        overflow-wrap: anywhere;
    }

    .profile-tags{
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .profile-tags span{
        max-width: 100%;
        overflow-wrap: anywhere;
    }
}
