/* TITLE: BLXCKHIPPY ENTERTAINMENT - AUTH GEOMETRIC OVERLAY PANEL STYLES */

.bh-stark-auth-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 15000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 20px;
    box-sizing: border-box;
}

.bh-stark-auth-overlay.overlay-is-visible {
    opacity: 1;
}

.bh-auth-frame-box {
    background: #0d0d0d;
    border: 2px solid #222222;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.9);
    position: relative;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.bh-stark-auth-overlay.overlay-is-visible .bh-auth-frame-box {
    transform: translateY(0);
}

.bh-auth-frame-header {
    background: #111111;
    border-bottom: 2px solid #222222;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bh-frame-terminal-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.75rem;
    color: #ff9f2e;
    letter-spacing: 1.5px;
}

.bh-frame-close-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.bh-frame-close-btn:hover {
    color: #ff3333;
}

.bh-auth-frame-body {
    padding: 40px;
    box-sizing: border-box;
}

.bh-brand-header-cluster h2 {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -1px;
    margin: 0 0 10px 0;
    color: #ffffff;
}

.bh-brand-header-cluster p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 30px 0;
}

.bh-auth-terminal-error {
    background: rgba(255, 51, 51, 0.1);
    border: 1px solid #ff3333;
    color: #ff3333;
    padding: 14px 18px;
    font-size: 0.85rem;
    font-family: 'Share Tech Mono', monospace;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bh-auth-brutalist-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bh-input-field-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bh-input-field-block label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1px;
}

.bh-stark-input {
    background: #000000;
    border: 2px solid #222222;
    color: #ffffff;
    padding: 14px 16px;
    font-size: 1rem;
    transition: border-color 0.3s;
    width: 100%;
    box-sizing: border-box;
    border-radius: 0;
}

.bh-stark-input:focus {
    border-color: #ff9f2e;
    outline: none;
}

.bh-auth-brutalist-submit-btn {
    background: #ff9f2e;
    color: #000000;
    border: none;
    padding: 16px 24px;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 10px;
}

.bh-auth-brutalist-submit-btn:hover {
    box-shadow: 0 0 20px rgba(255, 159, 46, 0.4);
    transform: translateY(-1px);
}

/* New styles for the User Profile Card */
.bh-user-profile-card {
    position: fixed;
    bottom: 20px; /* Adjust position as needed */
    right: 20px; /* Adjust position as needed */
    z-index: 10000; /* Ensure it's above most content */
    background: #0d0d0d;
    border: 2px solid #222222;
    border-radius: 12px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    font-family: 'Share Tech Mono', monospace;
    color: #ffffff;
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0; /* Hidden by default */
    transform: translateY(20px); /* Slide up on show */
}

.bh-user-profile-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.bh-profile-ring {
    width: 30px;
    height: 30px;
    border: 2px solid #ff9f2e; /* Orange ring */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.bh-profile-ring.upload-trigger {
    cursor: pointer;
    overflow: hidden;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.bh-profile-ring.upload-trigger:hover {
    border-color: #ffffff;
    transform: scale(1.1);
}

.bh-profile-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.bh-profile-status-dot {
    width: 10px;
    height: 10px;
    background: #00ff66; /* Green for online */
    border-radius: 50%;
    box-shadow: 0 0 8px #00ff66;
    animation: pulse-green 2s infinite;
}

/* Reusing pulse-green from home.css if available, otherwise define here */
@keyframes pulse-green {
    0% { transform: scale(0.9); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
    100% { transform: scale(0.9); opacity: 1; }
}

.bh-profile-info {
    display: flex;
    flex-direction: column;
}

.bh-profile-name {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #ff9f2e; /* Orange for name */
    text-transform: uppercase;
}

.bh-profile-datetime {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.5px;
}