/* HHF Member Login - Clean Dark Design */
/* Minimal dark theme matching the provided login page design */

/* Reset and base container */
.hhf-container,
.hhf-plugin-container,
#hhf-social-app {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #0f172a !important;
    color: #ffffff !important;
    min-height: 100vh;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.6;
    position: relative;
    width: 100% !important;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* Force full width and centered container */
.hhf-plugin-container {
    width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
    max-width: none !important;
    left: 0 !important;
    right: 0 !important;
    position: relative !important;
}

/* Override any WordPress theme styles */
.hhf-container * {
    box-sizing: border-box;
}

/* === HHF MEMBER LOGIN STYLES === */

/* Clean header without complex gradients */
.hhf-interactive-header {
    background: #1e293b;
    padding: 2rem 0 0 0;
    border: none;
    margin: 0;
    text-align: center;
}

.hhf-interactive-header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Logo section */
.hhf-interactive-logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.hhf-interactive-logo-svg {
    width: 80px;
    height: 80px;
    fill: #06b6d4;
}

.hhf-interactive-title-section {
    text-align: left;
}

.hhf-interactive-title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 600;
    margin: 1rem 0 0.5rem 0;
    line-height: 1.2;
    letter-spacing: normal;
}

.hhf-interactive-subtitle {
    color: #94a3b8;
    font-size: 1.125rem;
    margin: 0 0 2rem 0;
    font-weight: 400;
    letter-spacing: normal;
}

/* Simple toggle buttons */
.hhf-interactive-nav {
    display: flex;
    justify-content: center;
    gap: 0;
    margin: 2rem auto;
    max-width: 400px;
}

.hhf-interactive-nav-btn {
    background: #334155;
    border: none;
    color: #94a3b8;
    font-size: 1rem;
    font-weight: 500;
    padding: 1rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
    flex: 1;
    text-align: center;
}

.hhf-interactive-nav-btn:first-child {
    border-radius: 8px 0 0 8px;
}

.hhf-interactive-nav-btn:last-child {
    border-radius: 0 8px 8px 0;
}

.hhf-interactive-nav-btn.active {
    background: #f59e0b;
    color: #1e293b;
    font-weight: 600;
}

.hhf-interactive-nav-btn:hover:not(.active) {
    background: #475569;
    color: #ffffff;
}

/* Clean main content area */
.hhf-interactive-main {
    background: #1e293b;
    min-height: calc(100vh - 200px);
    padding: 1rem;
}

.hhf-interactive-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Welcome section */
.hhf-interactive-welcome {
    padding: 2rem 0;
}

.hhf-interactive-welcome-title {
    background: linear-gradient(135deg, #ffffff 0%, #3b82f6 30%, #8b5cf6 70%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
    text-align: center;
}

.hhf-interactive-welcome-text {
    color: #d1d5db;
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.hhf-interactive-features {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.hhf-interactive-feature-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hhf-interactive-feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hhf-interactive-feature-item:hover {
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
}

.hhf-interactive-feature-item:hover::before {
    opacity: 1;
}

.hhf-feature-icon-wrapper {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    padding: 0.75rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.hhf-interactive-feature-icon {
    width: 24px;
    height: 24px;
    color: white;
}

.hhf-interactive-feature-text {
    color: white;
    font-weight: 600;
    font-size: 1rem;
    z-index: 1;
    position: relative;
}

/* Card containers */
.hhf-interactive-card-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hhf-interactive-card {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 2rem;
    max-width: 400px;
    margin: 0 auto;
    box-shadow: none;
}

.hhf-interactive-card-title {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Form styles */
.hhf-interactive-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hhf-interactive-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hhf-interactive-label {
    color: #d1d5db;
    font-weight: 500;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hhf-interactive-input,
.hhf-interactive-select {
    background: rgba(31, 41, 55, 0.8);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hhf-interactive-input:focus,
.hhf-interactive-select:focus {
    outline: none;
    border-color: #f59e0b;
    background: #3f495a;
}

.hhf-interactive-input::placeholder {
    color: #94a3b8;
}

/* Clean yellow/gold buttons */
.hhf-interactive-btn {
    background: #f59e0b;
    color: #1e293b;
    border: none;
    border-radius: 8px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.hhf-interactive-btn:hover {
    background: #d97706;
    transform: translateY(-1px);
}

.hhf-interactive-btn:active {
    transform: translateY(0);
}

.hhf-interactive-btn:active {
    transform: translateY(0);
}

.hhf-interactive-btn-secondary {
    background: transparent;
    color: #06b6d4;
    border: 1px solid #06b6d4;
}

.hhf-interactive-btn-secondary:hover {
    background: rgba(6, 182, 212, 0.1);
    transform: translateY(-2px);
}

/* Toggle between login/register */
.hhf-interactive-toggle {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.hhf-interactive-toggle-text {
    color: #9ca3af;
    font-size: 1.125rem;
    line-height: 1.5;
}

.hhf-interactive-toggle-btn {
    color: #06b6d4;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: underline;
    transition: all 0.3s ease;
}

.hhf-interactive-toggle-btn:hover {
    color: #f59e0b;
}

/* Footer text styling */
.hhf-footer-text {
    text-align: center;
    color: #64748b;
    font-size: 0.875rem;
    margin-top: 2rem;
    font-weight: 400;
}

/* Center logo and title sections */
.hhf-interactive-header-content {
    text-align: center;
}

.hhf-interactive-logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.hhf-interactive-title-section {
    text-align: center;
}

/* Logo styling */
.hhf-interactive-logo-svg {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

/* === HHF FEED STYLES === */

/* Main social app container */
.hhf-social-app {
    background: #1e293b;
    color: #ffffff;
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    position: relative;
}

/* Clean header */
.hhf-header {
    background: #1e293b;
    border-bottom: 1px solid #334155;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Feed header tabs */
.hhf-feed-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hhf-feed-tabs {
    display: flex;
    gap: 0;
}

.hhf-feed-tab {
    background: #334155;
    color: #94a3b8;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
}

.hhf-feed-tab:first-child {
    border-radius: 20px 0 0 20px;
}

.hhf-feed-tab:last-child {
    border-radius: 0 20px 20px 0;
}

.hhf-feed-tab.active {
    background: #f59e0b;
    color: #1e293b;
}

.hhf-feed-tab:hover:not(.active) {
    background: #475569;
    color: #ffffff;
}

.hhf-fullscreen-btn {
    background: #f59e0b;
    color: #1e293b;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hhf-fullscreen-btn:hover {
    background: #d97706;
}

.hhf-header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hhf-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hhf-logo h1 {
    color: #06b6d4;
    margin: 0;
    font-size: 1.5rem;
    font-weight: bold;
}

.hhf-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.hhf-nav-item {
    color: #888;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    background: transparent;
}

.hhf-nav-item:hover,
.hhf-nav-item.active {
    color: #06b6d4;
    background: rgba(6, 182, 212, 0.1);
}

.hhf-user-menu {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hhf-user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #06b6d4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.875rem;
}

/* Main content */
.hhf-main-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Post creation */
.hhf-post-creator {
    background: #111;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.hhf-post-textarea {
    width: 100%;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1rem;
    resize: none;
    min-height: 80px;
    padding: 0;
    outline: none;
    font-family: inherit;
}

.hhf-post-textarea::placeholder {
    color: #666;
}

.hhf-post-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #333;
}

.hhf-post-media-btn,
.hhf-post-submit-btn {
    background: none;
    border: 1px solid #333;
    color: #888;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hhf-post-submit-btn {
    background: #06b6d4;
    color: #000;
    border-color: #06b6d4;
    font-weight: 600;
}

.hhf-post-media-btn:hover {
    border-color: #06b6d4;
    color: #06b6d4;
}

.hhf-post-submit-btn:hover {
    background: #0891b2;
    border-color: #0891b2;
}

/* Clean feed posts */
.hhf-feed-post {
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hhf-feed-post:hover {
    border-color: #475569;
}

/* Post header styling */
.hhf-post-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.hhf-post-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f59e0b;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e293b;
    font-weight: bold;
    font-size: 1rem;
}

.hhf-post-user-info,
.hhf-post-author {
    flex: 1;
}

.hhf-post-username,
.hhf-post-name {
    color: #ffffff;
    font-weight: 600;
    margin: 0;
    font-size: 1rem;
}

.hhf-post-timestamp,
.hhf-post-location {
    color: #94a3b8;
    font-size: 0.875rem;
    margin: 0;
}

.hhf-post-content {
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.hhf-post-media {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.hhf-post-media img,
.hhf-post-media video {
    width: 100%;
    height: auto;
    display: block;
}

.hhf-post-actions {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #334155;
}

.hhf-post-action-btn {
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.hhf-post-action-btn:hover {
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.1);
}

.hhf-post-action-btn.liked {
    color: #ef4444;
}

.hhf-post-action-btn svg {
    width: 18px;
    height: 18px;
}

.hhf-post-action-btn {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.hhf-post-action-btn:hover {
    color: #06b6d4;
    background: rgba(6, 182, 212, 0.1);
}

.hhf-post-action-btn.liked {
    color: #ef4444;
}

/* Premium bottom navigation with glass morphism */
.hhf-bottom-navigation {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(30px);
    border-top: 1px solid rgba(59, 130, 246, 0.3);
    z-index: 1000;
    padding: 12px 0;
    box-shadow: 
        0 -8px 32px rgba(0, 0, 0, 0.4), 
        0 0 60px rgba(59, 130, 246, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hhf-nav-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

.hhf-nav-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    padding: 8px 4px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
    min-width: 50px;
    position: relative;
}

.hhf-nav-btn:hover {
    color: #06b6d4;
    background: rgba(6, 182, 212, 0.1);
    transform: translateY(-2px);
}

.hhf-nav-btn.active {
    color: #ffffff;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.hhf-nav-btn.active::before {
    content: "";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.6);
}

.hhf-nav-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 4px;
}

.hhf-nav-text {
    font-size: 0.75rem;
    font-weight: 500;
}

/* Responsive design */
@media (max-width: 768px) {
    .hhf-interactive-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hhf-interactive-welcome-title {
        font-size: 2rem;
    }
    
    .hhf-interactive-title {
        font-size: 1.75rem;
    }
    
    .hhf-interactive-card {
        padding: 1.5rem;
    }
    
    .hhf-interactive-main {
        padding: 1.5rem 0.75rem;
    }
    
    .hhf-main-content {
        padding: 1rem 0.5rem 6rem;
    }
}

@media (min-width: 769px) {
    .hhf-nav-btn {
        min-width: 60px;
        padding: 12px 8px;
    }
    
    .hhf-nav-icon {
        width: 30px;
        height: 30px;
    }
    
    .hhf-nav-text {
        font-size: 0.875rem;
    }
}

/* Loading and transitions */
.hhf-loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(6, 182, 212, 0.3);
    border-radius: 50%;
    border-top-color: #06b6d4;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Utilities */
.hhf-hidden {
    display: none !important;
}

.hhf-visible {
    display: block !important;
}

.hhf-text-center {
    text-align: center;
}

.hhf-mb-0 { margin-bottom: 0; }
.hhf-mb-1 { margin-bottom: 0.5rem; }
.hhf-mb-2 { margin-bottom: 1rem; }
.hhf-mb-3 { margin-bottom: 1.5rem; }
.hhf-mb-4 { margin-bottom: 2rem; }

.hhf-mt-0 { margin-top: 0; }
.hhf-mt-1 { margin-top: 0.5rem; }
.hhf-mt-2 { margin-top: 1rem; }
.hhf-mt-3 { margin-top: 1.5rem; }
.hhf-mt-4 { margin-top: 2rem; }

/* === CHAT INTERFACE STYLES === */

/* Chat header */
.hhf-chat-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #1e293b;
    border-bottom: 1px solid #334155;
}

.hhf-chat-back-btn {
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.hhf-chat-back-btn:hover {
    background: #334155;
}

.hhf-chat-user-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #22d3ee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e293b;
    font-weight: bold;
    font-size: 1.2rem;
}

.hhf-chat-user-info {
    flex: 1;
}

.hhf-chat-user-name {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0;
}

.hhf-chat-user-status {
    color: #94a3b8;
    font-size: 0.875rem;
    margin: 0;
}

.hhf-chat-actions {
    display: flex;
    gap: 0.5rem;
}

.hhf-chat-action-btn {
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.hhf-chat-action-btn:hover {
    background: #334155;
    color: #ffffff;
}

/* Chat messages container */
.hhf-chat-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: #000000;
}

/* Message bubbles */
.hhf-message {
    max-width: 70%;
    display: flex;
    flex-direction: column;
}

.hhf-message.received {
    align-self: flex-start;
}

.hhf-message.sent {
    align-self: flex-end;
}

.hhf-message-bubble {
    padding: 0.75rem 1rem;
    border-radius: 18px;
    word-wrap: break-word;
}

.hhf-message.received .hhf-message-bubble {
    background: #374151;
    color: #ffffff;
    border-bottom-left-radius: 6px;
}

.hhf-message.sent .hhf-message-bubble {
    background: #22d3ee;
    color: #ffffff;
    border-bottom-right-radius: 6px;
}

.hhf-message-time {
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 0.25rem;
    padding: 0 0.5rem;
}

.hhf-message.received .hhf-message-time {
    text-align: left;
}

.hhf-message.sent .hhf-message-time {
    text-align: right;
}

/* Chat input */
.hhf-chat-input-container {
    padding: 1rem;
    background: #1e293b;
    border-top: 1px solid #334155;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.hhf-chat-input {
    flex: 1;
    background: #374151;
    border: 1px solid #4b5563;
    border-radius: 20px;
    padding: 0.75rem 1rem;
    color: #ffffff;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.hhf-chat-input:focus {
    border-color: #22d3ee;
}

.hhf-chat-input::placeholder {
    color: #9ca3af;
}

.hhf-chat-send-btn {
    background: #6b7280;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hhf-chat-send-btn:hover {
    background: #4b5563;
}

/* Chat container layout */
.hhf-chat-container {
    display: flex;
    flex-direction: column;
    height: 100vh;
    background: #000000;
}



/* === DUPLICATE STYLES REMOVED - USING COMPLETE APP STYLES BELOW === */

/* === OLD DUPLICATE STYLES REMOVED - USING COMPLETE APP STYLES BELOW === */

/* === MAIN CONTENT AREA === */

.hhf-main-content {
    margin-top: 70px;
    margin-bottom: 80px;
    min-height: calc(100vh - 150px);
    background: #000000;
}

/* === CREATE POST PAGE STYLES === */

.hhf-post-page {
    background: #000000;
    min-height: 100%;
    padding: 1rem;
}

/* Post page header */
.hhf-post-page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #374151;
}

.hhf-post-page-title {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.hhf-post-page-share-btn {
    background: #f59e0b;
    color: #1e293b;
    border: none;
    border-radius: 20px;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hhf-post-page-share-btn:hover {
    background: #d97706;
}

.hhf-post-page-share-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Post page body */
.hhf-post-page-body {
    max-width: 600px;
    margin: 0 auto;
}

/* User info section */
.hhf-post-user-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.hhf-post-user-avatar-page {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f59e0b;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e293b;
    font-weight: bold;
    font-size: 1.25rem;
}

.hhf-post-user-info-page {
    flex: 1;
}

.hhf-post-user-name-page {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0;
}

.hhf-post-user-location-page {
    color: #94a3b8;
    font-size: 1rem;
    margin: 0;
}

/* Post content textarea */
.hhf-post-content-textarea {
    width: 100%;
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.5;
    resize: none;
    outline: none;
    min-height: 150px;
    font-family: inherit;
    padding: 1rem;
    transition: border-color 0.3s ease;
}

.hhf-post-content-textarea:focus {
    border-color: #22d3ee;
}

.hhf-post-content-textarea::placeholder {
    color: #6b7280;
}

/* Post notes */
.hhf-post-notes {
    background: #0f172a;
    border: 1px solid #1e293b;
    border-radius: 6px;
    padding: 0.75rem;
    margin: 1rem 0;
}

.hhf-post-note {
    color: #94a3b8;
    font-size: 0.75rem;
    margin: 0 0 0.25rem 0;
    line-height: 1.4;
}

.hhf-post-note:last-child {
    margin-bottom: 0;
}

/* Emoji picker */
.hhf-emoji-picker {
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 6px;
    padding: 0.5rem;
    margin: 0.5rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    max-height: 120px;
    overflow-y: auto;
}

.hhf-emoji-btn {
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.hhf-emoji-btn:hover {
    background: #334155;
}

.hhf-emoji-toggle {
    background: #334155;
    border: 1px solid #475569;
    border-radius: 6px;
    color: #ffffff;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    cursor: pointer;
    margin: 0.5rem 0;
    transition: all 0.3s ease;
}

.hhf-emoji-toggle:hover {
    background: #475569;
}

/* Media attachment options */
.hhf-post-media-options {
    display: flex;
    gap: 2rem;
    padding: 1rem;
    border-top: 1px solid #374151;
    border-bottom: 1px solid #374151;
    margin: 1rem 0;
}

.hhf-post-media-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #94a3b8;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.hhf-post-media-option:hover {
    color: #ffffff;
    background: #374151;
}

.hhf-post-media-option svg {
    width: 20px;
    height: 20px;
}

.hhf-post-media-option span {
    font-size: 0.875rem;
    font-weight: 500;
}

/* === COMPLETE FEED PAGE STYLES === */

.hhf-feed-page {
    background: #000000;
    min-height: 100%;
}

.hhf-feed-header {
    padding: 1rem;
    background: #1e293b;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.hhf-feed-filters {
    display: flex;
    gap: 0.5rem;
}

.hhf-feed-filter {
    background: #f59e0b;
    color: #1e293b;
    border: none;
    border-radius: 20px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hhf-feed-filter:hover {
    background: #d97706;
}

.hhf-feed-filter.inactive {
    background: #475569;
    color: #ffffff;
}

.hhf-feed-filter.inactive:hover {
    background: #64748b;
}

.hhf-feed-search {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    max-width: 300px;
}

.hhf-feed-search-input {
    flex: 1;
    background: #334155;
    border: 1px solid #475569;
    border-radius: 20px;
    padding: 0.5rem 1rem;
    color: #ffffff;
    font-size: 0.875rem;
}

.hhf-feed-search-input:focus {
    outline: none;
    border-color: #22d3ee;
}

.hhf-feed-search-input::placeholder {
    color: #94a3b8;
}

.hhf-feed-search-btn {
    background: #334155;
    border: 1px solid #475569;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hhf-feed-search-btn:hover {
    background: #475569;
    color: #ffffff;
}

.hhf-feed-search-btn svg {
    width: 16px;
    height: 16px;
}

.hhf-feed-posts {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* === CHAT CONVERSATIONS LIST STYLES === */

.hhf-chat-list-page {
    background: #000000;
    min-height: 100%;
}

.hhf-chat-list-header {
    padding: 1.5rem 1rem 1rem;
    background: #1e293b;
    border-bottom: 1px solid #334155;
}

.hhf-chat-list-title {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.hhf-chat-conversations {
    padding: 0;
}

.hhf-chat-conversation-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-bottom: 1px solid #334155;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.hhf-chat-conversation-item:hover {
    background: #1e293b;
}

.hhf-chat-conversation-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #22d3ee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e293b;
    font-weight: bold;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.hhf-chat-conversation-info {
    flex: 1;
    min-width: 0;
}

.hhf-chat-conversation-name {
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    margin: 0 0 0.25rem 0;
}

.hhf-chat-conversation-preview {
    color: #94a3b8;
    font-size: 0.875rem;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hhf-chat-conversation-time {
    color: #6b7280;
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* === MEMBER DIRECTORY STYLES === */

.hhf-members-page {
    background: #000000;
    min-height: 100%;
    padding: 1rem;
}

.hhf-members-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.hhf-members-header h2 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.hhf-members-search {
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 20px;
    padding: 0.5rem 1rem;
    color: #ffffff;
    font-size: 0.875rem;
    min-width: 250px;
}

.hhf-members-search:focus {
    outline: none;
    border-color: #22d3ee;
}

.hhf-members-search::placeholder {
    color: #94a3b8;
}

.hhf-members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.hhf-member-card {
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.hhf-member-card:hover {
    border-color: #22d3ee;
    transform: translateY(-2px);
}

.hhf-member-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #22d3ee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e293b;
    font-weight: bold;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
    position: relative;
}

.hhf-member-avatar.online::after {
    content: '';
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background: #10b981;
    border: 2px solid #1e293b;
    border-radius: 50%;
}

.hhf-member-card h3 {
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.hhf-member-card p {
    color: #94a3b8;
    font-size: 0.875rem;
    margin: 0 0 1rem 0;
}

.hhf-member-actions {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.hhf-member-actions button {
    background: #f59e0b;
    color: #1e293b;
    border: none;
    border-radius: 6px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hhf-member-actions button:hover {
    background: #d97706;
}

.hhf-member-actions button:first-child {
    background: #334155;
    color: #ffffff;
}

.hhf-member-actions button:first-child:hover {
    background: #475569;
}

/* === NETWORK PAGE STYLES === */

.hhf-network-page {
    background: #000000;
    min-height: 100%;
    padding: 1rem;
}

.hhf-network-header {
    margin-bottom: 2rem;
}

.hhf-network-header h2 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
}

.hhf-network-tabs {
    display: flex;
    gap: 0.5rem;
}

.hhf-network-tab {
    background: #334155;
    color: #ffffff;
    border: none;
    border-radius: 20px;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hhf-network-tab.active {
    background: #f59e0b;
    color: #1e293b;
}

.hhf-network-tab:hover {
    background: #475569;
}

.hhf-network-tab.active:hover {
    background: #d97706;
}

.hhf-network-content {
    background: #1e293b;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.hhf-network-content p {
    color: #94a3b8;
    font-size: 1rem;
    margin: 0;
}

/* === PROFILE PAGE STYLES === */

.hhf-profile-page {
    background: #000000;
    min-height: 100%;
}

.hhf-profile-header {
    position: relative;
    margin-bottom: 2rem;
}

.hhf-profile-banner {
    height: 200px;
    background: linear-gradient(135deg, #1e293b 0%, #374151 100%);
    border-radius: 0 0 12px 12px;
}

.hhf-profile-info {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.hhf-profile-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #f59e0b;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e293b;
    font-weight: bold;
    font-size: 2rem;
    margin: 0 auto 1rem;
    border: 4px solid #000000;
}

.hhf-profile-info h2 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.hhf-profile-info p {
    color: #94a3b8;
    font-size: 1rem;
    margin: 0;
}

.hhf-profile-content {
    padding: 3rem 1rem 1rem;
}

.hhf-profile-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.hhf-profile-stats .stat {
    text-align: center;
}

.hhf-profile-stats .stat span {
    display: block;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.hhf-profile-stats .stat {
    color: #94a3b8;
    font-size: 0.875rem;
}

.hhf-profile-about {
    background: #1e293b;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.hhf-profile-about h3 {
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
}

.hhf-profile-about p {
    color: #94a3b8;
    font-size: 1rem;
    margin: 0;
}



/* === MEMBER DIRECTORY STYLES === */

/* Directory header */
.hhf-directory-header {
    padding: 2rem 1rem 1rem;
    background: #1e293b;
}

.hhf-directory-title {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 1.5rem 0;
    text-align: left;
}

/* Search functionality */
.hhf-directory-search {
    margin-bottom: 1.5rem;
}

.hhf-directory-search-input {
    width: 100%;
    background: #334155;
    border: 1px solid #475569;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.hhf-directory-search-input:focus {
    outline: none;
    border-color: #22d3ee;
    background: #3f495a;
}

.hhf-directory-search-input::placeholder {
    color: #94a3b8;
}

/* Filter options */
.hhf-directory-filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.hhf-directory-filter {
    background: #334155;
    border: 1px solid #475569;
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    color: #ffffff;
    font-size: 0.875rem;
    min-width: 120px;
}

.hhf-directory-filter:focus {
    outline: none;
    border-color: #22d3ee;
}

/* Members grid */
.hhf-members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 1rem;
    background: #000000;
}

/* Member card */
.hhf-member-card {
    background: #1e293b;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #334155;
}

.hhf-member-card:hover {
    border-color: #475569;
    transform: translateY(-2px);
}

/* Member avatar */
.hhf-member-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #22d3ee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e293b;
    font-weight: bold;
    font-size: 2rem;
    margin: 0 auto 1rem;
}

/* Member info */
.hhf-member-name {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.hhf-member-chapter {
    color: #94a3b8;
    font-size: 1rem;
    margin: 0 0 0.25rem 0;
}

.hhf-member-profession {
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0 0 1.5rem 0;
}

/* Member actions */
.hhf-member-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hhf-member-action-btn {
    border: none;
    border-radius: 20px;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.hhf-member-follow-btn {
    background: #22d3ee;
    color: #1e293b;
}

.hhf-member-follow-btn:hover {
    background: #06b6d4;
}

.hhf-member-friend-btn {
    background: #8b5cf6;
    color: #ffffff;
}

.hhf-member-friend-btn:hover {
    background: #7c3aed;
}

.hhf-member-chat-btn {
    background: #f97316;
    color: #ffffff;
}

.hhf-member-chat-btn:hover {
    background: #ea580c;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hhf-members-grid {
        grid-template-columns: 1fr;
        padding: 0.5rem;
    }
    
    .hhf-member-card {
        padding: 1rem;
    }
    
    .hhf-member-avatar {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .hhf-directory-filters {
        flex-direction: column;
    }
    
    .hhf-directory-filter {
        width: 100%;
    }
}

/* Loading state */
.hhf-members-loading {
    text-align: center;
    padding: 2rem;
    color: #94a3b8;
}

/* Empty state */
.hhf-members-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: #94a3b8;
}

.hhf-members-empty h3 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}



/* === PROFILE PAGE STYLES === */

/* Profile container */
.hhf-profile-container {
    background: #000000;
    min-height: 100vh;
    padding: 2rem 1rem;
}

/* Profile header section */
.hhf-profile-header {
    text-align: center;
    margin-bottom: 2rem;
}

/* Profile picture */
.hhf-profile-picture {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: bold;
    font-size: 3rem;
    overflow: hidden;
}

.hhf-profile-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Profile info */
.hhf-profile-name {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.hhf-profile-chapter {
    color: #94a3b8;
    font-size: 1.125rem;
    margin: 0 0 0.25rem 0;
}

.hhf-profile-profession {
    color: #6b7280;
    font-size: 1rem;
    margin: 0 0 2rem 0;
}

/* Profile stats */
.hhf-profile-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.hhf-profile-stat {
    text-align: center;
}

.hhf-profile-stat-number {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.hhf-profile-stat-label {
    color: #94a3b8;
    font-size: 0.875rem;
    margin: 0;
}

/* Profile details card */
.hhf-profile-details {
    background: #1e293b;
    border-radius: 12px;
    padding: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.hhf-profile-details-title {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 1.5rem 0;
}

/* Profile detail rows */
.hhf-profile-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #334155;
}

.hhf-profile-detail-row:last-child {
    border-bottom: none;
}

.hhf-profile-detail-label {
    color: #94a3b8;
    font-size: 1rem;
    font-weight: 500;
    flex: 0 0 auto;
    min-width: 100px;
}

.hhf-profile-detail-value {
    color: #ffffff;
    font-size: 1rem;
    text-align: right;
    flex: 1;
    word-break: break-all;
}

.hhf-profile-detail-value a {
    color: #22d3ee;
    text-decoration: none;
    transition: color 0.3s ease;
}

.hhf-profile-detail-value a:hover {
    color: #06b6d4;
}

/* Bio section */
.hhf-profile-bio {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #334155;
}

.hhf-profile-bio-label {
    color: #94a3b8;
    font-size: 1rem;
    font-weight: 500;
    margin: 0 0 0.5rem 0;
}

.hhf-profile-bio-text {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

/* Profile actions */
.hhf-profile-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
}

.hhf-profile-action-btn {
    background: #22d3ee;
    color: #1e293b;
    border: none;
    border-radius: 20px;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.hhf-profile-action-btn:hover {
    background: #06b6d4;
}

.hhf-profile-action-btn.secondary {
    background: #8b5cf6;
    color: #ffffff;
}

.hhf-profile-action-btn.secondary:hover {
    background: #7c3aed;
}

/* Responsive design */
@media (max-width: 768px) {
    .hhf-profile-container {
        padding: 1rem 0.5rem;
    }
    
    .hhf-profile-picture {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
    
    .hhf-profile-name {
        font-size: 1.5rem;
    }
    
    .hhf-profile-stats {
        gap: 2rem;
    }
    
    .hhf-profile-stat-number {
        font-size: 1.25rem;
    }
    
    .hhf-profile-details {
        margin: 0 0.5rem;
        padding: 1rem;
    }
    
    .hhf-profile-detail-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .hhf-profile-detail-value {
        text-align: left;
    }
    
    .hhf-profile-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hhf-profile-action-btn {
        width: 200px;
    }
}



/* === FRIENDS/NETWORK PAGE STYLES === */

/* Network page container */
.hhf-network-container {
    background: #000000;
    min-height: 100vh;
}

/* Network header */
.hhf-network-header {
    padding: 2rem 1rem 1rem;
    background: #1e293b;
}

.hhf-network-title {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 1.5rem 0;
    text-align: left;
}

/* Tab navigation */
.hhf-network-tabs {
    display: flex;
    border-bottom: 1px solid #334155;
    margin-bottom: 1rem;
}

.hhf-network-tab {
    background: none;
    border: none;
    color: #94a3b8;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    flex: 1;
    text-align: center;
}

.hhf-network-tab:hover {
    color: #ffffff;
}

.hhf-network-tab.active {
    color: #22d3ee;
    border-bottom-color: #22d3ee;
}

/* Tab content */
.hhf-network-tab-content {
    display: none;
    padding: 1rem;
}

.hhf-network-tab-content.active {
    display: block;
}

/* Friends grid - reuse member directory styles but with different actions */
.hhf-friends-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 1rem;
    background: #000000;
}

/* Friend card - same as member card */
.hhf-friend-card {
    background: #1e293b;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #334155;
}

.hhf-friend-card:hover {
    border-color: #475569;
    transform: translateY(-2px);
}

/* Friend avatar - same as member avatar */
.hhf-friend-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #22d3ee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e293b;
    font-weight: bold;
    font-size: 2rem;
    margin: 0 auto 1rem;
}

/* Friend info - same as member info */
.hhf-friend-name {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.hhf-friend-chapter {
    color: #94a3b8;
    font-size: 1rem;
    margin: 0 0 0.25rem 0;
}

.hhf-friend-profession {
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0 0 1.5rem 0;
}

/* Friend actions */
.hhf-friend-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hhf-friend-action-btn {
    border: none;
    border-radius: 20px;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

/* Unfriend button - red */
.hhf-friend-unfriend-btn {
    background: #ef4444;
    color: #ffffff;
}

.hhf-friend-unfriend-btn:hover {
    background: #dc2626;
}

/* Unfollow button - gray */
.hhf-friend-unfollow-btn {
    background: #6b7280;
    color: #ffffff;
}

.hhf-friend-unfollow-btn:hover {
    background: #4b5563;
}

/* Chat button - orange (same as member directory) */
.hhf-friend-chat-btn {
    background: #f97316;
    color: #ffffff;
}

.hhf-friend-chat-btn:hover {
    background: #ea580c;
}

/* Empty state */
.hhf-network-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: #94a3b8;
}

.hhf-network-empty h3 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.hhf-network-empty p {
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hhf-friends-grid {
        grid-template-columns: 1fr;
        padding: 0.5rem;
    }
    
    .hhf-friend-card {
        padding: 1rem;
    }
    
    .hhf-friend-avatar {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .hhf-network-tab {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
}

/* === COMPLETE APP STRUCTURE STYLES === */

/* Fixed Top Header */
.hhf-top-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-bottom: 2px solid #eab308;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    height: 80px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hhf-header-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hhf-header-logo {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
    padding: 0.75rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    position: relative;
    overflow: hidden;
}

.hhf-header-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
    transform: translateX(-100%);
    animation: logoShimmer 3s infinite;
}

@keyframes logoShimmer {
    100% { transform: translateX(100%); }
}

.hhf-header-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hhf-header-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #ffffff, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hhf-header-tagline {
    font-size: 0.8rem;
    color: #06b6d4;
    letter-spacing: 0.5px;
    opacity: 0.9;
    font-weight: 500;
}

.hhf-header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hhf-header-notification {
    position: relative;
    background: rgba(234, 179, 8, 0.2);
    border: 1px solid #eab308;
    color: #eab308;
    padding: 0.75rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hhf-header-notification:hover {
    background: rgba(234, 179, 8, 0.3);
    transform: scale(1.05);
}

.hhf-header-notification svg {
    width: 20px;
    height: 20px;
}

.hhf-notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ef4444;
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 0.25rem 0.5rem;
    border-radius: 10px;
    min-width: 20px;
    text-align: center;
}

.hhf-header-logout {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid #ef4444;
    color: #ef4444;
    padding: 0.75rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hhf-header-logout:hover {
    background: rgba(239, 68, 68, 0.3);
    transform: scale(1.05);
}

.hhf-header-logout svg {
    width: 20px;
    height: 20px;
}

/* Main Content Area */
.hhf-main-content {
    margin-top: 80px;
    margin-bottom: 80px;
    min-height: calc(100vh - 160px);
    padding: 2rem;
    background: #0f172a;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.hhf-section-content {
    width: 100%;
    min-height: 400px;
}

/* Fixed Bottom Navigation */
.hhf-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-top: 2px solid #eab308;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
    height: 80px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

.hhf-nav-btn {
    background: transparent;
    border: none;
    color: #94a3b8;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 80px;
}

.hhf-nav-btn:hover {
    color: #eab308;
    background: rgba(234, 179, 8, 0.1);
    transform: translateY(-2px);
}

.hhf-nav-btn.active {
    color: #eab308;
    background: rgba(234, 179, 8, 0.2);
    border: 1px solid rgba(234, 179, 8, 0.3);
}

.hhf-nav-btn svg {
    width: 24px;
    height: 24px;
}

.hhf-nav-btn span {
    font-size: 0.75rem;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hhf-top-header {
        padding: 1rem;
        height: 70px;
    }
    
    .hhf-header-title {
        font-size: 1rem;
    }
    
    .hhf-header-tagline {
        font-size: 0.625rem;
    }
    
    .hhf-main-content {
        margin-top: 70px;
        margin-bottom: 70px;
        padding: 1rem;
    }
    
    .hhf-bottom-nav {
        padding: 0.75rem 1rem;
        height: 70px;
    }
    
    .hhf-nav-btn {
        min-width: 60px;
        padding: 0.5rem;
    }
    
    .hhf-nav-btn span {
        font-size: 0.625rem;
    }
    
    .hhf-nav-btn svg {
        width: 20px;
        height: 20px;
    }
}

