1/* =======================================================================
   🔥 FRAME 1: CLASSIC BOTTOM STRIP (Elegant Dark Glassmorphism & Gold Border)
   ======================================================================= */
.frame-layout-1 {
    padding: 12px;
    align-content: end; /* Bottom alignment */
}
.frame-layout-1 .user-box {
    width: 100%;
    align-items: center;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1.5px solid #eab308; /* Luxury Gold Line */
    border-radius: 12px;
    padding: 10px 12px;
    gap: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.frame-layout-1 .user-photo {
    width: 55px;
    height: 55px;
    border-radius: 8px;
    border: 1.5px solid #ffffff;
}
.frame-layout-1 .info-text h4 {
    color: #eab308;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.3px;
}
.frame-layout-1 .info-text p {
    color: #f1f5f9;
    font-size: 11px;
    margin-top: 2px;
    opacity: 0.95;
}

/* =======================================================================
   🔥 FRAME 2: MODERN LEFT-BAR BADGE (Vertical Corporate Cyan Gradient Tag)
   ======================================================================= */
.frame-layout-2 {
    padding: 12px;
    justify-content: start;
    align-content: center; /* Left vertical center alignment */
}
.frame-layout-2 .user-box {
    flex-direction: column;
    align-items: center;
    background: linear-gradient(180deg, #06b6d4 0%, #0891b2 100%); /* Premium Cyan */
    border-left: 3px solid #ffffff;
    padding: 14px 10px;
    border-radius: 10px;
    width: 85px;
    gap: 8px;
    box-shadow: 4px 8px 20px rgba(0,0,0,0.3);
}
.frame-layout-2 .user-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%; /* Sharp Circular Image Container */
    border: 2px solid #ffffff;
}
.frame-layout-2 .info-text {
    text-align: center;
    width: 100%;
}
.frame-layout-2 .info-text h4 {
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
}
.frame-layout-2 .info-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 9px;
    margin-top: 1px;
    font-weight: 600;
}

/* =======================================================================
   🔥 FRAME 3: FLOATING NEON PILL (Minimalist Capsule Hovering Right Corner)
   ======================================================================= */
.frame-layout-3 {
    padding: 16px;
    justify-content: end;
    align-content: start; /* Floating Top-Right/Bottom corner setup */
    margin-top: auto; /* Pushes up if required or acts down right */
    justify-self: end;
    align-self: end;
}
.frame-layout-3 .user-box {
    background: rgba(244, 63, 94, 0.95); /* Neon Cyber Rose */
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px; /* Pill Configuration */
    padding: 6px 14px;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 15px rgba(244, 63, 94, 0.4);
}
.frame-layout-3 .user-photo {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid #ffffff;
    order: 2; /* Photo goes to the far-right inside the pill */
}
.frame-layout-3 .info-text {
    order: 1; /* Texts stay on the left inside the pill */
    text-align: right;
}
.frame-layout-3 .info-text h4 {
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
}
.frame-layout-3 .info-text p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 9px;
}

/* =======================================================================
   🔥 FRAME 4: PREMIUM LEADER BAND (Deep Blue Solid Band with Floating Mask)
   ======================================================================= */
.frame-layout-4 {
    align-content: end; /* Standard horizontal blocking band setup */
}
.frame-layout-4 .user-box {
    width: 100%;
    position: relative;
    background: linear-gradient(90deg, #1e3a8a 0%, #2563eb 100%); /* Deep Royal Blue */
    border-top: 3px solid #f59e0b; /* Amber Gold Accent Header Line */
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}
.frame-layout-4 .info-text h4 {
    color: #f59e0b; /* Amber Gold Typography Highlights */
    font-size: 16px;
    font-weight: 800;
}
.frame-layout-4 .info-text p {
    color: #ffffff;
    font-size: 11px;
    margin-top: 2px;
}
.frame-layout-4 .user-photo {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: 3px solid #f59e0b;
    position: absolute;
    right: 16px;
    bottom: 12px; /* Smoothly floats halfway out of the frame header boundary */
    box-shadow: 0 -4px 12px rgba(0,0,0,0.3);
}