* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.toolbar {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.toolbar h1 {
    color: #333;
    font-size: 24px;
}

.controls {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.control-btn {
    padding: 10px 15px;
    border: 2px solid #667eea;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #667eea;
    transition: all 0.3s ease;
}

.control-btn:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.simulator-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.phone {
    position: relative;
    transition: transform 0.3s ease;
}

.phone.rotated {
    transform: rotate(90deg);
}

/* iPhone Style */
.phone.iphone .phone-frame {
    width: 375px;
    height: 812px;
    background: #000;
    border-radius: 50px;
    padding: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
}

.phone.iphone .phone-screen {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 42px;
    overflow: hidden;
    position: relative;
}

.phone.iphone .phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 30px;
    background: #000;
    border-radius: 0 0 20px 20px;
    z-index: 10;
}

.phone.iphone .phone-home-indicator {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 134px;
    height: 5px;
    background: #000;
    border-radius: 3px;
    z-index: 10;
}

/* iPhone SE Style */
.phone.iphone-se .phone-frame {
    width: 320px;
    height: 568px;
    background: #000;
    border-radius: 40px;
    padding: 6px;
}

.phone.iphone-se .phone-screen {
    border-radius: 34px;
}

.phone.iphone-se .phone-notch {
    display: none;
}

.phone.iphone-se .phone-home-indicator {
    display: none;
}

/* Android Style */
.phone.android .phone-frame {
    width: 360px;
    height: 640px;
    background: #333;
    border-radius: 25px;
    padding: 3px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.phone.android .phone-screen {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    position: relative;
}

.phone.android .phone-notch {
    display: none;
}

.phone.android .phone-home-indicator {
    display: none;
}

.phone.android::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #666;
    border-radius: 2px;
}

/* Android Large */
.phone.android-large .phone-frame {
    width: 412px;
    height: 915px;
}

.demo-content {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    background: #f5f5f5;
}

/* Demo Pages Styles */
.demo-page {
    padding: 20px;
    height: 100%;
    overflow-y: auto;
}

.settings-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: -20px -20px 20px -20px;
    padding: 16px 20px;
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
    box-shadow: 0 2px 8px rgba(13, 148, 136, 0.2);
}

.settings-back-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: white;
    font-size: 18px;
    flex-shrink: 0;
    user-select: none;
}

.settings-back-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.settings-back-btn:active {
    transform: translateY(0);
}

.settings-back-btn i {
    pointer-events: none;
}

.header {
    flex: 1;
    background: transparent;
    color: white;
    padding: 0;
    margin: 0;
}

.header h2 {
    font-size: 24px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.header h2 i {
    font-size: 24px;
}

.header p {
    opacity: 0.9;
    font-size: 14px;
}

.card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.card h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card h3 i {
    font-size: 18px;
    color: #0d9488;
}

.card p {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

.card p i {
    margin-right: 8px;
    color: #667eea;
    width: 16px;
    display: inline-block;
}

.profile-header {
    text-align: center;
    padding: 30px 20px;
    background: white;
    margin-bottom: 20px;
}

.avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
}

.avatar i {
    display: block;
}

.setting-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: white;
    border-radius: 12px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.setting-item:hover {
    border-color: #0d9488;
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.15);
    transform: translateY(-1px);
}

.setting-item span {
    font-weight: 500;
    color: #333;
}

.setting-item .icon {
    font-size: 14px;
    color: #cbd5e1;
}

.setting-item {
    display: flex;
    align-items: center;
}

.setting-item span:first-child {
    display: flex;
    align-items: center;
    gap: 12px;
}

.setting-item span:first-child i {
    font-size: 18px;
    color: #0d9488;
    width: 20px;
}

.chat-list {
    padding: 10px;
}

.chat-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: white;
    border-radius: 12px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: transform 0.2s;
}

.chat-item:hover {
    transform: translateX(5px);
}

.chat-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    margin-right: 15px;
}

.chat-avatar i {
    display: block;
}

.chat-info {
    flex: 1;
}

.chat-name {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.chat-message {
    color: #999;
    font-size: 14px;
}

.chat-time {
    color: #999;
    font-size: 12px;
}

.btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
    transition: transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.btn i {
    font-size: 16px;
}

/* Scrollbar */
.demo-content::-webkit-scrollbar {
    width: 4px;
}

.demo-content::-webkit-scrollbar-track {
    background: transparent;
}

.demo-content::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 2px;
}

/* ============================================
   Login Page Styles
   ============================================ */

.login-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #a7f3d0 0%, #99f6e4 100%);
    padding: 40px 20px 20px 20px;
    display: flex;
    flex-direction: column;
}

.login-header {
    text-align: center;
    margin-bottom: 40px;
    color: #0f766e;
}

.login-logo {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.2);
}

.login-logo i {
    font-size: 40px;
    color: #0d9488;
}

.login-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #0f766e;
}

.login-tagline {
    font-size: 13px;
    color: #0d9488;
    font-weight: 500;
    margin: 8px 0 16px 0;
    line-height: 1.5;
    opacity: 0.95;
}

.login-subtitle {
    font-size: 15px;
    color: #0d9488;
    opacity: 0.9;
}

.login-form-container {
    background: white;
    border-radius: 24px;
    padding: 32px 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    flex: 1;
}


.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.form-label i {
    color: #0d9488;
    font-size: 16px;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 15px;
    color: #1e293b;
    background: #fafbfc;
    transition: all 0.2s;
    outline: none;
    box-sizing: border-box;
}

.form-input:focus {
    border-color: #0d9488;
    background: white;
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

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

.password-input-wrapper {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: color 0.2s;
}

.password-toggle:hover {
    color: #0d9488;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    font-size: 14px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    cursor: pointer;
}

.remember-me input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #0d9488;
}

.forgot-password {
    color: #0d9488;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.forgot-password:hover {
    color: #059669;
    text-decoration: underline;
}


.auth-form {
    margin-bottom: 0;
}

.auth-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
}

.auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 148, 136, 0.4);
}

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

.auth-btn i {
    font-size: 18px;
}

/* Register Info Section */
.register-info-container {
    background: white;
    border-radius: 20px;
    padding: 24px;
    margin-top: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.register-info-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #a7f3d0 0%, #99f6e4 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.register-info-icon i {
    font-size: 28px;
    color: #0f766e;
}

.register-info-content {
    flex: 1;
}

.register-info-title {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.register-info-text {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 16px;
}

.register-info-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #f0fdfa;
    border-radius: 12px;
    color: #0d9488;
    font-size: 14px;
    font-weight: 500;
}

.register-info-contact i {
    font-size: 16px;
}

/* Recovery Links */
.recovery-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.link-separator {
    color: #cbd5e1;
    font-size: 12px;
}

.recover-account {
    color: #0d9488;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.2s;
}

.recover-account:hover {
    color: #059669;
    text-decoration: underline;
}

/* Back Button */
.back-button {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.2s;
    color: #0d9488;
    font-size: 18px;
}

.back-button:hover {
    transform: translateX(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.login-header {
    position: relative;
}

/* OTP Input Wrapper */
.otp-input-wrapper {
    display: flex;
    gap: 12px;
}

.otp-input-wrapper .form-input {
    flex: 1;
}

.otp-send-btn {
    padding: 14px 20px;
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(13, 148, 136, 0.3);
}

.otp-send-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.4);
}

.otp-send-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Recovery Help */
.recovery-help {
    margin-top: 24px;
    padding: 16px;
    background: #f0fdfa;
    border: 1px solid #d1fae5;
    border-radius: 12px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.recovery-help i {
    color: #0d9488;
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.recovery-help p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.recovery-help strong {
    color: #0d9488;
    font-weight: 600;
}

/* ============================================
   Workspace Selection Page Styles
   ============================================ */

.workspace-page {
    min-height: 100vh;
    background: #fafbfc;
    padding: 40px 20px 30px 20px;
    display: flex;
    flex-direction: column;
}

.workspace-header {
    text-align: center;
    margin-bottom: 40px;
}

.workspace-title {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.workspace-subtitle {
    font-size: 15px;
    color: #64748b;
    font-weight: 400;
    line-height: 1.5;
}

.workspace-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.workspace-card {
    background: white;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 2px solid #f1f5f9;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.workspace-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: transparent;
    transition: background 0.3s ease;
}

.workspace-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.workspace-card.mind-card:hover::before,
.workspace-card.mind-card.selected::before {
    background: linear-gradient(90deg, #0d9488 0%, #14b8a6 100%);
}

.workspace-card.profile-card:hover::before,
.workspace-card.profile-card.selected::before {
    background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 100%);
}

.workspace-card.selected {
    border-color: #e2e8f0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.workspace-card-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.workspace-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.workspace-card-icon.mind-icon {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    color: #0d9488;
}

.workspace-card-icon.profile-icon {
    background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
    color: #6366f1;
}

.workspace-card-titles {
    flex: 1;
}

.workspace-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
    letter-spacing: -0.3px;
}

.workspace-card-subtitle {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.workspace-card-description {
    font-size: 15px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 20px;
}

.workspace-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.workspace-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #f8fafc;
    border-radius: 10px;
    font-size: 13px;
    color: #475569;
    font-weight: 500;
}

.mind-card .workspace-indicator {
    background: #f0fdfa;
    color: #0d9488;
}

.mind-card .workspace-indicator i {
    color: #0d9488;
    font-size: 14px;
}

.profile-card .workspace-indicator {
    background: #f5f7ff;
    color: #6366f1;
}

.profile-card .workspace-indicator i {
    color: #6366f1;
    font-size: 14px;
}

.workspace-footer {
    margin-top: 32px;
    padding-top: 24px;
    text-align: center;
    border-top: 1px solid #e5e7eb;
}

.workspace-footer-text {
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.6;
}

/* ============================================
   Profile Page Styles (New - Professional Identity)
   ============================================ */

.profile-page-new {
    min-height: 100vh;
    background: #f7f9fa;
    padding: 0;
}

/* Global Search Bar */
.profile-global-search {
    background: white;
    padding: 16px 20px;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 10;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 12px;
}

.profile-menu-btn {
    width: 40px;
    height: 40px;
    background: #f5f7fa;
    border: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: #1e293b;
    font-size: 18px;
    flex-shrink: 0;
    user-select: none;
}

.profile-menu-btn:hover {
    background: #e5e7eb;
    transform: translateY(-1px);
}

.profile-menu-btn:active {
    transform: translateY(0);
}

.profile-menu-btn i {
    pointer-events: none;
}

.profile-search-bar {
    flex: 1;
    background: #f8fafc;
    border-radius: 12px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #e5e7eb;
    transition: all 0.2s;
}

.profile-search-bar:hover {
    background: #f1f5f9;
    border-color: #d1fae5;
}

.profile-search-bar i:first-child {
    color: #94a3b8;
    font-size: 14px;
    flex-shrink: 0;
}

.profile-search-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 14px;
    color: #1e293b;
    font-weight: 400;
    pointer-events: none;
}

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

.profile-search-qr-btn {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    box-shadow: 0 2px 6px rgba(13, 148, 136, 0.25);
    flex-shrink: 0;
}

.profile-search-qr-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(13, 148, 136, 0.35);
}

/* My Profile Section */
.profile-my-section {
    padding: 24px 20px;
}

.profile-my-header {
    background: white;
    padding: 32px 24px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #f1f5f9;
    text-align: center;
    margin-bottom: 20px;
}

.profile-my-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #f1f5f9;
}

.profile-my-initials {
    font-size: 36px;
    font-weight: 700;
    color: white;
    letter-spacing: 2px;
}

.profile-my-name {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.profile-my-mid {
    font-family: 'Courier New', monospace;
    font-size: 14px;
    font-weight: 600;
    color: #6366f1;
    background: #f1f5f9;
    padding: 6px 14px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.profile-my-status {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.profile-my-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #f0fdfa;
    color: #0d9488;
    border: 1px solid #d1fae5;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.profile-my-status-badge i {
    font-size: 14px;
}

.profile-my-trust {
    width: 100%;
    max-width: 280px;
    text-align: left;
    position: relative;
    padding-right: 24px;
    transition: opacity 0.2s;
}

.profile-my-trust:hover {
    opacity: 0.8;
}

.profile-my-trust-label {
    font-size: 12px;
    color: #64748b;
    margin-right: 8px;
}

.profile-my-trust-value {
    font-size: 13px;
    color: #6366f1;
    font-weight: 600;
}

.profile-my-trust-bar {
    height: 6px;
    background: #f1f5f9;
    border-radius: 3px;
    margin-top: 8px;
    overflow: hidden;
}

.profile-my-trust-fill {
    height: 100%;
    background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.profile-my-trust-info {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 14px;
    cursor: help;
}

.profile-my-trust-info:hover {
    color: #0d9488;
}

.profile-my-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    margin-bottom: 16px;
}

.profile-my-card-title {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.3px;
}

.profile-my-card-title i {
    font-size: 16px;
    color: #6366f1;
}

.profile-my-info-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.profile-my-info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid #f8fafc;
}

.profile-my-info-item:last-child {
    border-bottom: none;
}

.profile-my-info-icon {
    width: 36px;
    height: 36px;
    background: #f1f5f9;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.profile-my-info-icon i {
    font-size: 16px;
    color: #6366f1;
}

.profile-my-info-content {
    flex: 1;
}

.profile-my-info-label {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 4px;
    font-weight: 500;
}

.profile-my-info-value {
    font-size: 15px;
    color: #1e293b;
    font-weight: 600;
}

.profile-my-summary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.profile-my-summary-item {
    text-align: center;
    padding: 16px;
    background: #f8fafc;
    border-radius: 12px;
}

.profile-my-summary-value {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

.profile-my-summary-label {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
    line-height: 1.4;
}

.profile-my-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.profile-my-action-btn {
    width: 100%;
    padding: 14px 20px;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.2s;
}

.profile-my-action-btn.primary {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
}

.profile-my-action-btn.primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

.profile-my-action-btn.secondary {
    background: white;
    color: #6366f1;
    border: 2px solid #e0e7ff;
}

.profile-my-action-btn.secondary:hover {
    background: #f8fafc;
    border-color: #c7d2fe;
    transform: translateY(-1px);
}

.profile-my-action-btn i {
    font-size: 16px;
}

/* Communication Section */
.profile-communication-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.profile-communication-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    cursor: pointer;
    transition: all 0.2s;
}

.profile-communication-item:hover {
    background: white;
    border-color: #cbd5e1;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.profile-communication-item:active {
    transform: translateY(0);
}

.profile-communication-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    flex-shrink: 0;
}

.profile-communication-icon.messaging-icon {
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
}

.profile-communication-icon.work-message-icon {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}

.profile-communication-content {
    flex: 1;
    min-width: 0;
}

.profile-communication-title {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 4px 0;
}

.profile-communication-desc {
    font-size: 13px;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}

.profile-communication-arrow {
    color: #94a3b8;
    font-size: 14px;
    flex-shrink: 0;
}

.profile-communication-note {
    margin-top: 16px;
    padding: 12px;
    background: #fef3c7;
    border: 1px solid #fbbf24;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 12px;
    color: #92400e;
    line-height: 1.5;
}

.profile-communication-note i {
    color: #f59e0b;
    margin-top: 2px;
    flex-shrink: 0;
}

/* ============================================
   Rewards Page Styles (New - Clean Banking UI)
   ============================================ */

.rewards-page-new {
    min-height: 100vh;
    background: #f7f9fb;
    padding: 0;
}

/* Top Bar */
.rewards-top-bar {
    background: white;
    padding: 16px 20px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 12px;
    position: sticky;
    top: 0;
    z-index: 10;
}

.rewards-back-btn {
    width: 40px;
    height: 40px;
    background: #f5f7fa;
    border: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: #1e293b;
    font-size: 18px;
    flex-shrink: 0;
    user-select: none;
}

.rewards-back-btn:hover {
    background: #e5e7eb;
    transform: translateY(-1px);
}

.rewards-back-btn:active {
    transform: translateY(0);
}

.rewards-back-btn i {
    pointer-events: none;
}

.rewards-search-wrapper {
    flex: 1;
    background: #f8fafc;
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #e5e7eb;
}

.rewards-search-wrapper i {
    color: #94a3b8;
    font-size: 16px;
}

.rewards-search-field {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 15px;
    color: #1e293b;
}

.rewards-search-field::placeholder {
    color: #94a3b8;
}

.rewards-notif-icon {
    width: 44px;
    height: 44px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #1e293b;
    font-size: 18px;
    transition: all 0.2s;
}

.rewards-notif-icon:hover {
    background: #f1f5f9;
}

/* Balance Card */
.rewards-balance-card {
    background: white;
    margin: 20px;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    text-align: center;
}

.rewards-balance-title {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 8px;
    font-weight: 500;
}

.rewards-balance-amount {
    font-size: 36px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 6px;
    letter-spacing: -1px;
}

.rewards-balance-label {
    font-size: 13px;
    color: #94a3b8;
}

/* Quick Actions */
.rewards-quick-actions-new {
    display: flex;
    gap: 12px;
    padding: 0 20px;
    margin-bottom: 24px;
}

.rewards-action-btn {
    flex: 1;
    background: white;
    border-radius: 12px;
    padding: 16px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    cursor: pointer;
    transition: all 0.2s;
}

.rewards-action-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.rewards-action-icon {
    width: 40px;
    height: 40px;
    background: #f0fdfa;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d9488;
    font-size: 18px;
}

.rewards-action-text {
    font-size: 12px;
    color: #1e293b;
    font-weight: 500;
}

/* Rewards Section */
.rewards-section {
    padding: 0 20px;
    margin-bottom: 24px;
}

.rewards-section-title {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.rewards-list-new {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rewards-item-card {
    background: white;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 16px;
}

.rewards-item-icon {
    width: 48px;
    height: 48px;
    background: #f0fdfa;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d9488;
    font-size: 20px;
    flex-shrink: 0;
}

.rewards-item-info {
    flex: 1;
    min-width: 0;
}

.rewards-item-name {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
    letter-spacing: -0.2px;
}

.rewards-item-subtitle {
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.4;
}

.rewards-item-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    flex-shrink: 0;
}

.rewards-item-value {
    font-size: 16px;
    font-weight: 700;
    color: #0d9488;
    white-space: nowrap;
}

.rewards-item-btn {
    padding: 6px 16px;
    background: #0d9488;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.rewards-item-btn:hover {
    background: #14b8a6;
    transform: translateY(-1px);
}

/* Bottom Navigation */
.rewards-bottom-nav-new {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #e5e7eb;
    display: flex;
    padding: 8px 0;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.05);
    z-index: 100;
}

.rewards-nav-item-new {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px;
    cursor: pointer;
    color: #94a3b8;
    transition: all 0.2s;
}

.rewards-nav-item-new i {
    font-size: 20px;
}

.rewards-nav-item-new span {
    font-size: 11px;
    font-weight: 500;
}

.rewards-nav-item-new.active {
    color: #0d9488;
}

.rewards-nav-item-new:hover {
    color: #1e293b;
}

.rewards-nav-item-new.active:hover {
    color: #0d9488;
}

/* ============================================
   Submit Work Page Styles (Clean Banking UI)
   ============================================ */

.submit-work-page {
    min-height: 100vh;
    background: #f7f9fb;
    padding: 0;
}

/* Top Bar */
.submit-top-bar {
    background: white;
    padding: 16px 20px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 10;
}

.submit-back-btn {
    width: 40px;
    height: 40px;
    background: #f8fafc;
    border: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #1e293b;
    font-size: 18px;
    transition: all 0.2s;
}

.submit-back-btn:hover {
    background: #f1f5f9;
    transform: translateX(-2px);
}

.submit-title {
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
    letter-spacing: -0.3px;
    margin: 0;
}

/* Instruction Card */
.submit-instruction-card {
    background: white;
    margin: 20px;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
}

.submit-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.submit-card-description {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Submission Form Card */
.submit-form-card {
    background: white;
    margin: 0 20px 20px 20px;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
}

.submit-form-group {
    margin-bottom: 24px;
}

.submit-form-group:last-child {
    margin-bottom: 0;
}

.submit-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.submit-input,
.submit-select,
.submit-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    font-size: 15px;
    color: #1e293b;
    background: white;
    font-family: inherit;
    transition: all 0.2s;
    box-sizing: border-box;
}

.submit-input:focus,
.submit-select:focus,
.submit-textarea:focus {
    outline: none;
    border-color: #0d9488;
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.submit-input::placeholder,
.submit-textarea::placeholder {
    color: #94a3b8;
}

.submit-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.submit-textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.5;
}

/* File Upload Area */
.submit-upload-area {
    border: 2px dashed #d1fae5;
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    background: #f0fdfa;
    cursor: pointer;
    transition: all 0.2s;
}

.submit-upload-area:hover {
    border-color: #0d9488;
    background: #d1fae5;
}

.submit-upload-icon {
    font-size: 48px;
    color: #0d9488;
    margin-bottom: 12px;
    display: block;
}

.submit-upload-text {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
}

.submit-upload-subtext {
    font-size: 13px;
    color: #64748b;
}

/* Primary Action Button */
.submit-action-section {
    padding: 0 20px;
    margin-bottom: 16px;
}

.submit-primary-btn {
    width: 100%;
    background: #0d9488;
    color: white;
    border: none;
    border-radius: 14px;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(13, 148, 136, 0.3);
}

.submit-primary-btn:hover {
    background: #0f766e;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.4);
}

.submit-primary-btn:active {
    transform: translateY(0);
}

.submit-primary-btn i {
    font-size: 18px;
}

/* Status Notice */
.submit-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 20px;
    margin-bottom: 20px;
}

.submit-notice-icon {
    font-size: 14px;
    color: #94a3b8;
    flex-shrink: 0;
}

.submit-notice-text {
    font-size: 12px;
    color: #94a3b8;
    text-align: center;
    line-height: 1.4;
}

/* ============================================
   Profile Page Styles (Old - kept for reference)
   ============================================ */

.profile-page {
    min-height: 100vh;
    background: #fafbfc;
    padding: 20px 0;
}

.profile-header-section {
    text-align: center;
    padding: 30px 20px;
    background: white;
    margin-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.profile-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #f1f5f9;
}

.profile-initials {
    font-size: 36px;
    font-weight: 700;
    color: white;
    letter-spacing: 2px;
}

.profile-name {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.profile-mid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
}

.mid-label {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mid-value {
    font-size: 13px;
    color: #1e293b;
    font-weight: 600;
    font-family: 'Courier New', monospace;
    background: #f1f5f9;
    padding: 4px 10px;
    border-radius: 6px;
}

.profile-status-badges {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.status-badge.verified {
    background: #f0fdfa;
    color: #0d9488;
    border: 1px solid #d1fae5;
}

.status-badge i {
    font-size: 14px;
}

.trust-indicator {
    width: 100%;
    max-width: 280px;
    text-align: left;
}

.trust-label {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
    margin-right: 8px;
}

.trust-value {
    font-size: 13px;
    color: #6366f1;
    font-weight: 600;
}

.trust-bar {
    height: 6px;
    background: #f1f5f9;
    border-radius: 3px;
    margin-top: 8px;
    overflow: hidden;
}

.trust-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.profile-card {
    background: white;
    margin: 0 20px 16px 20px;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
}

.profile-card-title {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile-card-title i {
    font-size: 16px;
    color: #6366f1;
}

.info-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f8fafc;
}

.info-row:last-child {
    border-bottom: none;
}

.info-icon {
    width: 32px;
    height: 32px;
    background: #f1f5f9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 14px;
    color: #6366f1;
}

.info-label {
    flex: 1;
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.info-value {
    font-size: 14px;
    color: #1e293b;
    font-weight: 600;
    text-align: right;
}

.info-value i {
    color: #94a3b8;
    font-size: 12px;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.metric-item {
    text-align: center;
    padding: 16px;
    background: #f8fafc;
    border-radius: 12px;
}

.metric-value {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

.metric-label {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
    line-height: 1.4;
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: #f8fafc;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.2s;
}

.activity-item:hover {
    background: #f1f5f9;
}

.activity-icon {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.activity-icon i {
    font-size: 18px;
    color: #6366f1;
}

.activity-content {
    flex: 1;
}

.activity-title {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
}

.activity-subtitle {
    font-size: 12px;
    color: #94a3b8;
}

.activity-count {
    font-size: 16px;
    font-weight: 600;
    color: #6366f1;
}

.profile-actions {
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.profile-action-btn {
    width: 100%;
    padding: 14px 20px;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.2s;
}

.profile-action-btn.primary {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
}

.profile-action-btn.primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

.profile-action-btn.secondary {
    background: white;
    color: #6366f1;
    border: 2px solid #e0e7ff;
}

.profile-action-btn.secondary:hover {
    background: #f8fafc;
    border-color: #c7d2fe;
}

.profile-action-btn.switch {
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(13, 148, 136, 0.3);
}

.profile-action-btn.switch:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.4);
}

.profile-action-btn i {
    font-size: 16px;
}

/* Explore MindID Card */
.profile-explore-card {
    background: white;
    margin: 0 20px 16px 20px;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: all 0.2s;
}

.profile-explore-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #e0e7ff;
}

.profile-explore-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.profile-explore-icon i {
    font-size: 22px;
    color: white;
}

.profile-explore-content {
    flex: 1;
}

.profile-explore-title {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
    letter-spacing: -0.3px;
}

.profile-explore-subtitle {
    font-size: 13px;
    color: #64748b;
    line-height: 1.4;
}

.profile-explore-arrow {
    color: #cbd5e1;
    font-size: 18px;
    flex-shrink: 0;
}

/* ============================================
   MindID Search Entry Page Styles
   ============================================ */

.search-entry-page {
    min-height: 100vh;
    background: #f7f9fa;
    padding: 24px 20px;
}

/* Search Entry Container */
.search-entry-container {
    margin-bottom: 32px;
}

.search-entry-bar {
    background: white;
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #e5e7eb;
    margin-bottom: 12px;
}

.search-entry-icon {
    color: #94a3b8;
    font-size: 18px;
    flex-shrink: 0;
}

.search-entry-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 16px;
    color: #1e293b;
    font-weight: 400;
}

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

.search-entry-qr-btn {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(13, 148, 136, 0.25);
    flex-shrink: 0;
}

.search-entry-qr-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.35);
}

.search-entry-helper {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
    padding: 0 4px;
    font-weight: 400;
}

/* Primary Action Cards */
.search-entry-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.search-entry-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #e5e7eb;
    cursor: pointer;
    transition: all 0.2s;
}

.search-entry-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #d1fae5;
}

.search-entry-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.search-entry-card-icon i {
    font-size: 28px;
    color: #0d9488;
}

.search-entry-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.search-entry-card-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
}

/* Recent Searches */
.search-entry-recent {
    margin-top: 8px;
}

.search-entry-recent-title {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 16px;
    letter-spacing: -0.2px;
}

.search-entry-pills {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.search-entry-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: white;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 14px;
    color: #1e293b;
    font-weight: 500;
}

.search-entry-pill:hover {
    background: #f8fafc;
    border-color: #d1fae5;
    transform: translateX(4px);
}

.search-entry-pill i {
    color: #94a3b8;
    font-size: 14px;
    width: 16px;
}

.search-entry-pill span {
    font-family: 'Courier New', monospace;
    font-size: 13px;
    color: #0d9488;
    font-weight: 600;
}

/* ============================================
   MindID Explorer Page Styles
   ============================================ */

.explorer-page {
    min-height: 100vh;
    background: #f7f9fa;
    padding: 24px 20px;
}

.explorer-search-container {
    margin-bottom: 24px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.explorer-menu-btn {
    width: 40px;
    height: 40px;
    background: #f5f7fa;
    border: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: #1e293b;
    font-size: 18px;
    flex-shrink: 0;
    user-select: none;
    margin-top: 0;
}

.explorer-menu-btn:hover {
    background: #e5e7eb;
    transform: translateY(-1px);
}

.explorer-menu-btn:active {
    transform: translateY(0);
}

.explorer-menu-btn i {
    pointer-events: none;
}

.explorer-search-bar {
    flex: 1;
    background: white;
    border-radius: 12px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    border: 1px solid #e5e7eb;
    margin-bottom: 8px;
}

.explorer-search-bar i:first-child {
    color: #94a3b8;
    font-size: 14px;
    flex-shrink: 0;
}

.explorer-search-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 14px;
    color: #1e293b;
    font-weight: 400;
}

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

.explorer-qr-btn {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    box-shadow: 0 2px 6px rgba(13, 148, 136, 0.25);
    flex-shrink: 0;
}

.explorer-qr-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(13, 148, 136, 0.35);
}

.explorer-helper-text {
    font-size: 12px;
    color: #64748b;
    line-height: 1.4;
    padding: 0 4px;
    font-weight: 400;
    margin-top: 0;
}

/* Explorer Actions */
.explorer-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.explorer-action-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #e5e7eb;
    cursor: pointer;
    transition: all 0.2s;
}

.explorer-action-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #d1fae5;
}

.explorer-action-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.explorer-action-icon i {
    font-size: 28px;
    color: #0d9488;
}

.explorer-action-title {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.explorer-action-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
}

/* Featured Contributors */
.explorer-featured {
    margin-top: 8px;
}

.explorer-featured-title {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

.explorer-featured-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.explorer-featured-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #e5e7eb;
    transition: all 0.2s;
}

.explorer-featured-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.explorer-featured-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.explorer-featured-id {
    font-family: 'Courier New', monospace;
    font-size: 14px;
    font-weight: 600;
    color: #0d9488;
    letter-spacing: 0.5px;
}

.explorer-featured-trust {
    display: flex;
    align-items: center;
}

.trust-badge {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.trust-badge.advanced {
    background: #f0fdfa;
    color: #0d9488;
    border: 1px solid #d1fae5;
}

.trust-badge.intermediate {
    background: #fef3c7;
    color: #d97706;
    border: 1px solid #fde68a;
}

.explorer-featured-stats {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.explorer-featured-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #475569;
    font-weight: 500;
}

.explorer-featured-stat i {
    color: #0d9488;
    font-size: 14px;
    width: 18px;
}

.explorer-featured-card {
    cursor: pointer;
}

/* ============================================
   MindID Preview Page Styles
   ============================================ */

.preview-page {
    min-height: 100vh;
    background: #f7f9fa;
    padding: 0;
}

.preview-header {
    background: white;
    padding: 16px 20px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 16px;
    position: sticky;
    top: 0;
    z-index: 10;
}

.preview-back-btn {
    width: 40px;
    height: 40px;
    background: #f8fafc;
    border: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #1e293b;
    font-size: 18px;
    transition: all 0.2s;
}

.preview-back-btn:hover {
    background: #f1f5f9;
    transform: translateX(-2px);
}

.preview-title {
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
    letter-spacing: -0.3px;
}

.preview-card {
    background: white;
    margin: 20px;
    padding: 32px 24px;
    border-radius: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid #f1f5f9;
    text-align: center;
}

.preview-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #f1f5f9;
}

.preview-initials {
    font-size: 36px;
    font-weight: 700;
    color: white;
    letter-spacing: 2px;
}

.preview-name {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.preview-mid {
    font-family: 'Courier New', monospace;
    font-size: 14px;
    font-weight: 600;
    color: #0d9488;
    background: #f0fdfa;
    padding: 6px 14px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.preview-status {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.preview-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #f0fdfa;
    color: #0d9488;
    border: 1px solid #d1fae5;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.preview-status-badge i {
    font-size: 14px;
}

.preview-trust {
    width: 100%;
    max-width: 280px;
    text-align: left;
}

.preview-trust-label {
    font-size: 12px;
    color: #64748b;
    margin-right: 8px;
}

.preview-trust-value {
    font-size: 13px;
    color: #0d9488;
    font-weight: 600;
}

.preview-quick-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0 20px 24px 20px;
}

.preview-quick-item {
    background: white;
    border-radius: 16px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
}

.preview-quick-item i {
    font-size: 24px;
    color: #0d9488;
    width: 32px;
}

.preview-quick-label {
    font-size: 12px;
    color: #64748b;
    margin-bottom: 4px;
}

.preview-quick-value {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
}

.preview-actions {
    padding: 0 20px;
}

.preview-view-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
}

.preview-view-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 148, 136, 0.4);
}

.preview-view-btn i {
    font-size: 18px;
}

/* ============================================
   Full Contribution Profile Page Styles
   ============================================ */

.contribution-profile-page {
    min-height: 100vh;
    background: #f7f9fa;
    padding: 0;
}

.profile-view-header {
    background: white;
    padding: 16px 20px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 16px;
    position: sticky;
    top: 0;
    z-index: 10;
}

.profile-view-back-btn {
    width: 40px;
    height: 40px;
    background: #f8fafc;
    border: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #1e293b;
    font-size: 18px;
    transition: all 0.2s;
}

.profile-view-back-btn:hover {
    background: #f1f5f9;
    transform: translateX(-2px);
}

.profile-view-title {
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
    letter-spacing: -0.3px;
}

.profile-view-header-section {
    background: white;
    padding: 32px 20px;
    text-align: center;
    margin-bottom: 16px;
    border-bottom: 1px solid #e5e7eb;
}

.profile-view-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #f1f5f9;
}

.profile-view-initials {
    font-size: 36px;
    font-weight: 700;
    color: white;
    letter-spacing: 2px;
}

.profile-view-name {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.profile-view-mid {
    font-family: 'Courier New', monospace;
    font-size: 14px;
    font-weight: 600;
    color: #0d9488;
    background: #f0fdfa;
    padding: 6px 14px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.profile-view-status-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.profile-view-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #f0fdfa;
    color: #0d9488;
    border: 1px solid #d1fae5;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.profile-view-status-badge i {
    font-size: 14px;
}

.profile-view-trust-level {
    width: 100%;
    max-width: 280px;
    text-align: left;
}

.profile-view-trust-label {
    font-size: 12px;
    color: #64748b;
    margin-right: 8px;
}

.profile-view-trust-value {
    font-size: 13px;
    color: #0d9488;
    font-weight: 600;
}

.profile-view-trust-bar {
    height: 6px;
    background: #f1f5f9;
    border-radius: 3px;
    margin-top: 8px;
    overflow: hidden;
}

.profile-view-trust-fill {
    height: 100%;
    background: linear-gradient(90deg, #0d9488 0%, #14b8a6 100%);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.profile-view-section {
    background: white;
    margin: 0 20px 16px 20px;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
}

.profile-view-section-title {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.3px;
}

.profile-view-section-title i {
    font-size: 16px;
    color: #0d9488;
}

.profile-view-info-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.profile-view-info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid #f8fafc;
}

.profile-view-info-item:last-child {
    border-bottom: none;
}

.profile-view-info-icon {
    width: 36px;
    height: 36px;
    background: #f1f5f9;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.profile-view-info-icon i {
    font-size: 16px;
    color: #0d9488;
}

.profile-view-info-content {
    flex: 1;
}

.profile-view-info-label {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 4px;
    font-weight: 500;
}

.profile-view-info-value {
    font-size: 15px;
    color: #1e293b;
    font-weight: 600;
}

.profile-view-summary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.profile-view-summary-item {
    padding: 16px;
    background: #f8fafc;
    border-radius: 12px;
    text-align: center;
}

.profile-view-summary-value {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

.profile-view-summary-label {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
    line-height: 1.4;
}

.profile-view-contributions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.profile-view-contribution-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: #f8fafc;
    border-radius: 12px;
}

.profile-view-contribution-icon {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.profile-view-contribution-icon i {
    font-size: 18px;
    color: #0d9488;
}

.profile-view-contribution-content {
    flex: 1;
}

.profile-view-contribution-title {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
}

.profile-view-contribution-date {
    font-size: 13px;
    color: #94a3b8;
}

.profile-view-contribution-status {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

.profile-view-contribution-status.verified {
    background: #f0fdfa;
    color: #0d9488;
    border: 1px solid #d1fae5;
}

.profile-view-actions {
    padding: 0 20px;
    margin-top: 8px;
}

.profile-view-action-btn {
    width: 100%;
    padding: 14px 20px;
    background: white;
    color: #0d9488;
    border: 2px solid #d1fae5;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.2s;
}

.profile-view-action-btn:hover {
    background: #f0fdfa;
    border-color: #a7f3d0;
    transform: translateY(-1px);
}

.profile-view-action-btn i {
    font-size: 16px;
}

/* ============================================
   MindCredit Fintech Banking UI Styles
   MoMo-style Layout with Light Green Theme
   ============================================ */

.mindcredit-app {
    background: #f5f7fa;
    min-height: 100vh;
    padding: 0 0 80px 0;
}

/* Header with Search */
.mc-header-top {
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    border-bottom: 1px solid #f0f0f0;
}

.mc-menu-btn {
    width: 40px;
    height: 40px;
    background: #f5f7fa;
    border: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: #1e293b;
    font-size: 18px;
    flex-shrink: 0;
    user-select: none;
}

.mc-menu-btn:hover {
    background: #e5e7eb;
    transform: translateY(-1px);
}

.mc-menu-btn:active {
    transform: translateY(0);
}

.mc-menu-btn i {
    pointer-events: none;
}

.mc-search-bar {
    flex: 1;
    background: #f5f7fa;
    border-radius: 20px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mc-search-icon {
    font-size: 16px;
    color: #94a3b8;
}

.mc-search-icon i {
    display: block;
}

.mc-search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 14px;
    color: #1e293b;
    background: transparent;
}

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

.mc-header-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mc-icon-btn {
    position: relative;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.mc-bell-icon, .mc-message-icon {
    font-size: 18px;
    color: #475569;
}

.mc-bell-icon i, .mc-message-icon i {
    display: block;
}

.mc-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    background: #ef4444;
    color: white;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 5px;
    border-radius: 10px;
    min-width: 16px;
    text-align: center;
}

/* Quick Action Buttons */
.mc-quick-actions {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: white;
}

.mc-quick-btn {
    cursor: pointer;
    flex: 1;
    background: linear-gradient(135deg, #a7f3d0 0%, #99f6e4 100%);
    border-radius: 16px;
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: transform 0.2s;
    box-shadow: 0 2px 8px rgba(167, 243, 208, 0.3);
}

.mc-quick-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(167, 243, 208, 0.4);
}

.mc-quick-icon {
    font-size: 26px;
    color: #0f766e;
    line-height: 1;
}

.mc-quick-icon i {
    display: block;
}

.mc-quick-label {
    font-size: 12px;
    font-weight: 600;
    color: #0f766e;
    text-align: center;
    line-height: 1.3;
}

/* Wallet Section */
.mc-wallet-section {
    background: white;
    margin: 0 16px 16px 16px;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

.mc-wallet-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f8fafc;
    cursor: pointer;
    transition: background 0.2s;
}

.mc-wallet-item:last-child {
    border-bottom: none;
}

.mc-wallet-item:hover {
    background: #fafbfc;
    margin: 0 -16px;
    padding-left: 16px;
    padding-right: 16px;
    border-radius: 8px;
}

.mc-wallet-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.mc-eye-icon {
    font-size: 18px;
    color: #94a3b8;
}

.mc-eye-icon i {
    display: block;
}

.mc-wallet-icon-small {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #a7f3d0 0%, #99f6e4 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #0f766e;
}

.mc-wallet-icon-small i {
    display: block;
    line-height: 1;
}

.mc-wallet-info {
    flex: 1;
}

.mc-wallet-name {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
}

.mc-wallet-balance {
    font-size: 18px;
    font-weight: 700;
    color: #0d9488;
}

.mc-wallet-subtitle {
    font-size: 13px;
    color: #64748b;
}

.mc-arrow {
    font-size: 14px;
    color: #cbd5e1;
}

.mc-arrow i {
    display: block;
}

/* Feature Grid */
.mc-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px 16px;
    background: white;
    margin: 0 16px 16px 16px;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

.mc-grid-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: transform 0.2s;
}

.mc-grid-item:hover {
    transform: translateY(-2px);
}

.mc-grid-icon {
    width: 56px;
    height: 56px;
    background: #f0fdfa;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    border: 1px solid #d1fae5;
    color: #0d9488;
}

.mc-grid-icon i {
    display: block;
    line-height: 1;
}

.mc-grid-label {
    font-size: 12px;
    color: #475569;
    font-weight: 500;
    text-align: center;
    line-height: 1.3;
}

/* Transactions Section */
.mc-transactions-section {
    padding: 0 16px;
    margin-bottom: 16px;
}

.mc-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.mc-section-title {
    font-size: 17px;
    font-weight: 600;
    color: #1e293b;
    letter-spacing: -0.3px;
}

.mc-section-more {
    font-size: 14px;
    color: #0d9488;
    font-weight: 500;
    cursor: pointer;
}

.mc-transaction-list {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

.mc-transaction-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-bottom: 1px solid #f8fafc;
    transition: background 0.2s;
    cursor: pointer;
}

.mc-transaction-item:last-child {
    border-bottom: none;
}

.mc-transaction-item:hover {
    background: #fafbfc;
}

.mc-transaction-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #a7f3d0 0%, #99f6e4 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #0f766e;
}

.mc-transaction-icon i {
    display: block;
    line-height: 1;
}

.mc-transaction-content {
    flex: 1;
}

.mc-transaction-title {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
}

.mc-transaction-subtitle {
    font-size: 13px;
    color: #94a3b8;
}

.mc-transaction-amount {
    font-size: 16px;
    font-weight: 700;
}

.mc-transaction-amount.positive {
    color: #0d9488;
}

.mc-transaction-amount.negative {
    color: #ef4444;
}

/* Bottom Navigation */
.mc-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #e5e7eb;
    display: flex;
    padding: 8px 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
    z-index: 100;
}

.mc-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

.mc-nav-item:hover {
    background: #fafbfc;
}

.mc-nav-item.active .mc-nav-icon {
    color: #0d9488;
}

.mc-nav-item.active .mc-nav-label {
    color: #0d9488;
    font-weight: 600;
}

.mc-nav-icon {
    font-size: 20px;
    color: #94a3b8;
    transition: color 0.2s;
}

.mc-nav-icon i {
    display: block;
}

.mc-nav-icon-center {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #a7f3d0 0%, #99f6e4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-top: -24px;
    box-shadow: 0 4px 12px rgba(167, 243, 208, 0.4);
    color: #0f766e;
}

.mc-nav-icon-center i {
    display: block;
}

.mc-nav-label {
    font-size: 11px;
    color: #94a3b8;
    font-weight: 500;
    transition: color 0.2s;
}

/* ============================================
   Recent Activity Preview (Static UI)
   ============================================ */

.recent-activity-preview {
    padding: 20px;
    background: white;
    margin: 20px;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.recent-activity-title {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.recent-activity-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.recent-activity-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
}

.recent-activity-item:last-child {
    border-bottom: none;
}

.recent-activity-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #f0fdfa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #0d9488;
    flex-shrink: 0;
}

.recent-activity-icon i {
    pointer-events: none;
}

.recent-activity-content {
    flex: 1;
    min-width: 0;
}

.recent-activity-title-text {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
    letter-spacing: -0.2px;
}

.recent-activity-subtitle {
    font-size: 13px;
    color: #94a3b8;
}

.recent-activity-value {
    font-size: 15px;
    font-weight: 700;
    color: #0d9488;
    white-space: nowrap;
    flex-shrink: 0;
}

/* ============================================
   History Page Styles (Transaction History)
   ============================================ */

.history-page {
    min-height: 100vh;
    background: #f7f9fb;
    padding-bottom: 80px;
}

/* Top Bar */
.history-top-bar {
    background: white;
    padding: 16px 20px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 10;
}

.history-back-btn {
    width: 40px;
    height: 40px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: #1e293b;
    font-size: 18px;
}

.history-back-btn:hover {
    background: #f1f5f9;
    transform: translateY(-1px);
}

.history-back-btn i {
    pointer-events: none;
}

.history-title {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    letter-spacing: -0.3px;
}

.history-filter-btn {
    width: 40px;
    height: 40px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: #1e293b;
    font-size: 16px;
}

.history-filter-btn:hover {
    background: #f1f5f9;
    transform: translateY(-1px);
}

.history-filter-btn i {
    pointer-events: none;
}

/* Search Bar */
.history-search-container {
    padding: 16px 20px;
    background: white;
    border-bottom: 1px solid #e5e7eb;
}

.history-search-bar {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.history-search-icon {
    color: #94a3b8;
    font-size: 16px;
    pointer-events: none;
}

.history-search-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 15px;
    color: #1e293b;
}

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

/* Filter Tabs */
.history-filter-tabs {
    display: flex;
    gap: 8px;
    padding: 16px 20px;
    background: white;
    border-bottom: 1px solid #e5e7eb;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.history-filter-tabs::-webkit-scrollbar {
    display: none;
}

.history-tab {
    padding: 8px 16px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    user-select: none;
}

.history-tab:hover {
    background: #f1f5f9;
}

.history-tab.active {
    background: #0d9488;
    border-color: #0d9488;
    color: white;
}

/* Transaction List */
.history-transaction-list {
    padding: 20px;
}

.history-date-section {
    margin-bottom: 24px;
}

.history-date-label {
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.history-transaction-item {
    background: white;
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    cursor: pointer;
    transition: all 0.2s;
}

.history-transaction-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.history-trans-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.history-trans-icon i {
    pointer-events: none;
}

.history-trans-content {
    flex: 1;
    min-width: 0;
}

.history-trans-title {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
    letter-spacing: -0.2px;
}

.history-trans-desc {
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.4;
}

.history-trans-amount {
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
}

.history-trans-amount.positive {
    color: #0d9488;
}

.history-trans-amount.negative {
    color: #ef4444;
}

/* ============================================
   History Demo Page Styles (Simple Timeline)
   ============================================ */

.history-demo-page {
    min-height: 100vh;
    background: #f7f9fb;
    padding-bottom: 20px;
}

/* Top Bar */
.history-demo-top-bar {
    background: white;
    padding: 16px 20px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 10;
}

.history-demo-back-btn {
    width: 40px;
    height: 40px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: #1e293b;
    font-size: 18px;
}

.history-demo-back-btn:hover {
    background: #f1f5f9;
    transform: translateY(-1px);
}

.history-demo-back-btn i {
    pointer-events: none;
}

.history-demo-title {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    letter-spacing: -0.3px;
}

/* Timeline */
.history-demo-timeline {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.history-demo-item {
    background: white;
    border-radius: 16px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    transition: all 0.2s;
}

.history-demo-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.history-demo-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.history-demo-icon i {
    pointer-events: none;
}

.history-demo-content {
    flex: 1;
    min-width: 0;
}

.history-demo-name {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
    letter-spacing: -0.2px;
}

.history-demo-time {
    font-size: 13px;
    color: #94a3b8;
}

.history-demo-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    flex-shrink: 0;
}

.history-demo-amount {
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
}

.history-demo-amount.positive {
    color: #0d9488;
}

.history-demo-amount.negative {
    color: #ef4444;
}

.history-demo-status {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.history-demo-status.verified {
    background: #dcfce7;
    color: #166534;
}

.history-demo-status.pending {
    background: #fef3c7;
    color: #92400e;
}

/* ============================================
   Points History Page Styles (Usage History)
   ============================================ */

.points-history-page {
    min-height: 100vh;
    background: #f7f9fb;
    padding-bottom: 80px;
}

/* Top Bar */
.points-history-top-bar {
    background: white;
    padding: 16px 20px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 10;
}

.points-history-back-btn {
    width: 40px;
    height: 40px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: #1e293b;
    font-size: 18px;
}

.points-history-back-btn:hover {
    background: #f1f5f9;
    transform: translateY(-1px);
}

.points-history-back-btn i {
    pointer-events: none;
}

.points-history-title {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    letter-spacing: -0.3px;
}

.points-history-filter-btn {
    width: 40px;
    height: 40px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: #1e293b;
    font-size: 16px;
}

.points-history-filter-btn:hover {
    background: #f1f5f9;
    transform: translateY(-1px);
}

.points-history-filter-btn i {
    pointer-events: none;
}

/* Summary Card */
.points-history-summary {
    padding: 20px;
    background: white;
    border-bottom: 1px solid #e5e7eb;
}

.points-history-summary-card {
    background: linear-gradient(135deg, #a7f3d0 0%, #99f6e4 100%);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(167, 243, 208, 0.2);
}

.points-history-summary-label {
    font-size: 14px;
    color: #0f766e;
    font-weight: 500;
    margin-bottom: 8px;
}

.points-history-summary-amount {
    font-size: 36px;
    font-weight: 700;
    color: #0f766e;
    margin-bottom: 4px;
    letter-spacing: -1px;
}

.points-history-summary-period {
    font-size: 13px;
    color: #14b8a6;
    font-weight: 500;
}

/* Filter Tabs */
.points-history-filter-tabs {
    display: flex;
    gap: 8px;
    padding: 16px 20px;
    background: white;
    border-bottom: 1px solid #e5e7eb;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.points-history-filter-tabs::-webkit-scrollbar {
    display: none;
}

.points-history-tab {
    padding: 8px 16px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    user-select: none;
}

.points-history-tab:hover {
    background: #f1f5f9;
}

.points-history-tab.active {
    background: #0d9488;
    border-color: #0d9488;
    color: white;
}

/* Usage History List */
.points-history-list {
    padding: 20px;
}

.points-history-date-section {
    margin-bottom: 24px;
}

.points-history-date-label {
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.points-history-item {
    background: white;
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    cursor: pointer;
    transition: all 0.2s;
}

.points-history-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.points-history-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.points-history-icon i {
    pointer-events: none;
}

.points-history-content {
    flex: 1;
    min-width: 0;
}

.points-history-title {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
    letter-spacing: -0.2px;
}

.points-history-desc {
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.4;
    margin-bottom: 4px;
}

.points-history-status {
    font-size: 12px;
    color: #0d9488;
    font-weight: 500;
}

.points-history-amount {
    font-size: 16px;
    font-weight: 700;
    color: #ef4444;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Receive MindCredit Page */
.receive-mc-page {
    min-height: 100vh;
    background: #f7f9fb;
    padding: 20px;
    padding-top: 60px;
}

.receive-mc-header {
    text-align: center;
    margin-bottom: 32px;
}

.receive-mc-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #a7f3d0 0%, #99f6e4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 12px rgba(167, 243, 208, 0.3);
}

.receive-mc-icon {
    font-size: 40px;
    color: #0d9488;
}

.receive-mc-title {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.receive-mc-subtitle {
    font-size: 15px;
    color: #64748b;
    font-weight: 400;
}

.receive-mc-card {
    background: white;
    border-radius: 20px;
    padding: 40px 24px;
    text-align: center;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #f1f5f9;
}

.receive-mc-value {
    font-size: 48px;
    font-weight: 700;
    color: #0d9488;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.receive-mc-value-text {
    font-size: 15px;
    color: #64748b;
    margin-bottom: 20px;
    font-weight: 500;
}

.receive-mc-verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f0fdfa;
    color: #0d9488;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.receive-mc-verified-badge i {
    font-size: 12px;
}

.receive-mc-info {
    background: white;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 32px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #f1f5f9;
}

.receive-mc-info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #f1f5f9;
}

.receive-mc-info-item:last-child {
    border-bottom: none;
}

.receive-mc-info-label {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.receive-mc-info-value {
    font-size: 15px;
    color: #1e293b;
    font-weight: 600;
}

.receive-mc-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.receive-mc-primary-btn {
    width: 100%;
    padding: 16px;
    background: #0d9488;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(13, 148, 136, 0.2);
    user-select: none;
}

.receive-mc-primary-btn:hover {
    background: #0f766e;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
}

.receive-mc-primary-btn:active {
    transform: translateY(0);
}

.receive-mc-secondary-btn {
    width: 100%;
    padding: 16px;
    background: white;
    color: #0d9488;
    border: 2px solid #0d9488;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    user-select: none;
}

.receive-mc-secondary-btn:hover {
    background: #f0fdfa;
    transform: translateY(-1px);
}

.receive-mc-secondary-btn:active {
    transform: translateY(0);
}

/* Reports Page */
.reports-page {
    min-height: 100vh;
    background: #f7f9fb;
    padding: 20px;
    padding-top: 60px;
}

.reports-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.reports-back-btn {
    width: 40px;
    height: 40px;
    background: #f5f7fa;
    border: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: #1e293b;
    font-size: 18px;
    flex-shrink: 0;
    user-select: none;
}

.reports-back-btn:hover {
    background: #e5e7eb;
    transform: translateY(-1px);
}

.reports-back-btn:active {
    transform: translateY(0);
}

.reports-back-btn i {
    pointer-events: none;
}

.reports-header {
    flex: 1;
    text-align: center;
    margin-bottom: 0;
}

.reports-title {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.reports-subtitle {
    font-size: 15px;
    color: #64748b;
    font-weight: 400;
}

.reports-summary-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 32px;
}

.reports-summary-card {
    background: white;
    border-radius: 16px;
    padding: 20px 16px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #f1f5f9;
}

.reports-summary-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 20px;
}

.reports-summary-value {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 6px;
    letter-spacing: -0.3px;
}

.reports-summary-label {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
    line-height: 1.4;
}

.reports-section {
    background: white;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #f1f5f9;
}

.reports-section-title {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

.reports-breakdown-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.reports-breakdown-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #f1f5f9;
}

.reports-breakdown-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.reports-breakdown-content {
    flex: 1;
}

.reports-breakdown-name {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
}

.reports-breakdown-value {
    font-size: 16px;
    font-weight: 700;
    color: #0d9488;
    white-space: nowrap;
    flex-shrink: 0;
}

.reports-time-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.reports-time-item {
    padding: 14px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #f1f5f9;
}

.reports-time-label {
    font-size: 15px;
    font-weight: 500;
    color: #1e293b;
}

.reports-footer {
    text-align: center;
    padding: 20px;
    margin-top: 20px;
}

.reports-footer-text {
    font-size: 12px;
    color: #94a3b8;
    font-weight: 400;
    line-height: 1.5;
}

/* Notifications Page */
.notifications-page {
    min-height: 100vh;
    background: #f7f9fb;
    padding: 0;
    padding-top: 60px;
}

.notifications-top-bar {
    background: white;
    padding: 16px 20px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 10;
}

.notifications-back-btn {
    width: 40px;
    height: 40px;
    background: #f5f7fa;
    border: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: #1e293b;
    font-size: 18px;
    flex-shrink: 0;
    user-select: none;
}

.notifications-back-btn:hover {
    background: #e5e7eb;
    transform: translateY(-1px);
}

.notifications-back-btn:active {
    transform: translateY(0);
}

.notifications-back-btn i {
    pointer-events: none;
}

.notifications-title {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    letter-spacing: -0.3px;
}

.notifications-list {
    padding: 20px;
}

.notifications-item {
    background: white;
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    position: relative;
}

.notifications-item.unread {
    background: #f0fdfa;
    border-color: #d1fae5;
}

.notifications-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.notifications-content {
    flex: 1;
    min-width: 0;
}

.notifications-title-text {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
    letter-spacing: -0.2px;
}

.notifications-message {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 6px;
}

.notifications-time {
    font-size: 12px;
    color: #94a3b8;
    font-weight: 400;
}

.notifications-unread-dot {
    width: 8px;
    height: 8px;
    background: #0d9488;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 4px;
}

/* Convert / Redeem Page */
.convert-redeem-page {
    min-height: 100vh;
    background: #f7f9fb;
    padding: 0;
    padding-top: 60px;
}

.convert-redeem-top-bar {
    background: white;
    padding: 16px 20px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 10;
}

.convert-redeem-back-btn {
    width: 40px;
    height: 40px;
    background: #f5f7fa;
    border: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: #1e293b;
    font-size: 18px;
    flex-shrink: 0;
    user-select: none;
}

.convert-redeem-back-btn:hover {
    background: #e5e7eb;
    transform: translateY(-1px);
}

.convert-redeem-back-btn:active {
    transform: translateY(0);
}

.convert-redeem-back-btn i {
    pointer-events: none;
}

.convert-redeem-title {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    letter-spacing: -0.3px;
}

.convert-redeem-tabs {
    display: flex;
    background: white;
    border-bottom: 1px solid #e5e7eb;
    padding: 0 20px;
}

.convert-redeem-tab {
    flex: 1;
    padding: 16px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    font-size: 16px;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s;
    user-select: none;
}

.convert-redeem-tab:hover {
    color: #1e293b;
}

.convert-redeem-tab.active {
    color: #0d9488;
    border-bottom-color: #0d9488;
}

.convert-redeem-section {
    padding: 20px;
}

.convert-redeem-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #f1f5f9;
}

.convert-redeem-balance {
    text-align: center;
}

.convert-redeem-balance-label {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 8px;
    font-weight: 500;
}

.convert-redeem-balance-value {
    font-size: 32px;
    font-weight: 700;
    color: #0d9488;
    letter-spacing: -0.5px;
}

.convert-redeem-balance-sub {
    margin-top: 12px;
    font-size: 13px;
    color: #94a3b8;
}

.convert-redeem-form-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #f1f5f9;
}

.convert-redeem-form-group {
    margin-bottom: 20px;
}

.convert-redeem-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.convert-redeem-input-wrapper {
    display: flex;
    align-items: center;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 0 16px;
    gap: 12px;
}

.convert-redeem-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    padding: 14px 0;
}

.convert-redeem-input::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

.convert-redeem-unit {
    font-size: 16px;
    font-weight: 600;
    color: #64748b;
}

.convert-redeem-select {
    width: 100%;
    padding: 14px 16px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    font-size: 16px;
    color: #1e293b;
    font-weight: 500;
    cursor: pointer;
    outline: none;
}

.convert-redeem-info {
    background: #f0fdfa;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 24px;
    border: 1px solid #d1fae5;
}

.convert-redeem-info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 14px;
}

.convert-redeem-info-item:first-child {
    padding-top: 0;
}

.convert-redeem-info-item:last-child {
    padding-bottom: 0;
}

.convert-redeem-info-item span:first-child {
    color: #64748b;
    font-weight: 500;
}

.convert-redeem-info-item span:last-child {
    color: #0d9488;
    font-weight: 600;
}

.convert-redeem-primary-btn {
    width: 100%;
    padding: 16px;
    background: #0d9488;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(13, 148, 136, 0.2);
    user-select: none;
}

.convert-redeem-primary-btn:hover {
    background: #0f766e;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
}

.convert-redeem-primary-btn:active {
    transform: translateY(0);
}

/* Review Page */
.review-page {
    min-height: 100vh;
    background: #f7f9fb;
    padding: 0;
    padding-top: 60px;
}

.review-top-bar {
    background: white;
    padding: 16px 20px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 10;
}

.review-back-btn {
    width: 40px;
    height: 40px;
    background: #f5f7fa;
    border: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: #1e293b;
    font-size: 18px;
    flex-shrink: 0;
    user-select: none;
}

.review-back-btn:hover {
    background: #e5e7eb;
    transform: translateY(-1px);
}

.review-back-btn:active {
    transform: translateY(0);
}

.review-back-btn i {
    pointer-events: none;
}

.review-title {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    letter-spacing: -0.3px;
}

.review-filter-tabs {
    display: flex;
    background: white;
    border-bottom: 1px solid #e5e7eb;
    padding: 0 20px;
    gap: 0;
}

.review-filter-tab {
    flex: 1;
    padding: 16px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    font-size: 15px;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s;
    user-select: none;
}

.review-filter-tab:hover {
    color: #1e293b;
}

.review-filter-tab.active {
    color: #0d9488;
    border-bottom-color: #0d9488;
}

.review-list {
    padding: 20px;
}

.review-item {
    background: white;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #f1f5f9;
    transition: all 0.2s;
}

.review-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.review-item-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.review-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.review-item-title {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
    flex: 1;
    letter-spacing: -0.2px;
}

.review-status-badge {
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

.review-status-badge.pending {
    background: #fef3c7;
    color: #f59e0b;
}

.review-status-badge.approved {
    background: #d1fae5;
    color: #0d9488;
}

.review-status-badge.rejected {
    background: #fee2e2;
    color: #ef4444;
}

.review-item-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.review-item-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    min-width: 0;
}

.review-item-date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #64748b;
}

.review-item-trust-context {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #64748b;
    padding: 4px 8px;
    background: #f8fafc;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
}

.review-item-trust-context i.fa-shield-alt {
    color: #0d9488;
    font-size: 11px;
}

.review-trust-info-icon {
    color: #94a3b8;
    font-size: 11px;
    cursor: help;
    margin-left: 4px;
}

.review-trust-info-icon:hover {
    color: #0d9488;
}

.review-item-date i {
    font-size: 12px;
    color: #94a3b8;
}

.review-note-btn {
    width: 32px;
    height: 32px;
    background: #f0fdfa;
    border: 1px solid #d1fae5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: #0d9488;
    font-size: 14px;
    user-select: none;
}

.review-note-btn:hover {
    background: #d1fae5;
    transform: translateY(-1px);
}

.review-note-btn:active {
    transform: translateY(0);
}

.review-note-btn i {
    pointer-events: none;
}

.review-work-message-btn {
    width: 32px;
    height: 32px;
    background: #e0f2fe;
    border: 1px solid #bae6fd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: #0369a1;
}

.review-work-message-btn:hover {
    background: #bae6fd;
    transform: translateY(-1px);
}

.review-work-message-btn:active {
    transform: translateY(0);
}

.review-work-message-btn i {
    pointer-events: none;
}

/* Analytics Page */
.analytics-page {
    min-height: 100vh;
    background: #f7f9fb;
    padding: 0;
    padding-top: 60px;
}

.analytics-top-bar {
    background: white;
    padding: 16px 20px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 10;
}

.analytics-back-btn {
    width: 40px;
    height: 40px;
    background: #f5f7fa;
    border: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: #1e293b;
    font-size: 18px;
    flex-shrink: 0;
    user-select: none;
}

.analytics-back-btn:hover {
    background: #e5e7eb;
    transform: translateY(-1px);
}

.analytics-back-btn:active {
    transform: translateY(0);
}

.analytics-back-btn i {
    pointer-events: none;
}

.analytics-title {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    letter-spacing: -0.3px;
}

.analytics-intro {
    padding: 24px 20px 16px;
    text-align: center;
}

.analytics-intro-text {
    font-size: 15px;
    color: #64748b;
    margin: 0;
}

.analytics-section {
    background: white;
    margin: 0 20px 20px;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.analytics-section-title {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 4px 0;
}

.analytics-section-subtitle {
    font-size: 13px;
    color: #94a3b8;
    margin: 0 0 24px 0;
}

.analytics-chart-container {
    margin-top: 20px;
}

.analytics-chart {
    position: relative;
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    min-height: 240px;
}

.chart-svg {
    width: 100%;
    height: 200px;
    display: block;
}

.chart-line {
    transition: stroke-width 0.2s;
}

.chart-point {
    transition: r 0.2s;
}

.chart-point:hover {
    r: 6;
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
    font-size: 11px;
    color: #94a3b8;
    padding: 0 4px;
}

.chart-values {
    position: absolute;
    top: 12px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 11px;
    color: #64748b;
}

.chart-value-high {
    font-weight: 600;
    color: #0d9488;
}

.chart-value-low {
    color: #94a3b8;
}

.analytics-breakdown {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.breakdown-item {
    padding: 16px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #f1f5f9;
}

.breakdown-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.breakdown-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.breakdown-info {
    flex: 1;
}

.breakdown-name {
    font-size: 14px;
    font-weight: 500;
    color: #1e293b;
    margin-bottom: 4px;
}

.breakdown-value {
    font-size: 16px;
    font-weight: 600;
    color: #0d9488;
}

.breakdown-bar {
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.breakdown-bar-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.3s ease;
}

.breakdown-count {
    font-size: 12px;
    color: #64748b;
}

.analytics-pattern {
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
}

.pattern-description {
    margin-bottom: 24px;
}

.pattern-description p {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

.pattern-calendar {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.pattern-week {
    display: flex;
    gap: 8px;
    justify-content: flex-start;
}

.pattern-day {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    transition: all 0.2s;
}

.pattern-day.active {
    background: #0d9488;
    border-color: #0d9488;
}

.pattern-legend {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 24px;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
}

.pattern-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #64748b;
}

.pattern-legend-box {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    background: #0d9488;
    border: 1px solid #0d9488;
}

.pattern-stats {
    display: flex;
    justify-content: space-around;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.pattern-stat {
    text-align: center;
}

.pattern-stat-value {
    font-size: 24px;
    font-weight: 700;
    color: #0d9488;
    margin-bottom: 4px;
}

.pattern-stat-label {
    font-size: 12px;
    color: #64748b;
}

/* Link Bank Page */
.link-bank-page {
    min-height: 100vh;
    background: #f7f9fb;
    padding: 0;
    padding-top: 60px;
}

.link-bank-top-bar {
    background: white;
    padding: 16px 20px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 10;
}

.link-bank-back-btn {
    width: 40px;
    height: 40px;
    background: #f5f7fa;
    border: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: #1e293b;
    font-size: 18px;
    flex-shrink: 0;
    user-select: none;
}

.link-bank-back-btn:hover {
    background: #e5e7eb;
    transform: translateY(-1px);
}

.link-bank-back-btn:active {
    transform: translateY(0);
}

.link-bank-back-btn i {
    pointer-events: none;
}

.link-bank-title {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    letter-spacing: -0.3px;
}

.link-bank-notice {
    background: #f0fdfa;
    border-left: 4px solid #0d9488;
    padding: 16px 20px;
    margin: 20px;
    border-radius: 8px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.link-bank-notice-icon {
    color: #0d9488;
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.link-bank-notice-text {
    font-size: 13px;
    color: #0f766e;
    line-height: 1.5;
    flex: 1;
}

.link-bank-section {
    background: white;
    margin: 0 20px 20px;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.link-bank-section-title {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 20px 0;
}

.link-bank-status-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.link-bank-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
}

.link-bank-status-badge.linked {
    background: #d1fae5;
    color: #0d9488;
}

.link-bank-status-badge.not-linked {
    background: #fee2e2;
    color: #ef4444;
}

.link-bank-remove-btn {
    background: transparent;
    border: 1px solid #e5e7eb;
    color: #ef4444;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}

.link-bank-remove-btn:hover {
    background: #fee2e2;
    border-color: #ef4444;
}

.link-bank-remove-btn:active {
    transform: translateY(0);
}

.link-bank-card {
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
    border-radius: 16px;
    padding: 24px;
    color: white;
    margin-bottom: 16px;
}

.link-bank-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.link-bank-icon-large {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.link-bank-info {
    flex: 1;
}

.link-bank-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.link-bank-account {
    font-size: 16px;
    opacity: 0.9;
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
}

.link-bank-card-footer {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.link-bank-detail {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
}

.link-bank-detail-label {
    opacity: 0.8;
}

.link-bank-detail-value {
    font-weight: 600;
}

.link-bank-warning {
    background: #fef3c7;
    border: 1px solid #fbbf24;
    border-radius: 8px;
    padding: 12px 16px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 12px;
    color: #92400e;
}

.link-bank-warning i {
    flex-shrink: 0;
    margin-top: 2px;
}

.link-bank-empty-state {
    text-align: center;
    padding: 40px 20px;
}

.link-bank-empty-icon {
    width: 80px;
    height: 80px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: #94a3b8;
}

.link-bank-empty-title {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 12px 0;
}

.link-bank-empty-text {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0 0 24px 0;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.link-bank-add-btn {
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
}

.link-bank-add-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(13, 148, 136, 0.4);
}

.link-bank-add-btn:active {
    transform: translateY(0);
}

.link-bank-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.link-bank-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.link-bank-label {
    font-size: 14px;
    font-weight: 500;
    color: #1e293b;
}

.link-bank-input,
.link-bank-select {
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: 15px;
    color: #1e293b;
    background: white;
    transition: all 0.2s;
    font-family: inherit;
}

.link-bank-input:focus,
.link-bank-select:focus {
    outline: none;
    border-color: #0d9488;
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.link-bank-select {
    cursor: pointer;
}

.link-bank-form-actions {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.link-bank-cancel-btn,
.link-bank-submit-btn {
    flex: 1;
    padding: 14px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.link-bank-cancel-btn {
    background: #f1f5f9;
    color: #64748b;
}

.link-bank-cancel-btn:hover {
    background: #e5e7eb;
}

.link-bank-submit-btn {
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
}

.link-bank-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(13, 148, 136, 0.4);
}

.link-bank-submit-btn:active {
    transform: translateY(0);
}

.link-bank-important-notice {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
}

.link-bank-important-title {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.link-bank-important-title i {
    color: #0d9488;
}

.link-bank-important-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.link-bank-important-list li {
    font-size: 13px;
    color: #475569;
    line-height: 1.6;
    padding-left: 24px;
    position: relative;
}

.link-bank-important-list li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: #0d9488;
    font-weight: 600;
}

/* Payment Page */
.payment-page {
    min-height: 100vh;
    background: #f7f9fb;
    padding: 0;
    padding-top: 60px;
}

.payment-top-bar {
    background: white;
    padding: 16px 20px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 10;
}

.payment-back-btn {
    width: 40px;
    height: 40px;
    background: #f5f7fa;
    border: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: #1e293b;
    font-size: 18px;
    flex-shrink: 0;
    user-select: none;
}

.payment-back-btn:hover {
    background: #e5e7eb;
    transform: translateY(-1px);
}

.payment-back-btn:active {
    transform: translateY(0);
}

.payment-back-btn i {
    pointer-events: none;
}

.payment-title {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    letter-spacing: -0.3px;
}

.payment-notice {
    background: #f0fdfa;
    border-left: 4px solid #0d9488;
    padding: 16px 20px;
    margin: 20px;
    border-radius: 8px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.payment-notice-icon {
    color: #0d9488;
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.payment-notice-text {
    font-size: 13px;
    color: #0f766e;
    line-height: 1.5;
    flex: 1;
}

.payment-section {
    background: white;
    margin: 0 20px 20px;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.payment-section-title {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
}

.payment-item-card {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
}

.payment-item-header {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.payment-item-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.payment-item-info {
    flex: 1;
}

.payment-item-name {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 6px 0;
}

.payment-item-desc {
    font-size: 13px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

.payment-item-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
}

.payment-price-label {
    font-size: 14px;
    color: #64748b;
}

.payment-price-value {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
}

.payment-benefits-info {
    background: #fef3c7;
    border: 1px solid #fbbf24;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 20px;
}

.payment-benefits-text {
    font-size: 12px;
    color: #92400e;
    margin: 0;
    line-height: 1.5;
}

.payment-benefits-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.benefit-option {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s;
}

.benefit-option:hover {
    border-color: #0d9488;
}

.benefit-option-label {
    display: flex;
    align-items: center;
    padding: 16px;
    cursor: pointer;
    margin: 0;
}

.benefit-option-label input[type="radio"] {
    margin-right: 12px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #0d9488;
}

.benefit-option-label input[type="radio"]:checked + .benefit-option-content {
    color: #0d9488;
}

.benefit-option-label:has(input:checked) {
    background: #f0fdfa;
    border-color: #0d9488;
}

.benefit-option-content {
    flex: 1;
}

.benefit-option-title {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
}

.benefit-option-label input[type="radio"]:checked ~ .benefit-option-content .benefit-option-title,
.benefit-option-label:has(input:checked) .benefit-option-title {
    color: #0d9488;
}

.benefit-option-desc {
    font-size: 12px;
    color: #64748b;
}

.payment-mindcredit-balance {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    background: #f0fdfa;
    border-radius: 8px;
    font-size: 14px;
    color: #1e293b;
}

.payment-mc-value {
    font-weight: 700;
    color: #0d9488;
    font-size: 16px;
}

.payment-summary {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    font-size: 15px;
}

.summary-row:not(:last-child) {
    border-bottom: 1px solid #e5e7eb;
}

.summary-label {
    color: #64748b;
}

.summary-value {
    font-weight: 600;
    color: #1e293b;
}

.summary-value.benefit-discount {
    color: #0d9488;
}

.summary-total {
    margin-top: 8px;
    padding-top: 16px;
    border-top: 2px solid #0d9488;
    font-size: 18px;
}

.summary-total .summary-label {
    color: #1e293b;
    font-weight: 600;
}

.summary-total .summary-value.total-amount {
    color: #0d9488;
    font-size: 22px;
    font-weight: 700;
}

.payment-method-card {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
}

.payment-method-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.payment-method-icon {
    width: 48px;
    height: 48px;
    background: white;
    border: 2px solid #0d9488;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d9488;
    font-size: 20px;
    flex-shrink: 0;
}

.payment-method-info {
    flex: 1;
}

.payment-method-name {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
}

.payment-method-details {
    font-size: 13px;
    color: #64748b;
}

.payment-method-change-btn {
    background: transparent;
    border: 1px solid #0d9488;
    color: #0d9488;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.payment-method-change-btn:hover {
    background: #0d9488;
    color: white;
}

.payment-method-warning {
    background: #fef3c7;
    border: 1px solid #fbbf24;
    border-radius: 8px;
    padding: 12px 16px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 12px;
    color: #92400e;
}

.payment-method-warning i {
    flex-shrink: 0;
    margin-top: 2px;
}

.payment-important-notice {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 12px;
    padding: 20px;
}

.payment-important-title {
    font-size: 16px;
    font-weight: 600;
    color: #991b1b;
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-important-title i {
    color: #ef4444;
}

.payment-important-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.payment-important-list li {
    font-size: 13px;
    color: #7f1d1d;
    line-height: 1.6;
    padding-left: 24px;
    position: relative;
}

.payment-important-list li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: #ef4444;
    font-weight: 600;
}

.payment-actions {
    padding: 0 20px 20px;
}

.payment-btn {
    width: 100%;
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
}

.payment-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(13, 148, 136, 0.4);
}

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

.payment-btn i {
    pointer-events: none;
}

/* Gift / Birthday Gift Page */
.gift-page {
    min-height: 100vh;
    background: #f7f9fb;
    padding: 0;
    padding-top: 60px;
}

.gift-top-bar {
    background: white;
    padding: 16px 20px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 10;
}

.gift-back-btn {
    width: 40px;
    height: 40px;
    background: #f5f7fa;
    border: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: #1e293b;
    font-size: 18px;
    flex-shrink: 0;
    user-select: none;
}

.gift-back-btn:hover {
    background: #e5e7eb;
    transform: translateY(-1px);
}

.gift-back-btn:active {
    transform: translateY(0);
}

.gift-back-btn i {
    pointer-events: none;
}

.gift-title {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    letter-spacing: -0.3px;
}

.gift-notice {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-left: 4px solid #f59e0b;
    padding: 16px 20px;
    margin: 20px;
    border-radius: 8px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.gift-notice-icon {
    color: #f59e0b;
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.gift-notice-text {
    font-size: 13px;
    color: #92400e;
    line-height: 1.5;
    flex: 1;
}

.gift-section {
    background: white;
    margin: 0 20px 20px;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.gift-section-title {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
}

.gift-trust-levels {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gift-trust-card {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.2s;
}

.gift-trust-card:hover {
    border-color: #0d9488;
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.1);
}

.gift-trust-card.premium {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-color: #f59e0b;
}

.gift-trust-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e5e7eb;
}

.gift-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
}

.gift-trust-badge.level1 {
    background: #e5e7eb;
    color: #64748b;
}

.gift-trust-badge.level2 {
    background: #dbeafe;
    color: #0369a1;
}

.gift-trust-badge.level3 {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: white;
}

.gift-trust-name {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
}

.gift-trust-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gift-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.gift-item-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.gift-item-info {
    flex: 1;
}

.gift-item-title {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
}

.gift-item-desc {
    font-size: 12px;
    color: #64748b;
    line-height: 1.4;
}

.gift-rules {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.gift-rule-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 16px;
    background: #f8fafc;
    border-radius: 10px;
    border-left: 3px solid #0d9488;
}

.gift-rule-icon {
    width: 36px;
    height: 36px;
    background: #f0fdfa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d9488;
    font-size: 16px;
    flex-shrink: 0;
}

.gift-rule-text {
    flex: 1;
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
}

.gift-rule-text strong {
    color: #1e293b;
    font-weight: 600;
}

.gift-communication {
    margin-top: 20px;
}

.gift-email-preview {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
}

.gift-email-header {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e5e7eb;
}

.gift-email-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.gift-email-title {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
}

.gift-email-subtitle {
    font-size: 12px;
    color: #64748b;
}

.gift-email-content {
    background: white;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 16px;
    border: 1px solid #e5e7eb;
    font-style: italic;
}

.gift-email-note {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    padding: 12px 16px;
    background: #f0fdfa;
    border-radius: 8px;
    font-size: 12px;
    color: #0f766e;
}

.gift-email-note i {
    flex-shrink: 0;
    margin-top: 2px;
}

.gift-focus-box {
    background: linear-gradient(135deg, #f0fdfa 0%, #e0fdfa 100%);
    border: 2px solid #0d9488;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
}

.gift-focus-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    margin: 0 auto 16px;
}

.gift-focus-title {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 12px 0;
}

.gift-focus-text {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

/* Settings Page Styles */
.settings-page {
    min-height: 100vh;
    background: #f7f9fb;
    padding: 0;
    padding-top: 60px;
    padding-bottom: 40px;
}

.settings-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.settings-info-card {
    background: white;
    border-radius: 16px;
    padding: 24px 20px;
    margin: 0 20px 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
    min-height: auto;
    height: auto;
}

.settings-info-title {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.settings-info-title i {
    color: #0d9488;
    font-size: 20px;
}

.settings-info-text {
    font-size: 14px;
    color: #1e293b;
    line-height: 2;
    margin: 0;
    font-weight: 400;
}

.settings-info-text br {
    display: block;
    margin: 4px 0;
}

.settings-logout-btn {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
    min-height: 48px;
}

.settings-logout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(239, 68, 68, 0.4);
}

.settings-logout-btn:active {
    transform: translateY(0);
}

.settings-logout-btn i {
    pointer-events: none;
    font-size: 16px;
}

/* ============================================
   MESSAGING (CHAT/INBOX) STYLES
   ============================================ */

.messaging-page {
    width: 100%;
    height: 100vh;
    background: #f8fafc;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.messaging-top-bar {
    background: white;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    z-index: 10;
}

.messaging-back-btn {
    background: none;
    border: none;
    font-size: 18px;
    color: #1e293b;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.2s;
}

.messaging-back-btn:hover {
    background: #f1f5f9;
}

.messaging-title {
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.messaging-inbox {
    flex: 1;
    overflow-y: auto;
    padding: 0;
}

.messaging-inbox-header {
    background: white;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 5;
}

.messaging-inbox-header h2 {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.messaging-archive-btn {
    background: none;
    border: none;
    color: #0d9488;
    font-size: 14px;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s;
}

.messaging-archive-btn:hover {
    background: #f0fdfa;
}

.messaging-conversation-list {
    padding: 0;
}

.messaging-conversation-item {
    background: white;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #f1f5f9;
    cursor: pointer;
    transition: background 0.2s;
}

.messaging-conversation-item:hover {
    background: #f8fafc;
}

.messaging-conversation-item:active {
    background: #f1f5f9;
}

.messaging-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    flex-shrink: 0;
}

.messaging-avatar-group {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

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

.messaging-conversation-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.messaging-conversation-name {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
}

.messaging-conversation-time {
    font-size: 12px;
    color: #64748b;
}

.messaging-conversation-preview {
    font-size: 14px;
    color: #64748b;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.messaging-conversation-meta {
    margin-top: 4px;
}

.messaging-unread-badge {
    display: inline-block;
    background: #0d9488;
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 10px;
    min-width: 20px;
    text-align: center;
}

.messaging-chat {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #f8fafc;
}

.messaging-chat-header {
    background: white;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    z-index: 10;
}

.messaging-back-to-inbox {
    background: none;
    border: none;
    font-size: 18px;
    color: #1e293b;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.2s;
}

.messaging-back-to-inbox:hover {
    background: #f1f5f9;
}

.messaging-chat-header-info {
    flex: 1;
}

.messaging-chat-name {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
}

.messaging-chat-status {
    font-size: 12px;
    color: #64748b;
}

.messaging-chat-menu {
    background: none;
    border: none;
    font-size: 18px;
    color: #64748b;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.2s;
}

.messaging-chat-menu:hover {
    background: #f1f5f9;
}

.messaging-chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.messaging-message {
    display: flex;
    max-width: 75%;
}

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

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

.messaging-message-content {
    background: white;
    padding: 10px 14px;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.messaging-message.sent .messaging-message-content {
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
    color: white;
}

.messaging-message-content p {
    margin: 0 0 4px 0;
    font-size: 14px;
    line-height: 1.4;
}

.messaging-message-time {
    font-size: 11px;
    color: #64748b;
    display: block;
}

.messaging-message.sent .messaging-message-time {
    color: rgba(255, 255, 255, 0.8);
}

.messaging-chat-input-area {
    background: white;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.06);
    border-top: 1px solid #e5e7eb;
}

.messaging-attach-btn {
    background: none;
    border: none;
    color: #64748b;
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.2s;
}

.messaging-attach-btn:hover {
    background: #f1f5f9;
}

.messaging-chat-input {
    flex: 1;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 10px 16px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}

.messaging-chat-input:focus {
    border-color: #0d9488;
}

.messaging-send-btn {
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 10px 16px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.messaging-send-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.4);
}

.messaging-helper-tooltip {
    background: #fef3c7;
    border: 1px solid #fbbf24;
    border-radius: 8px;
    padding: 12px 16px;
    margin: 16px 20px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 12px;
    color: #92400e;
}

.messaging-helper-tooltip i {
    color: #f59e0b;
    margin-top: 2px;
    flex-shrink: 0;
}

/* ============================================
   WORK MESSAGE STYLES
   ============================================ */

.work-message-page {
    width: 100%;
    min-height: 100vh;
    background: #f8fafc;
    padding-bottom: 20px;
}

.work-message-top-bar {
    background: white;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 10;
}

.work-message-back-btn {
    background: none;
    border: none;
    font-size: 18px;
    color: #1e293b;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.2s;
}

.work-message-back-btn:hover {
    background: #f1f5f9;
}

.work-message-title {
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.work-message-contribution-info {
    background: white;
    margin: 20px;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
}

.work-message-contribution-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 8px 0;
}

.work-message-contribution-info p {
    font-size: 14px;
    color: #64748b;
    margin: 0 0 12px 0;
}

.work-message-status-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.work-message-status-badge.pending {
    background: #fef3c7;
    color: #92400e;
}

.work-message-status-badge.approved {
    background: #d1fae5;
    color: #065f46;
}

.work-message-log {
    background: white;
    margin: 20px;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
}

.work-message-log-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid #f1f5f9;
}

.work-message-log-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.work-message-info-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #fef3c7;
    color: #92400e;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.work-message-info-badge i {
    font-size: 12px;
}

.work-message-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-height: 400px;
    overflow-y: auto;
}

.work-message-item {
    padding: 16px;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 3px solid #0d9488;
}

.work-message-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    flex-wrap: wrap;
    gap: 8px;
}

.work-message-author {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
}

.work-message-timestamp {
    font-size: 12px;
    color: #64748b;
}

.work-message-edited-badge {
    font-size: 11px;
    color: #64748b;
    font-style: italic;
}

.work-message-item-content {
    font-size: 14px;
    color: #1e293b;
    line-height: 1.6;
}

.work-message-item-content p {
    margin: 0 0 8px 0;
}

.work-message-attachment {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    padding: 8px 12px;
    background: white;
    border-radius: 6px;
    font-size: 13px;
    color: #64748b;
}

.work-message-attachment i {
    color: #0d9488;
}

.work-message-send-form {
    background: white;
    margin: 20px;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
}

.work-message-form-header {
    margin-bottom: 16px;
}

.work-message-form-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 12px 0;
}

.work-message-warning {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    background: #fef3c7;
    border: 1px solid #fbbf24;
    border-radius: 6px;
    padding: 10px 12px;
    font-size: 12px;
    color: #92400e;
}

.work-message-warning i {
    color: #f59e0b;
    margin-top: 2px;
    flex-shrink: 0;
}

.work-message-form-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.work-message-textarea {
    width: 100%;
    min-height: 100px;
    padding: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    resize: vertical;
    outline: none;
    transition: border-color 0.2s;
}

.work-message-textarea:focus {
    border-color: #0d9488;
}

.work-message-form-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.work-message-attach-btn {
    background: white;
    border: 1px solid #e5e7eb;
    color: #64748b;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.work-message-attach-btn:hover {
    background: #f8fafc;
    border-color: #0d9488;
    color: #0d9488;
}

.work-message-send-btn {
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.work-message-send-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.4);
}

.work-message-send-btn:active {
    transform: translateY(0);
}

/* ============================================
   TRUST LEVEL PAGE STYLES
   ============================================ */

.trust-level-page {
    width: 100%;
    min-height: 100vh;
    background: #f8fafc;
    padding-bottom: 20px;
}

.trust-level-top-bar {
    background: white;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 10;
}

.trust-level-back-btn {
    background: none;
    border: none;
    font-size: 18px;
    color: #1e293b;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.2s;
}

.trust-level-back-btn:hover {
    background: #f1f5f9;
}

.trust-level-title {
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.trust-level-current-card {
    background: white;
    margin: 20px;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
}

.trust-level-current-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.trust-level-current-badge {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 12px;
    flex-shrink: 0;
}

.trust-level-current-badge.advanced {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}

.trust-level-current-badge i {
    font-size: 24px;
    margin-bottom: 4px;
}

.trust-level-current-info h2 {
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 4px 0;
}

.trust-level-current-info p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

.trust-level-progress {
    margin-top: 20px;
}

.trust-level-progress-bar {
    height: 8px;
    background: #f1f5f9;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.trust-level-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.trust-level-progress-text {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #64748b;
}

.trust-level-notice {
    background: #e0f2fe;
    border: 1px solid #bae6fd;
    border-radius: 12px;
    padding: 16px;
    margin: 20px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.trust-level-notice i {
    color: #0369a1;
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.trust-level-notice strong {
    display: block;
    color: #0369a1;
    font-size: 14px;
    margin-bottom: 6px;
}

.trust-level-notice p {
    font-size: 13px;
    color: #0c4a6e;
    margin: 0;
    line-height: 1.5;
}

.trust-level-section {
    margin: 20px;
}

.trust-level-section-title {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 16px 0;
}

.trust-level-explanation {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.trust-level-explanation-item {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.trust-level-explanation-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.trust-level-explanation-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 6px 0;
}

.trust-level-explanation-content p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

.trust-level-tiers {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.trust-level-tier-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
    transition: transform 0.2s, box-shadow 0.2s;
}

.trust-level-tier-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.trust-level-tier-card.premium {
    border: 2px solid #fbbf24;
    background: linear-gradient(135deg, #fff 0%, #fef3c7 100%);
}

.trust-level-tier-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid #f1f5f9;
}

.trust-level-tier-badge {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 11px;
    flex-shrink: 0;
}

.trust-level-tier-badge.level1 {
    background: linear-gradient(135deg, #64748b 0%, #475569 100%);
}

.trust-level-tier-badge.level2 {
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
}

.trust-level-tier-badge.level3 {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
}

.trust-level-tier-badge i {
    font-size: 20px;
    margin-bottom: 4px;
}

.trust-level-tier-name {
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.trust-level-tier-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.trust-level-tier-requirements,
.trust-level-tier-benefits {
    flex: 1;
}

.trust-level-tier-requirements h4,
.trust-level-tier-benefits h4 {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 12px 0;
}

.trust-level-tier-requirements ul,
.trust-level-tier-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.trust-level-tier-requirements li,
.trust-level-tier-benefits li {
    font-size: 13px;
    color: #64748b;
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.trust-level-tier-requirements li::before,
.trust-level-tier-benefits li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #0d9488;
    font-weight: bold;
}

.trust-level-contribution-note {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.trust-level-contribution-note-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #f0fdfa;
    color: #0d9488;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.trust-level-contribution-note-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 8px 0;
}

.trust-level-contribution-note-content p {
    font-size: 14px;
    color: #64748b;
    margin: 0 0 16px 0;
    line-height: 1.5;
}

.trust-level-contribution-note-important {
    background: #fef3c7;
    border: 1px solid #fbbf24;
    border-radius: 8px;
    padding: 12px;
    font-size: 13px;
    color: #92400e;
}

.trust-level-contribution-note-important strong {
    display: block;
    margin-bottom: 8px;
}

.trust-level-contribution-note-important ul {
    list-style: none;
    padding: 0;
    margin: 8px 0 0 0;
}

.trust-level-contribution-note-important li {
    padding: 4px 0;
    padding-left: 20px;
    position: relative;
}

.trust-level-contribution-note-important li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #f59e0b;
}

@media (max-width: 768px) {
    .trust-level-tier-content {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   CONTRIBUTION RECORDS PAGE STYLES
   ============================================ */

.contribution-records-page {
    width: 100%;
    min-height: 100vh;
    background: #f8fafc;
    padding-bottom: 20px;
}

.contribution-records-top-bar {
    background: white;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 10;
}

.contribution-records-back-btn {
    background: none;
    border: none;
    font-size: 18px;
    color: #1e293b;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.2s;
}

.contribution-records-back-btn:hover {
    background: #f1f5f9;
}

.contribution-records-title {
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.contribution-records-summary {
    background: white;
    margin: 20px;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-around;
    gap: 16px;
}

.contribution-records-summary-item {
    text-align: center;
    flex: 1;
}

.contribution-records-summary-value {
    font-size: 32px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

.contribution-records-summary-label {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

.contribution-records-notice {
    background: #e0f2fe;
    border: 1px solid #bae6fd;
    border-radius: 12px;
    padding: 16px;
    margin: 20px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.contribution-records-notice i {
    color: #0369a1;
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.contribution-records-notice strong {
    display: block;
    color: #0369a1;
    font-size: 14px;
    margin-bottom: 6px;
}

.contribution-records-notice p {
    font-size: 13px;
    color: #0c4a6e;
    margin: 0;
    line-height: 1.5;
}

.contribution-records-filter-tabs {
    display: flex;
    gap: 8px;
    padding: 16px 20px;
    background: white;
    border-bottom: 1px solid #e5e7eb;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.contribution-records-filter-tabs::-webkit-scrollbar {
    display: none;
}

.contribution-records-filter-tab {
    flex: 1;
    padding: 12px 16px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    font-size: 15px;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s;
    user-select: none;
    white-space: nowrap;
}

.contribution-records-filter-tab:hover {
    color: #1e293b;
}

.contribution-records-filter-tab.active {
    color: #0d9488;
    border-bottom-color: #0d9488;
}

.contribution-records-list {
    padding: 20px;
}

.contribution-record-item {
    background: white;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #f1f5f9;
    transition: all 0.2s;
}

.contribution-record-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contribution-record-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    gap: 12px;
}

.contribution-record-title {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
    flex: 1;
}

.contribution-record-status-badge {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.contribution-record-status-badge.completed {
    background: #d1fae5;
    color: #065f46;
}

.contribution-record-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f1f5f9;
}

.contribution-record-date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #64748b;
}

.contribution-record-date i {
    font-size: 12px;
    color: #94a3b8;
}

.contribution-record-trust-context {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #64748b;
    padding: 6px 10px;
    background: #f8fafc;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
}

.contribution-record-trust-context i.fa-shield-alt {
    color: #0d9488;
    font-size: 11px;
}

.contribution-record-trust-info {
    color: #94a3b8;
    font-size: 11px;
    cursor: help;
    margin-left: 4px;
}

.contribution-record-trust-info:hover {
    color: #0d9488;
}

.contribution-record-details {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.contribution-record-detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.contribution-record-detail-label {
    color: #64748b;
    font-weight: 500;
}

.contribution-record-detail-value {
    color: #1e293b;
    font-weight: 600;
}

.contribution-record-detail-value:has-text("MC") {
    color: #0d9488;
}

