/* 1ndex base WebApp - Liquid Glass Style */

/* Custom Font - Zvezda */
@font-face {
    font-family: 'Zvezda';
    src: url('/static/fonts/zvezda.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

/* Custom Font - Gearhouse (removed — file not present) */

/* Custom Font - Medium */
@font-face {
    font-family: 'Medium';
    src: url('/static/fonts/medium.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Custom Font - Onder */
@font-face {
    font-family: 'Onder';
    src: url('/static/fonts/onder.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg-color: #0a0b10;
    --text-color: var(--tg-theme-text-color, #ffffff);
    --hint-color: var(--tg-theme-hint-color, rgba(255,255,255,0.5));
    --link-color: var(--tg-theme-link-color, #64d2ff);
    --button-color: var(--tg-theme-button-color, #0a84ff);
    --button-text: var(--tg-theme-button-text-color, #ffffff);
    
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-highlight: rgba(255, 255, 255, 0.1);
    
    --positive: #30d158;
    --negative: #ff9f0a;
    --scam: #ff453a;
    --accent: #bf5af2;
    --orange-btn: linear-gradient(135deg, #ff9500, #ff6b00);
    
    --blur: 24px;
    --radius: 24px;
    --radius-sm: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
    background: var(--bg-color);
    color: var(--text-color);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
    background: var(--bg-color);
}

.bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.8;
    will-change: transform;
}

.bg-blob-1 {
    width: 70vmax;
    height: 70vmax;
    background: radial-gradient(circle, rgba(100, 160, 220, 0.6) 0%, rgba(100, 160, 220, 0) 60%);
    top: -25%;
    left: -25%;
    animation: float1 25s ease-in-out infinite;
}

.bg-blob-2 {
    width: 55vmax;
    height: 55vmax;
    background: radial-gradient(circle, rgba(150, 170, 210, 0.55) 0%, rgba(150, 170, 210, 0) 60%);
    top: 35%;
    right: -20%;
    animation: float2 30s ease-in-out infinite;
}

.bg-blob-3 {
    width: 50vmax;
    height: 50vmax;
    background: radial-gradient(circle, rgba(180, 200, 240, 0.5) 0%, rgba(180, 200, 240, 0) 60%);
    bottom: -15%;
    left: 15%;
    animation: float3 20s ease-in-out infinite;
}

.bg-blob-4 {
    width: 45vmax;
    height: 45vmax;
    background: radial-gradient(circle, rgba(200, 210, 230, 0.45) 0%, rgba(200, 210, 230, 0) 60%);
    top: 55%;
    left: -15%;
    animation: float4 35s ease-in-out infinite;
}

.bg-blob-5 {
    width: 50vmax;
    height: 50vmax;
    background: radial-gradient(circle, rgba(130, 160, 200, 0.5) 0%, rgba(130, 160, 200, 0) 60%);
    top: 5%;
    right: 5%;
    animation: float5 28s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(10%, 15%) scale(1.05); }
    50% { transform: translate(5%, 25%) scale(0.95); }
    75% { transform: translate(-5%, 10%) scale(1.02); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-15%, 10%) scale(1.08); }
    66% { transform: translate(-10%, -15%) scale(0.92); }
}

@keyframes float3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    20% { transform: translate(15%, -10%) scale(1.1); }
    40% { transform: translate(25%, 5%) scale(0.95); }
    60% { transform: translate(10%, 15%) scale(1.05); }
    80% { transform: translate(-5%, 10%) scale(0.98); }
}

@keyframes float4 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20%, -20%) scale(1.15); }
}

@keyframes float5 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    30% { transform: translate(-10%, 20%) scale(0.9); }
    70% { transform: translate(15%, 10%) scale(1.1); }
}

#app {
    padding: 16px;
    padding-bottom: 100px;
    max-width: 100%;
    min-height: 100vh;
}

.hidden { display: none !important; }

.loading {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
}

.spinner {
    width: 44px;
    height: 44px;
    border: 3px solid var(--glass-border);
    border-top-color: var(--link-color);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--blur));
    -webkit-backdrop-filter: blur(var(--blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
}

.glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-highlight), transparent);
}

.profile-card {
    animation: fadeUp 0.6s ease;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.profile-header {
    text-align: center;
    padding: 28px 20px;
    margin-bottom: 12px;
    min-height: calc(50vh - 60px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.avatar-container {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 16px;
}

.avatar-ring {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, rgba(255,255,255,0.05), rgba(255,255,255,0.15), rgba(255,255,255,0.7), rgba(255,255,255,0.9), rgba(255,255,255,0.7), rgba(255,255,255,0.15), rgba(255,255,255,0.05));
    animation: rotate 6s linear infinite;
}

.avatar-ring::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent 0%, transparent 50%, rgba(255,255,255,0.4) 70%, rgba(255,255,255,0.6) 75%, rgba(255,255,255,0.4) 80%, transparent 100%);
    filter: blur(6px);
    animation: rotate 6s linear infinite;
}

@keyframes rotate { to { transform: rotate(360deg); } }

.avatar-ring::before {
    content: '';
    position: absolute;
    inset: 3px;
    background: var(--bg-color);
    border-radius: 50%;
}

.avatar {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 1;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.scammer-avatar-bg {
    position: absolute;
    inset: 0;
    background: rgba(140, 20, 20, 0.85);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    z-index: 1;
}

.scammer-avatar-bg span {
    display: block;
    white-space: nowrap;
    font-size: 16px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1px;
    line-height: 18px;
    text-transform: uppercase;
}

.scammer-lottie {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scammer-lottie svg {
    width: 100% !important;
    height: 100% !important;
}

.avatar-letter {
    font-size: 36px;
    font-weight: 600;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.status-indicator {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 3px solid var(--bg-color);
    z-index: 2;
    transition: all 0.3s ease;
}

.status-indicator.online {
    background: var(--positive);
    box-shadow: 0 0 12px var(--positive);
}

.status-indicator.offline { background: var(--hint-color); }
.status-indicator.blocked { background: var(--scam); box-shadow: 0 0 12px var(--scam); }
.status-indicator.hidden { display: none; }

.user-name {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: -0.5px;
}

.user-username {
    font-size: 15px;
    color: var(--hint-color);
    margin-bottom: 4px;
}

.user-id {
    font-size: 13px;
    color: var(--hint-color);
    margin-bottom: 8px;
}

.role-chip {
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* Full width matching review-text in trust-reviews */
    width: 100%;
    box-sizing: border-box;
    padding: 14px 16px;
    
    /* Liquid glass button style - same as review-text */
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.12) 0%,
        rgba(255, 255, 255, 0.06) 50%,
        rgba(255, 255, 255, 0.03) 100%
    );
    
    /* Raised button effect */
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.25),
        0 2px 6px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1),
        0 0 20px rgba(255, 255, 255, 0.08);
    
    /* Onder font for role */
    font-family: 'Onder', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 12px;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 1px;
    -webkit-font-smoothing: antialiased;
    
    position: relative;
}

/* Hide role icon */
.role-chip svg {
    display: none;
}

/* Top highlight for 3D effect */
.role-chip::after {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 14px 14px 0 0;
    pointer-events: none;
}

.role-chip svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    opacity: 0.8;
}

.trust-card {
    padding: 24px;
    margin-bottom: 12px;
    text-align: center;
    min-height: calc(50vh - 60px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Deposit Badge */
.deposit-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    margin-bottom: 20px;
}

.deposit-badge::before {
    display: none;
}

.deposit-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
}

.deposit-value {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.trust-visual {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 14px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.trust-visual:active {
    transform: scale(0.98);
}

.trust-glow-outer {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.06);
    animation: outerBreathing 4s ease-in-out infinite;
}

@keyframes outerBreathing {
    0%, 100% {
        transform: scale(1);
        border-color: rgba(255, 255, 255, 0.06);
        box-shadow: 0 0 0 rgba(255, 255, 255, 0);
    }
    50% {
        transform: scale(1.05);
        border-color: rgba(255, 255, 255, 0.12);
        box-shadow: 0 0 16px rgba(255, 255, 255, 0.05);
    }
}

.trust-ring-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.trust-ring-outer {
    fill: none;
    stroke: rgba(255, 255, 255, 0.08);
    stroke-width: 8;
}

.trust-ring-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.15);
    stroke-width: 8;
}

.trust-ring-progress {
    fill: none;
    stroke: rgba(255, 255, 255, 0.9);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 345;
    stroke-dashoffset: 345;
    transition: stroke-dashoffset 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.trust-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.trust-number {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -2px;
}

.trust-label {
    font-family: 'Onder', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 8px;
    color: var(--hint-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: normal;
    -webkit-font-smoothing: antialiased;
    margin-top: 10px;
}


/* Scroll reveal animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stats Carousel */
.stats-carousel {
    position: relative;
    margin-bottom: 12px;
    overflow: hidden;
}

.stats-track {
    display: flex;
    will-change: transform;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}

.stats-track:active {
    cursor: grabbing;
}

.stat-card {
    flex: 0 0 100%;
    padding: 24px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.stat-indicator {
    width: 4px;
    height: 50px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
}

.stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.stat-icon svg {
    width: 26px;
    height: 26px;
    fill: rgba(255, 255, 255, 0.9);
}

.arrow-up {
    animation: arrowUp 1.5s ease-in-out infinite;
}

.arrow-down {
    animation: arrowDown 1.5s ease-in-out infinite;
}

@keyframes arrowUp {
    0%, 100% { transform: translateY(2px); opacity: 0.7; }
    50% { transform: translateY(-2px); opacity: 1; }
}

@keyframes arrowDown {
    0%, 100% { transform: translateY(-2px); opacity: 0.7; }
    50% { transform: translateY(2px); opacity: 1; }
}

.scam-pulse {
    animation: scamPulse 2s ease-in-out infinite;
}

@keyframes scamPulse {
    0%, 100% { opacity: 0.7; transform: scale(0.95); }
    50% { opacity: 1; transform: scale(1); }
}

.stat-content {
    flex: 1;
}

.stat-value {
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 13px;
    color: var(--hint-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.stats-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding-bottom: 8px;
}

.stats-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.stats-dot.active {
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}


/* Sections */
.section-card {
    padding: 18px;
    margin-bottom: 10px;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.section-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: var(--glass-highlight);
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-icon svg {
    width: 17px;
    height: 17px;
    fill: var(--text-color);
    opacity: 0.8;
}

.section-title {
    font-size: 15px;
    font-weight: 600;
    flex: 1;
}

.section-badge {
    padding: 4px 10px;
    background: var(--glass-highlight);
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
}

/* Badges */
.badges-scroll {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    margin: 0 -18px;
    padding: 4px 18px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.badges-scroll::-webkit-scrollbar { display: none; }

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: var(--glass-highlight);
    border-radius: 14px;
    flex-shrink: 0;
    cursor: pointer;
    transition: all 0.2s ease;
}

.badge-item:active {
    transform: scale(0.95);
    background: var(--glass-border);
}

.badge-emoji { font-size: 16px; }
.badge-name { font-size: 13px; font-weight: 500; white-space: nowrap; }

/* Tags */
.tags-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: var(--glass-highlight);
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

/* NFT Tags Row - под плашкой роли */
.nft-tags-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 14px;
    padding: 0 15px;
}

/* Coder subtitle - серый текст под плашкой роли */
.coder-subtitle {
    font-size: 12px;
    color: var(--hint-color);
    text-align: center;
    margin-top: 8px;
    padding: 0 20px;
    line-height: 1.4;
    opacity: 0.7;
}

.nft-tag {
    font-size: 15px;
    font-weight: 400;
    color: var(--hint-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.nft-tag:hover {
    color: var(--text-color);
}

/* Flags */
.flags-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.flag-item {
    padding: 12px 14px;
    background: var(--glass-highlight);
    border-radius: 12px;
    border-left: 3px solid var(--hint-color);
}

.flag-item.warning { border-left-color: var(--negative); }
.flag-item.scam_risk { border-left-color: var(--scam); }
.flag-item.suspicious { border-left-color: #ffd60a; }
.flag-item.trusted, .flag-item.vip { border-left-color: var(--accent); }

.flag-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.flag-type { font-size: 13px; font-weight: 600; }
.flag-date { font-size: 11px; color: var(--hint-color); }
.flag-reason { font-size: 12px; color: var(--hint-color); line-height: 1.4; }

/* Meta */
.meta-card {
    overflow: hidden;
    margin-bottom: 12px;
}

.meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
}

.meta-row:not(:last-child) {
    border-bottom: 1px solid var(--glass-border);
}

.meta-label { 
    font-size: 13px; 
    color: var(--hint-color); 
}
.meta-value { 
    font-size: 13px; 
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}

/* Actions */
.actions-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px 16px;
    padding-bottom: calc(14px + env(safe-area-inset-bottom));
    background: linear-gradient(to top, rgba(10,10,15,0.98), rgba(10,10,15,0.8), transparent);
    display: flex;
    gap: 10px;
}

.btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    border: none;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.btn:active {
    transform: scale(0.97);
}

.btn svg {
    width: 18px;
    height: 18px;
}

.btn-glass {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-color);
}

.btn-glass:active {
    background: rgba(255, 255, 255, 0.12);
}

/* Error */
.error-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    text-align: center;
    padding: 32px;
}

.error-icon {
    width: 60px;
    height: 60px;
    fill: var(--hint-color);
    margin-bottom: 20px;
    opacity: 0.5;
}

.error-text {
    font-size: 17px;
    color: var(--hint-color);
    margin-bottom: 24px;
}

@media (prefers-color-scheme: light) {
    body {
        background: linear-gradient(180deg, #f2f2f7 0%, #e5e5ea 50%, #f2f2f7 100%);
    }
    
    :root {
        --glass-bg: rgba(255, 255, 255, 0.7);
        --glass-border: rgba(0, 0, 0, 0.08);
        --glass-highlight: rgba(0, 0, 0, 0.04);
        --hint-color: rgba(0, 0, 0, 0.5);
    }
    
    .avatar-ring::before {
        background: #f2f2f7;
    }
    
    .actions-bar {
        background: linear-gradient(to top, rgba(242,242,247,0.98), rgba(242,242,247,0.8), transparent);
    }
}


/* Branch (hierarchy) */
.branch-scroll {
    display: flex;
    align-items: center;
    gap: 4px;
    overflow-x: auto;
    padding: 8px 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.branch-scroll::-webkit-scrollbar { display: none; }

.branch-node {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: var(--glass-highlight);
    border-radius: 12px;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.branch-node.current {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.1);
}

.branch-emoji {
    font-size: 18px;
}

.branch-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.branch-role {
    font-size: 10px;
    color: var(--hint-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.branch-name {
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.branch-connector {
    color: var(--hint-color);
    font-size: 14px;
    padding: 0 4px;
    flex-shrink: 0;
}

/* Status indicator for suspicious */
.status-indicator.suspicious {
    background: #ffd60a;
    box-shadow: 0 0 12px rgba(255, 214, 10, 0.5);
}

/* User type badge in role chip */
.role-chip .type-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 12px;
    margin-left: 8px;
}

/* ==================== VIEW SWITCHER ==================== */
.view-switcher {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 100;
    display: flex;
    gap: 4px;
    padding: 4px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.switcher-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 12px;
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-tap-highlight-color: transparent;
}

.switcher-btn:active {
    transform: scale(0.95);
}

.switcher-btn.active {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 16px rgba(255, 255, 255, 0.15);
}

.switcher-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.switcher-btn:active svg {
    transform: scale(0.9);
}

/* ==================== NETWORK VIEW ==================== */
.network-view {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    overflow: hidden;
    opacity: 0;
    animation: networkFadeIn 0.6s ease forwards;
}

@keyframes networkFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.network-view.hidden {
    display: none;
}

.network-loading {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 55;
    pointer-events: none;
}

.network-loading.hidden {
    display: none;
}

#network-canvas {
    width: 100%;
    height: 100%;
    touch-action: none;
}

/* Network Controls */
.network-controls {
    position: fixed;
    top: 24px;
    left: 24px;
    display: flex;
    flex-direction: row;
    gap: 4px;
    padding: 4px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    z-index: 100;
    animation: fadeIn 0.5s ease 0.3s both;
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.network-control-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 12px;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.network-control-btn:active {
    transform: scale(0.95);
    background: rgba(255, 255, 255, 0.15);
}

/* Network Legend */
.network-legend {
    position: fixed;
    bottom: 100px;
    left: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    z-index: 60;
    animation: slideInLeft 0.5s ease 0.3s both;
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

.legend-title {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

.legend-ring {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
}

/* Network User Card */
.network-user-card {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 20px;
    padding-bottom: calc(24px + env(safe-area-inset-bottom));
    background: rgb(45, 45, 55);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px 24px 0 0;
    z-index: 70;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    touch-action: pan-y;
}

.network-user-card::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    cursor: grab;
}

.network-user-card.visible {
    transform: translateY(0);
}

.network-user-card.hidden {
    display: block;
    transform: translateY(100%);
}

.network-card-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.2s ease;
}

.network-card-close:active {
    transform: scale(0.95);
    background: rgba(255, 255, 255, 0.15);
}

.network-card-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(100, 100, 110, 0.9), rgba(70, 70, 80, 0.85));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 8px auto 14px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.network-card-avatar.placeholder {
    background: linear-gradient(135deg, rgba(80, 80, 90, 0.9), rgba(60, 60, 70, 0.85));
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
}

@keyframes avatarGlow {
    0%, 100% { box-shadow: 0 0 30px rgba(102, 126, 234, 0.4); }
    50% { box-shadow: 0 0 40px rgba(102, 126, 234, 0.6); }
}

.network-card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.network-card-letter {
    font-size: 28px;
    font-weight: 600;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.network-card-info {
    text-align: center;
    margin-bottom: 16px;
}

.network-card-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: -0.5px;
}

.network-card-username {
    font-size: 14px;
    color: var(--hint-color);
    margin-bottom: 12px;
}

.network-card-role {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}

.network-card-deposit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 12px;
}

.network-deposit-icon {
    display: none;
}

.network-deposit-label {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
}

.network-deposit-value {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

@keyframes networkDepositGlow {
    0% { box-shadow: none; }
    100% { box-shadow: none; }
}

.network-card-quote {
    font-size: 13px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    padding: 0 16px;
    margin-bottom: 16px;
    line-height: 1.5;
    min-height: 0;
}

.network-card-quote:empty {
    display: none;
}

.network-card-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 12px;
}

.network-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.network-stat-value {
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, #fff, rgba(255,255,255,0.7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.network-stat-label {
    font-size: 11px;
    color: var(--hint-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.network-card-date {
    font-size: 12px;
    color: var(--hint-color);
}

.network-card-btn {
    width: 100%;
    margin-top: 12px;
    background: linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.06));
}

/* ==================== REVIEWS INSIDE TRUST CARD ==================== */
.trust-reviews {
    margin-top: 20px;
    margin-left: -24px;
    margin-right: -24px;
    padding: 0 20px;
    width: calc(100% + 48px);
    touch-action: pan-x;
    user-select: none;
    -webkit-user-select: none;
}

.review-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    color: var(--hint-color);
    font-size: 13px;
    font-style: italic;
}

.review-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: grab;
}

.review-item:active {
    cursor: grabbing;
}

.review-item.slide-left {
    animation: slideOutLeft 0.3s ease forwards;
}

.review-item.slide-right {
    animation: slideOutRight 0.3s ease forwards;
}

.review-item.slide-in-left {
    animation: slideInFromRight 0.3s ease forwards;
}

.review-item.slide-in-right {
    animation: slideInFromLeft 0.3s ease forwards;
}

@keyframes slideOutLeft {
    from { opacity: 1; transform: translateX(0); }
    to { opacity: 0; transform: translateX(-40px); }
}

@keyframes slideOutRight {
    from { opacity: 1; transform: translateX(0); }
    to { opacity: 0; transform: translateX(40px); }
}

@keyframes slideInFromRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInFromLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

.review-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(120, 120, 130, 0.7), rgba(80, 80, 90, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.review-avatar.anonymous {
    background: linear-gradient(135deg, rgba(70, 70, 80, 0.5), rgba(50, 50, 60, 0.4));
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-avatar-letter {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
}

.review-author-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.review-author-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.review-author-name:active {
    opacity: 0.7;
}

.review-author-name.anonymous {
    color: var(--hint-color);
    font-style: italic;
    pointer-events: none;
}

.review-date {
    font-size: 11px;
    color: var(--hint-color);
}

.review-text-wrap {
    position: relative;
}

.review-text {
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.92);
    padding: 14px 16px;
    
    /* Liquid glass button style - без анимаций */
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.12) 0%,
        rgba(255, 255, 255, 0.06) 50%,
        rgba(255, 255, 255, 0.03) 100%
    );
    
    /* Raised button effect */
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.25),
        0 2px 6px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1),
        0 0 20px rgba(255, 255, 255, 0.08);
    
    /* Text handling */
    word-wrap: break-word;
    overflow-wrap: break-word;
    
    /* Adaptive height - up to 3 lines */
    min-height: 24px;
    max-height: calc(1.5em * 3 + 28px);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

/* Top highlight for 3D effect */
.review-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 14px 14px 0 0;
    pointer-events: none;
}


/* ==================== SCAMMER VISUAL ==================== */

/* Red glow background for scammer profiles */
.scammer-bg .bg-blob-1,
.scammer-bg .bg-blob-2,
.scammer-bg .bg-blob-3,
.scammer-bg .bg-blob-4,
.scammer-bg .bg-blob-5 {
    background: radial-gradient(circle, rgba(255, 69, 58, 0.35) 0%, rgba(255, 69, 58, 0) 60%) !important;
}

/* Scammer header — red tint on glass */
.profile-header.scammer-header {
    border-color: rgba(255, 69, 58, 0.3);
    box-shadow: 
        0 0 40px rgba(255, 69, 58, 0.15),
        inset 0 0 30px rgba(255, 69, 58, 0.05);
}

/* ===== Scammer overlay — removed (tape disabled) ===== */
.scammer-overlay { display: none; }

/* ===== Scammer stat card — replaces positive/negative ===== */
.scammer-stats-section {
    position: relative;
    margin-bottom: 12px;
    overflow: hidden;
}

.scam-stat-card {
    padding: 24px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.scam-stat-indicator {
    width: 4px;
    height: 50px;
    border-radius: 2px;
    background: rgba(255, 69, 58, 0.9);
    box-shadow: 0 0 12px rgba(255, 69, 58, 0.6);
    flex-shrink: 0;
}

.scam-stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 69, 58, 0.15);
    flex-shrink: 0;
}

.scam-stat-icon svg {
    width: 26px;
    height: 26px;
    fill: rgba(255, 69, 58, 0.95);
    animation: scamPulse 2s ease-in-out infinite;
}

.scam-stat-value {
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4px;
    color: #ff453a;
}

.scam-stat-label {
    font-size: 12px;
    color: rgba(255, 69, 58, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== Scammer post link — replaces reviews ===== */
.scam-post-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    text-decoration: none;
    color: inherit;
    border-radius: 14px;
    background: linear-gradient(
        145deg,
        rgba(255, 69, 58, 0.12) 0%,
        rgba(255, 69, 58, 0.05) 50%,
        rgba(255, 69, 58, 0.02) 100%
    );
    border: 1px solid rgba(255, 69, 58, 0.2);
    transition: all 0.25s ease;
}

.scam-post-link:active {
    transform: scale(0.98);
    background: linear-gradient(
        145deg,
        rgba(255, 69, 58, 0.18) 0%,
        rgba(255, 69, 58, 0.08) 100%
    );
}

.scam-post-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 69, 58, 0.15);
    flex-shrink: 0;
}

.scam-post-icon svg {
    width: 20px;
    height: 20px;
    fill: #ff453a;
}

.scam-post-info {
    flex: 1;
    min-width: 0;
}

.scam-post-title {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3px;
}

.scam-post-subtitle {
    font-size: 12px;
    color: rgba(255, 69, 58, 0.7);
}

.scam-post-arrow {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    fill: rgba(255, 69, 58, 0.5);
}

/* Scammer role chip override */
.role-chip.scammer-role {
    background: linear-gradient(
        145deg,
        rgba(255, 69, 58, 0.25) 0%,
        rgba(255, 69, 58, 0.12) 50%,
        rgba(255, 69, 58, 0.06) 100%
    );
    border-color: rgba(255, 69, 58, 0.4);
    color: #ff453a;
    box-shadow:
        0 4px 16px rgba(255, 69, 58, 0.2),
        0 0 20px rgba(255, 69, 58, 0.1),
        inset 0 1px 0 rgba(255, 69, 58, 0.15);
}

/* Scammer avatar ring — red */
.scammer-header .avatar-ring {
    background: conic-gradient(from 0deg, 
        rgba(255, 69, 58, 0.1), 
        rgba(255, 69, 58, 0.4), 
        rgba(255, 69, 58, 0.8), 
        rgba(255, 69, 58, 1), 
        rgba(255, 69, 58, 0.8), 
        rgba(255, 69, 58, 0.4), 
        rgba(255, 69, 58, 0.1)
    );
}

.scammer-header .avatar-ring::after {
    background: conic-gradient(from 0deg, 
        transparent 0%, transparent 50%, 
        rgba(255, 69, 58, 0.4) 70%, 
        rgba(255, 69, 58, 0.6) 75%, 
        rgba(255, 69, 58, 0.4) 80%, 
        transparent 100%
    );
}

/* ==================== LANDING PAGE ==================== */

.landing-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 40px 24px;
    gap: 32px;
    animation: landingFadeIn 0.8s ease-out;
}

@keyframes landingFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.landing-logo {
    text-align: center;
    user-select: none;
}

.landing-logo-text {
    font-family: 'Zvezda', 'SF Pro Display', -apple-system, sans-serif;
    font-size: 48px;
    font-weight: bold;
    font-style: italic;
    color: #fff;
    letter-spacing: 2px;
}

.landing-logo-accent {
    font-family: 'Medium', 'SF Pro Display', -apple-system, sans-serif;
    font-size: 48px;
    font-weight: normal;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 2px;
    margin-left: 4px;
}

.landing-terminal {
    width: 100%;
    max-width: 400px;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.terminal-header {
    display: flex;
    gap: 6px;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.terminal-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}

.terminal-dot:first-child { background: rgba(255, 69, 58, 0.6); }
.terminal-dot:nth-child(2) { background: rgba(255, 214, 10, 0.6); }
.terminal-dot:nth-child(3) { background: rgba(48, 209, 88, 0.6); }

.terminal-body {
    padding: 20px 16px;
    min-height: 80px;
    line-height: 1.6;
    word-break: break-word;
}

.terminal-line {
    font-family: 'SF Mono', 'Menlo', 'Consolas', monospace;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
}

.terminal-cursor {
    font-family: 'SF Mono', 'Menlo', 'Consolas', monospace;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    animation: cursorBlink 0.8s step-end infinite;
    vertical-align: baseline;
}

@keyframes cursorBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* ==================== LANDING NETWORK BUTTON ==================== */

.landing-network-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.03) 50%,
        rgba(255, 255, 255, 0.06) 100%
    );
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Medium', 'SF Pro Display', -apple-system, sans-serif;
    font-size: 15px;
    letter-spacing: 0.5px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-tap-highlight-color: transparent;
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.3),
        0 1px 3px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.landing-network-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    pointer-events: none;
}

.landing-network-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(
        105deg,
        transparent 40%,
        rgba(255, 255, 255, 0.06) 45%,
        rgba(255, 255, 255, 0.12) 50%,
        rgba(255, 255, 255, 0.06) 55%,
        transparent 60%
    );
    background-size: 250% 100%;
    animation: glassShimmer 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes glassShimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.landing-btn-glow {
    display: none;
}

.landing-network-btn:hover {
    border-color: rgba(255, 255, 255, 0.22);
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.11) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0.08) 100%
    );
    box-shadow:
        0 6px 32px rgba(0, 0, 0, 0.35),
        0 1px 3px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    color: rgba(255, 255, 255, 0.95);
}

.landing-network-btn:active {
    transform: scale(0.97);
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.14) 0%,
        rgba(255, 255, 255, 0.06) 50%,
        rgba(255, 255, 255, 0.10) 100%
    );
    box-shadow:
        0 2px 12px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        inset 0 -1px 0 rgba(0, 0, 0, 0.15);
}

.landing-btn-icon {
    width: 20px;
    height: 20px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
}

.landing-network-btn:active .landing-btn-icon {
    opacity: 1;
}

.landing-btn-text {
    position: relative;
    z-index: 1;
}
