/* Clean, Modern & Static Link-in-Bio Design (Aligned with LunaTelegram spacing) */
:root {
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.95);
    --text-muted: rgba(255, 255, 255, 0.6);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.2);
    
    /* Snapchat Color Theme */
    --snap-yellow: #FFFC00;
    --snap-text: #000000;
    
    --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --card-width: 440px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-sans);
    background-color: #0c0e12;
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    position: relative;
    padding: 16px;
    -webkit-font-smoothing: antialiased;
}

/* Static Blurred Backdrop (No movement animations) */
.bg-blur-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.bg-blur-image {
    width: 110%;
    height: 110%;
    position: absolute;
    top: -5%;
    left: -5%;
    background-size: cover;
    background-position: center;
    filter: blur(12px) brightness(0.35) saturate(1.1);
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(12, 14, 18, 0.15) 0%, rgba(12, 14, 18, 0.75) 100%);
}

/* Center Layout */
.container {
    width: 100%;
    max-width: var(--card-width);
    z-index: 10;
}

/* Glassmorphic Card (Inspired by LunaTelegram) */
.card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 32px; /* rounded-[2rem] (32px) */
    padding: 32px 32px 48px 32px; /* p-8 pb-12 */
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
}

/* Card Content Structure (Aligned Layout) */
.card-content {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Header Group (Profile Pic, Name, Badges with consistent gap) */
.header-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px; /* space-y-4 (16px) */
    margin-bottom: 24px; /* mb-6 */
}

/* Profile Image */
.pfp-wrapper {
    width: 112px; /* w-28 (112px) */
    height: 112px; /* h-28 (112px) */
    position: relative;
}

.pfp-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.2); /* border-4 border-white/20 */
}

/* Profile Name */
.name {
    font-size: 1.875rem; /* text-3xl (30px) */
    font-weight: 700; /* font-bold */
    margin: 0;
    line-height: 1.2;
}

/* Status Badges Container */
.badge-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px; /* gap-3 (12px) */
    width: 100%;
}

/* Individual Badge Pill */
.badge {
    display: flex;
    align-items: center;
    gap: 8px; /* gap-2 (8px) */
    padding: 8px 16px; /* px-4 py-2 */
    border-radius: 9999px; /* rounded-full */
    font-size: 0.875rem; /* text-sm (14px) */
    font-weight: 500; /* font-medium */
}

/* Active Status Badge */
.badge-status {
    background-color: rgba(16, 185, 129, 0.9); /* bg-emerald-500/90 */
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.status-dot {
    width: 8px; /* w-2 */
    height: 8px; /* h-2 */
    background-color: #ffffff;
    border-radius: 50%;
}

/* Translucent Badges */
.badge-time, .badge-location {
    background: rgba(255, 255, 255, 0.2); /* bg-white/20 */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.icon-clock, .icon-map {
    width: 16px;
    height: 16px;
    opacity: 0.9;
}

/* Description Text Container */
.bio-container {
    margin-bottom: 24px; /* mb-6 */
    text-align: center;
    width: 100%;
}

.bio-text {
    font-size: 1.125rem; /* text-lg (18px) */
    line-height: 1.625; /* leading-relaxed */
    color: var(--text-secondary);
    font-weight: 400;
}

/* Simple CTA Snapchat Button */
.cta-button {
    width: 100%;
    height: 56px; /* h-14 (56px) */
    border-radius: 9999px; /* rounded-full */
    background-color: var(--snap-yellow);
    color: var(--snap-text);
    font-size: 1.125rem; /* text-lg (18px) */
    font-weight: 700; /* font-bold */
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: opacity 0.2s ease, transform 0.1s ease;
}

.btn-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.snapchat-icon {
    width: 24px;
    height: 24px;
}

.cta-button:hover {
    opacity: 0.93;
    transform: translateY(-1px);
}

.cta-button:active {
    transform: translateY(1px);
}

/* Responsive adjustments */
@media (max-width: 440px) {
    body {
        padding: 12px;
    }
    
    .card {
        padding: 24px 20px 36px 20px;
        border-radius: 24px;
    }
    
    .name {
        font-size: 1.65rem;
    }
}
