
.admin-card-premium {
    margin: 80px auto;
    max-width: 850px;
    padding: 2px; /* For the gradient border effect */
    background: var(--border-gradient);
    border-radius: 32px;
    position: relative;
    font-family: 'Inter', sans-serif;
}

.glass-container {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 31px;
    overflow: hidden;
    position: relative;
    padding: 40px;
}

.card-inner {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 2;
}

/* Avatar Segment */
.portrait-frame {
    position: relative;
    width: 120px;
    height: 120px;
}

.portrait-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 28px;
    transform: rotate(-3deg);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255,255,255,0.1);
}

.admin-card-premium:hover .portrait-img {
    transform: rotate(0deg) scale(1.05);
}

.status-ring {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 24px;
    height: 24px;
    background: #22c55e;
    border: 4px solid #0a0a0a;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.5);
}

/* Typography & Content */
.premium-badge {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 15px;
}

.admin-signature {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    margin: 0;
    background: linear-gradient(to right, #ffffff, #a1a1a1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.admin-bio {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 1.05rem;
    margin: 15px 0 25px;
}

.admin-bio strong {
    color: #fff;
    font-weight: 600;
}

/* Action Pills */
.social-pills {
    display: flex;
    gap: 15px;
}

.pill-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 100px;
    background: #fff;
    color: #000 !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.pill-link.secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pill-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    filter: brightness(1.1);
}

/* Background Glow Effect */
.card-glow {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: var(--accent-glow);
    filter: blur(100px);
    pointer-events: none;
    z-index: 1;
}

/* Mobile View */
@media (max-width: 650px) {
    .card-inner {
        flex-direction: column;
        text-align: center;
    }
    .social-pills {
        justify-content: center;
        flex-wrap: wrap;
    }
    .glass-container {
        padding: 30px 20px;
    }
}

/* Premium Signature Styling */
.admin-signature {
    font-family: 'Dancing Script', cursive; /* Ensure this is imported in your header */
    font-weight: 700; /* Makes the cursive 'Strong' */
    font-size: 2.5rem;
    color: var(--text-black);
    letter-spacing: -0.5px; /* Keeps cursive connected and elegant */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05); /* Subtle depth */
}

/* If you want specific words in the bio to be cursive and strong */
.admin-bio strong {
    font-family: 'Dancing Script', cursive;
    font-weight: 700;
    color: var(--bg-light); /* Uses your Indigo for emphasis */
    font-size: 1.1rem;
    padding: 0 2px;
}