.whoami-container {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin-bottom: 25px;
}

/* Profile Image Styling */
.profile-aside {
    flex-shrink: 0;
}

.profile-frame {
    position: relative;
    width: 120px;
    height: 120px;
}

.profile-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid var(--accent-primary);
    padding: 5px;
    object-fit: cover;
    box-shadow: 0 0 15px rgba(88, 166, 255, 0.3);
}

.online-indicator {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 18px;
    height: 18px;
    background-color: var(--accent-secondary);
    border: 3px solid var(--bg-color);
    border-radius: 50%;
}

/* Typography & Content */
.name-text {
    color: var(--accent-primary);
    font-size: 1.5rem;
    margin: 5px 0;
}

.greeting {
    color: var(--text-dim);
    font-size: 0.9rem;
}

.role-tag {
    display: block;
    color: var(--accent-highlight);
    font-size: 0.85rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.bio-text {
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Details Grid */
.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.03);
    padding: 10px;
    border-radius: 4px;
}

.detail-label {
    color: var(--accent-secondary);
    font-size: 0.85rem;
    text-transform: uppercase;
    display: block;
}

.detail-val {
    font-size: 0.95rem;
}

/* Status Badge & Animation */
.status-badge {
    padding: 8px 12px;
    border: 1px solid var(--accent-secondary);
    background-color: rgba(63, 185, 80, 0.1);
    border-radius: 4px;
    display: inline-block;
}

.live-dot {
    color: var(--accent-secondary);
    margin-right: 6px;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0%, 100% { opacity: 1; text-shadow: 0 0 5px var(--accent-secondary); }
    50% { opacity: 0.4; text-shadow: none; }
}

.hobby-list {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
}

.hobby-list li {
    padding: 4px 0;
    font-size: 0.9rem;
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    .whoami-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .details-grid {
        text-align: left;
    }
}

/* --- Fun Facts Section Enhancements --- */

.section-divider {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 30px 0 15px 0;
}

.divider-line {
    flex-grow: 1;
    height: 1px;
    background: repeating-linear-gradient(
        to right,
        var(--border-color),
        var(--border-color) 5px,
        transparent 5px,
        transparent 10px
    );
}

.hobbies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.hobby-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: default;
}

.hobby-card:hover {
    background: rgba(88, 166, 255, 0.05);
    border-color: var(--accent-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hobby-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.2));
}

.hobby-info {
    display: flex;
    flex-direction: column;
}

.hobby-name {
    color: var(--accent-highlight);
    font-size: 0.85rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hobby-desc {
    color: var(--text-dim);
    font-size: 0.8rem;
    margin-top: 2px;
}

/* Add a subtle scanline effect to cards in Dark Mode */
[data-theme="dark"] .hobby-card {
    background-image: linear-gradient(rgba(13, 17, 23, 0.8), rgba(13, 17, 23, 0.8)), 
                      url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%2330363d' fill-opacity='0.1' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}