:root {
    --bg: #f7e8ec;
    --text: #1e2430;
    --muted: #616877;
    --pink: #ff006a;
    --orange: #ff6a22;
    --purple: #6c3cff;
    --purple2: #d600a9;
    --green: #17a34a;
    --blue: #2478ff;
    --border: rgba(18, 24, 33, 0.08);
    --shadow: 0 20px 40px rgba(130, 40, 80, 0.1);
    --radius: 22px;
}
* {
    box-sizing: border-box;
}
body {
    margin: 0;
    font-family: Inter, system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
}
.wrap {
    width: min(1080px, calc(100% - 28px));
    margin: auto;
    padding: 20px 0 44px;
}

.activity-bar {
    background: #fff;
    border: 1px solid var(--border);
    padding: 12px 16px;
    border-radius: 999px;
    text-align: center;
    font-weight: 800;
    margin-bottom: 18px;
    box-shadow: var(--shadow);
}

.top-note {
    width: fit-content;
    margin: 0 auto 18px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1.5px solid rgba(255, 0, 106, 0.35);
    color: #ff2a77;
    background: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    font-weight: 800;
}

.hero {
    text-align: center;
    margin-bottom: 20px;
}

h1 {
    margin: 0 0 8px;
    font-size: clamp(30px, 6vw, 52px);
    line-height: 1.1;
    font-weight: 900;
}
.sub {
    margin: auto;
    max-width: 720px;
    color: var(--muted);
    font-size: clamp(16px, 2vw, 22px);
}

.notification {
    background: #fff;
    border-radius: 16px;
    padding: 16px;
    border: 1px solid var(--border);
    margin: 22px auto 10px;
    max-width: 760px;
    text-align: center;
    font-weight: 700;
}

.profiles-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px 24px;
    margin-top: 24px;
}
.profile-card {
    display: grid;
    gap: 12px;
}

.photo {
    position: relative;
    aspect-ratio: 0.8;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background-size: cover;
    background-position: center;
}
.photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.38) 100%);
}

.badges {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    z-index: 2;
    display: flex;
    justify-content: space-between;
}
.badge {
    line-height: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.badge.verified {
    color: var(--blue);
    border: 1px solid var(--blue)
}
.badge.online {
    color: var(--green);
    border: 1px solid var(--green)
}

.name {
    position: absolute;
    left: 14px;
    bottom: 14px;
    color: #fff;
    font-size: 21px;
    font-weight: 900;
    background: rgba(0, 0, 0, 0.5);
    padding: 6px 12px;
    z-index: 2;
}

.cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-decoration: none;
    border-radius: 999px;
    padding: 18px 16px;
    color: #fff;
    font-weight: 900;
    font-size: 18px;
    background: linear-gradient(90deg, var(--pink), var(--orange));
    box-shadow: 0 16px 28px rgba(255, 0, 106, 0.22);
}

.bottom-cta {
    display: flex;
    justify-content: center;
    margin: 34px 0 20px;
        position: sticky;
    bottom: 20px;
    margin-left: 0;
    margin-right: 0;
    z-index: 10;
}
.bottom-cta .cta {
    width: min(420px, 100%);
    background: linear-gradient(90deg, var(--purple), var(--purple2));
    font-size: 20px;
    padding: 20px 18px;
}

.fomo {
    margin: 26px auto;
    max-width: 760px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 18px;
    text-align: center;
    font-weight: 700;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    color: var(--muted);
    font-weight: 700;
    margin: 8px 0 32px;
}
.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
}
.dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
}

.legal {
    border-top: 1px solid rgba(30, 36, 48, 0.08);
    padding-top: 18px;
    text-align: center;
    color: #7d8391;
    font-size: 14px;
}
.legal a {
    color: inherit;
    text-decoration: none;
    margin: 0 12px;
    font-weight: 700;
}

.online-indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #198754; 
    animation: blink 1s infinite;
    vertical-align: middle;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
}

@media (max-width: 991px) {
    .activity-bar {
        padding: 8px 12px;
        margin-bottom: 0.5rem;
    }
    .hero {
        margin-bottom: 1rem;
    }
    .notification {
        padding: 8px 12px;
    }
    .profiles-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem
    }
    .profile-card {
        gap: 8px;
    }
    .name {
        font-size: 15px;
        padding: 4px 8px;
        left: 7px;
        bottom: 7px;
    }
    .badges {
        top: 7px;
        left: 7px;
        right: 7px;
    }
    .badge {
        padding: 3px 6px;
        font-size: 11px;
        gap: 3px
    }
    .badge svg {
        width: 11px;
    }
    .cta {
        padding: 8px 12px;
        font-size: 16px;
    }
    .online-indicator {
        width: 7px;
        height: 7px;
        margin-right: 2px;
    }
}



