:root {
    --bg-color: #030305;
    --text-main: #ffffff;
    --text-muted: #64748b;
    --accent-blue: #00f2fe;
    --accent-purple: #4facfe;
    --card-bg: rgba(13, 13, 18, 0.6);
    --border-color: rgba(255, 255, 255, 0.05);
    --neon-glow: rgba(0, 242, 254, 0.15);
    --ton-blue: #0098ea;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 40px 20px;
    position: relative;
    overflow-x: hidden;
}
body::before {
    content: "";
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background-image:
        linear-gradient(rgba(0, 242, 254, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 242, 254, 0.02) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 1;
    pointer-events: none;
}
body::after {
    content: "";
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(79, 172, 254, 0.08) 0%, transparent 70%);
    z-index: 2;
    pointer-events: none;
}
.container {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 460px;
    width: 100%;
    animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.avatar-container {
    position: relative;
    width: 170px;
    height: 170px;
    margin: 0 auto 32px auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.avatar-container::before, .avatar-container::after {
    content: "";
    position: absolute;
    width: 12px; height: 12px;
    border: 2px solid var(--accent-blue);
    z-index: 3;
    opacity: 0.6;
}
.avatar-container::before { top: -4px; left: -4px; border-right: 0; border-bottom: 0; }
.avatar-container::after { bottom: -4px; right: -4px; border-left: 0; border-top: 0; }
.avatar-border {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 50%;
    border: 1px dashed rgba(0, 242, 254, 0.3);
    padding: 6px;
    box-shadow: inset 0 0 15px var(--neon-glow), 0 0 15px var(--neon-glow);
    animation: fast-spin 2s cubic-bezier(0.22, 1, 0.36, 1) forwards, slow-spin 20s linear infinite 2s;
}
.avatar-border::after {
    content: "";
    position: absolute;
    top: -2px; left: 50%;
    width: 8px; height: 8px;
    background: var(--accent-blue);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--accent-blue);
}
.avatar-img {
    width: 146px; height: 146px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background-color: #0d0d12;
    z-index: 5;
}
.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    text-align: left;
}
.profile-section {
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.nickname {
    font-size: 1.85rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #ffffff 40%, #a5b4fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 6px;
}
.username {
    font-size: 0.95rem;
    color: var(--accent-purple);
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
    font-weight: 600;
}
.username:hover {
    color: var(--accent-blue);
    text-shadow: 0 0 8px rgba(0, 242, 254, 0.5);
}
.username::before { content: "@"; }
.description { font-size: 0.95rem; line-height: 1.6; color: #94a3b8; }
.description p { margin-bottom: 14px; }
.description p:last-child { margin-bottom: 0; }
.highlight { color: #f8fafc; font-weight: 600; }
.crypto-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: rgba(0, 152, 234, 0.04);
    border: 1px solid rgba(0, 152, 234, 0.15);
}
.crypto-info {
    display: flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
    width: 100%;
}
.crypto-icon {
    width: 24px; height: 24px;
    fill: var(--ton-blue);
    flex-shrink: 0;
}
.crypto-address-wrapper {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    text-align: left;
}
.crypto-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--ton-blue);
    font-weight: 700;
    margin-bottom: 2px;
}
.crypto-address {
    font-family: monospace;
    font-size: 0.85rem;
    color: #e2e8f0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.copy-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #94a3b8;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}
.copy-btn:hover {
    background: var(--ton-blue);
    border-color: var(--ton-blue);
    color: #fff;
    box-shadow: 0 0 10px rgba(0, 152, 234, 0.3);
}
.future-tag {
    text-align: center;
    margin: 24px 0;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--text-muted);
    font-weight: 700;
    position: relative;
}
.future-tag::before, .future-tag::after {
    content: ""; position: absolute; top: 50%; width: 40px; height: 1px; background: rgba(255, 255, 255, 0.05);
}
.future-tag::before { left: 15px; }
.future-tag::after { right: 15px; }
.server-status-box {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.server-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    margin-bottom: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.server-row {
    display: flex; justify-content: space-between; align-items: center; font-size: 0.9rem; padding: 10px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
.server-row:last-child { border-bottom: none; padding-bottom: 0; }
.server-row:first-of-type { padding-top: 0; }
.server-name { color: #cbd5e1; display: flex; align-items: center; gap: 10px; }
.status-dot {
    width: 6px; height: 6px; background-color: #06b6d4; border-radius: 50%; display: inline-block; box-shadow: 0 0 8px #06b6d4;
}
.ping-value {
    font-family: ui-monospace, monospace; color: var(--accent-blue); font-weight: 600; font-size: 0.85rem; background: rgba(0, 242, 254, 0.05); padding: 3px 8px; border-radius: 6px; border: 1px solid rgba(0, 242, 254, 0.1);
}
.ping-value.offline { color: #ef4444; background: rgba(239, 68, 68, 0.05); border-color: rgba(239, 68, 68, 0.1); }
@keyframes fast-spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(720deg); } }
@keyframes slow-spin { 0% { transform: rotate(720deg); } 100% { transform: rotate(1080deg); } }
@keyframes fadeIn { from { opacity: 0; transform: scale(0.97) translateY(12px); } to { opacity: 1; transform: scale(1) translateY(0); } }
