
:root {
    --purple-300: #c4b5fd;
    --purple-400: #a78bfa;
    --purple-500: #8b5cf6;
    --purple-600: #7c3aed;
    --purple-700: #6d28d9;
    --purple-800: #5b21b6;
    --purple-900: #4c1d95;
    --purple-950: #2e1065;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --green-400: #4ade80;
    --green-500: #22c55e;
    --white: #ffffff;
    --black: #000000;
}

.loading-screen {
    position: fixed;
    inset: 0;
    background: #000000;
    color: #ffffff;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 2rem;
    padding-top: 5rem;
    gap: 2rem;
}

.loading-bg {
    position: absolute;
    inset: 0;
    background: #000000;
    overflow: hidden;
}

.loading-matrix {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.loading-matrix .matrix-column {
    position: absolute;
    top: -100%;
    font-family: "SFMono-Regular", Menlo, Monaco, Consolas, "Courier New", monospace;
    font-size: 18px;
    line-height: 1.5;
    color: rgba(139, 92, 246, 0.4);
    letter-spacing: 0.1em;
    white-space: pre;
    text-shadow: 0 0 5px rgba(139, 92, 246, 0.8);
    animation: matrixRain linear infinite;
}

.loading-matrix .matrix-canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.4;
    pointer-events: none;
}

@keyframes matrixRain {
    from {
        transform: translateY(0);
        opacity: 0;
    }
    5% {
        opacity: 1;
    }
    95% {
        opacity: 1;
    }
    to {
        transform: translateY(150vh);
        opacity: 0;
    }
}

.loading-screen::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(139, 92, 246, 0.03) 2px,
        rgba(139, 92, 246, 0.03) 4px
    );
    pointer-events: none;
    z-index: 10;
}

.loading-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    z-index: 20;
    font-family: "SFMono-Regular", Menlo, Monaco, Consolas, "Courier New", monospace;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.sys-active {
    font-size: 0.75rem;
    color: var(--purple-400);
    text-shadow: 
        0 0 10px rgba(139, 92, 246, 1),
        0 0 20px rgba(139, 92, 246, 1);
    letter-spacing: 0.1em;
}

.header-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    color: var(--purple-400);
    text-shadow: 
        0 0 10px rgba(139, 92, 246, 1),
        0 0 20px rgba(139, 92, 246, 1);
    flex-wrap: wrap;
    max-width: 100%;
}

.ip-info {
    color: var(--purple-400);
}

.ip-blocks {
    display: flex;
    gap: 0.25rem;
}

.ip-block {
    width: 8px;
    height: 12px;
    background-color: var(--purple-500);
    box-shadow: 0 0 5px rgba(139, 92, 246, 1);
    animation: ipBlockPulse 1.5s ease-in-out infinite;
}

.ip-block:nth-child(2) {
    animation-delay: 0.3s;
}

@keyframes ipBlockPulse {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 5px rgba(139, 92, 246, 1);
    }
    50% {
        opacity: 0.5;
        box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
    }
}

.status-info {
    color: var(--purple-400);
}

.status-online {
    color: var(--purple-400);
    text-shadow: 
        0 0 10px rgba(139, 92, 246, 1),
        0 0 20px rgba(139, 92, 246, 1);
}

.time-info {
    color: var(--purple-400);
    text-shadow: 
        0 0 10px rgba(139, 92, 246, 1),
        0 0 20px rgba(139, 92, 246, 1);
    font-family: "SFMono-Regular", Menlo, Monaco, Consolas, "Courier New", monospace;
}

.header-divider {
    position: absolute;
    top: 3.5rem;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(139, 92, 246, 0.5);
    z-index: 20;
    box-shadow: 0 0 5px rgba(139, 92, 246, 0.3);
}

.loading-header {
    opacity: 1;
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.cyber-header {
    position: relative;
    z-index: 10;
    text-align: center;
    animation: fadeInDown 1s ease-out;
}

.cyber-title-ascii {
    font-size: 0.75rem;
    line-height: 1;
    color: var(--purple-400);
    text-shadow: 
        0 0 10px rgba(139, 92, 246, 1),
        0 0 20px rgba(139, 92, 246, 1),
        0 0 40px rgba(139, 92, 246, 1);
    margin: 0 auto 1rem;
    padding: 0;
    font-family: "SFMono-Regular", Menlo, Monaco, Consolas, "Courier New", monospace;
    white-space: pre;
    text-align: center;
    animation: titleGlow 2s ease-in-out infinite;
    letter-spacing: 0;
    background: transparent;
    border: none;
}

.cyber-title {
    font-size: 5.5rem;
    font-weight: 900;
    color: var(--purple-400);
    text-shadow: 
        0 0 10px rgba(139, 92, 246, 1),
        0 0 20px rgba(139, 92, 246, 1),
        0 0 30px rgba(139, 92, 246, 1),
        0 0 40px rgba(139, 92, 246, 1);
    letter-spacing: 0.2em;
    margin-bottom: 0.5rem;
    font-family: "SFMono-Regular", Menlo, Monaco, Consolas, monospace;
    text-transform: uppercase;
    animation: titleGlow 2s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% {
        text-shadow: 
            0 0 10px rgba(139, 92, 246, 1),
            0 0 20px rgba(139, 92, 246, 1),
            0 0 40px rgba(139, 92, 246, 1);
    }
    50% {
        text-shadow: 
            0 0 15px rgba(139, 92, 246, 1),
            0 0 30px rgba(139, 92, 246, 1),
            0 0 60px rgba(139, 92, 246, 1);
    }
}

.cyber-subtitle {
    font-size: 1.25rem;
    color: var(--purple-400);
    letter-spacing: 0.3em;
    margin: 0.5rem 0;
    font-weight: 500;
    text-shadow: 
        0 0 10px rgba(139, 92, 246, 1),
        0 0 20px rgba(139, 92, 246, 1),
        0 0 40px rgba(139, 92, 246, 1);
    font-family: "SFMono-Regular", Menlo, Monaco, Consolas, "Courier New", monospace;
    animation: subtitleFade 1.5s ease-out 0.5s both;
}

.cyber-access {
    font-size: 0.75rem;
    color: rgba(139, 92, 246, 0.5);
    letter-spacing: 0.2em;
    text-shadow: none;
    font-family: "SFMono-Regular", Menlo, Monaco, Consolas, monospace;
    animation: accessFade 1.5s ease-out 0.8s both;
    margin: 0;
}

@keyframes subtitleFade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes accessFade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.loading-shell {
    position: relative;
    z-index: 10;
    width: min(800px, 90vw);
    animation: terminalSlideIn 1s ease-out 0.3s both;
}

@keyframes terminalSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.loading-terminal {
    background: hsl(0, 0%, 4%);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 0;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
    overflow: hidden;
    backdrop-filter: none;
    animation: terminalGlow 3s ease-in-out infinite;
}

@keyframes terminalGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
        border-color: rgba(139, 92, 246, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(139, 92, 246, 0.4);
        border-color: rgba(139, 92, 246, 0.5);
    }
}

.terminal-topbar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-bottom: 1px solid hsl(120, 100%, 20%);
    background: transparent;
}

.terminal-dots {
    display: flex;
    gap: 0.4rem;
}

.terminal-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
    transition: opacity 0.2s ease;
}

.terminal-dots .dot:hover {
    opacity: 0.8;
}

.terminal-dots .red { 
    background: #ff5f57; 
    box-shadow: 0 0 0 0.5px rgba(0, 0, 0, 0.1);
}
.terminal-dots .yellow { 
    background: #ffbd2e; 
    box-shadow: 0 0 0 0.5px rgba(0, 0, 0, 0.1);
}
.terminal-dots .green { 
    background: #28ca42; 
    box-shadow: 0 0 0 0.5px rgba(0, 0, 0, 0.1);
}

.terminal-title {
    font-family: "SFMono-Regular", Menlo, Monaco, Consolas, monospace;
    font-size: 0.75rem;
    color: rgba(139, 92, 246, 0.5);
    font-weight: 400;
    text-shadow: none;
    margin-left: 1rem;
}

.terminal-body {
    padding: 1rem;
    font-family: "SFMono-Regular", Menlo, Monaco, Consolas, monospace;
    background: hsl(0, 0%, 4%);
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    text-align: center;
}

.terminal-line {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0;
    transform: translateX(-20px);
    animation: typeIn 0.5s ease-out forwards;
    text-align: center;
    width: 100%;
}

.terminal-line.muted { 
    color: #ffffff; 
}
.terminal-line.ok { 
    color: var(--purple-400); 
    text-shadow: 0 0 5px rgba(139, 92, 246, 0.5);
}
.terminal-line.warn { 
    color: #ffaa00; 
    text-shadow: 0 0 5px rgba(255, 170, 0, 0.5);
}

.terminal-cursor {
    font-size: 0.95rem;
    color: var(--purple-400);
    animation: cursorBlink 1s step-end infinite;
    margin-top: 0.5rem;
    opacity: 0;
    display: inline-block;
    width: 8px;
    height: 1.2em;
    background-color: var(--purple-400);
    vertical-align: middle;
}

@keyframes cursorBlink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

@keyframes typeIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

.cyber-buttons {
    position: relative;
    z-index: 10;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 3.5s both;
}

.cyber-btn {
    background: transparent;
    color: var(--purple-400);
    border: 1px solid var(--purple-500);
    border-radius: 0;
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    cursor: pointer;
    font-family: "SFMono-Regular", Menlo, Monaco, Consolas, monospace;
    font-size: 0.9rem;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.8);
    box-shadow: none;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: buttonAppear 0.6s ease-out forwards;
}

@keyframes buttonAppear {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cyber-btn:hover {
    background: var(--purple-500);
    color: #000000;
    box-shadow: none;
    transform: translateY(-1px);
}

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

.cyber-stats {
    position: relative;
    z-index: 10;
    display: flex;
    gap: 3rem;
    opacity: 0;
    animation: statsAppear 1s ease-out 4s both;
    flex-wrap: wrap;
    justify-content: center;
}

@keyframes statsAppear {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-block {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    text-align: center;
    padding: 0.5rem 0.875rem;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(139, 92, 246, 0.6);
    border-radius: 1.25rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.stat-block .stat-icon {
    width: 16px;
    height: 16px;
    color: var(--purple-400);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-block .stat-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 2.5;
}

.stat-block .stat-value {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--white);
    text-shadow: none;
    font-family: "SFMono-Regular", Menlo, Monaco, Consolas, monospace;
    margin: 0;
    letter-spacing: 0.5px;
    animation: none;
}

@keyframes statPulse {
    0%, 100% {
        text-shadow: 
            0 0 10px rgba(139, 92, 246, 1),
            0 0 20px rgba(139, 92, 246, 1);
    }
    50% {
        text-shadow: 
            0 0 15px rgba(139, 92, 246, 1),
            0 0 25px rgba(139, 92, 246, 1),
            0 0 35px rgba(139, 92, 246, 1);
    }
}

.stat-block .stat-label {
    display: none;
}

.cyber-footer {
    position: absolute;
    bottom: 1.2rem;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.footer-left,
.footer-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    max-width: 100%;
}

.footer-icon {
    width: 8px;
    height: 8px;
    display: inline-block;
    color: var(--purple-400);
    text-shadow: 0 0 5px rgba(139, 92, 246, 0.8);
    font-size: 0.75rem;
    line-height: 1;
    flex-shrink: 0;
}

.footer-text {
    font-size: 0.75rem;
    color: var(--purple-400);
    letter-spacing: 0.1em;
    text-shadow: 0 0 5px rgba(139, 92, 246, 0.5);
    font-family: "SFMono-Regular", Menlo, Monaco, Consolas, monospace;
    animation: footerPulse 3s ease-in-out infinite;
    line-height: 1;
    display: inline-block;
}

@keyframes footerPulse {
    0%, 100% {
        text-shadow: 0 0 5px rgba(139, 92, 246, 0.5);
    }
    50% {
        text-shadow: 0 0 10px rgba(139, 92, 246, 0.8), 0 0 15px rgba(139, 92, 246, 0.5);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .cyber-title {
        font-size: 3rem;
    }
    
    .cyber-title-ascii {
        font-size: 0.5rem;
        max-width: 100%;
        overflow-x: auto;
        padding: 0 0.5rem;
        transform: scale(0.85);
        transform-origin: center;
    }
    
    .cyber-header {
        padding: 0 1rem;
    }
    
    .cyber-subtitle {
        font-size: 1rem;
    }
    
    .cyber-access {
        font-size: 0.75rem;
    }
    
    .loading-shell {
        width: 95vw;
    }
    
    .terminal-body {
        padding: 1rem 0.75rem;
        min-height: 240px;
    }
    
    .terminal-line {
        font-size: 0.85rem;
    }
    
    .cyber-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 90%;
    }
    
    .cyber-btn {
        width: 100%;
        padding: 0.75rem 1.5rem;
        font-size: 0.8rem;
    }
    
    .cyber-stats {
        display: none !important;
    }
    
    .footer-text {
        font-size: 0.65rem;
    }
    
    .header-info {
        flex-wrap: wrap;
        gap: 0.5rem;
        font-size: 0.65rem;
    }
    
    .loading-header {
        padding: 0.75rem 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .sys-active {
        font-size: 0.7rem;
    }
    
    .status-info,
    .time-info {
        font-size: 0.6rem;
    }
    
    .cyber-footer {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0 1rem;
        align-items: center;
        text-align: center;
    }
    
    .footer-left,
    .footer-right {
        justify-content: center;
        width: 100%;
    }
    
    .footer-text {
        font-size: 0.6rem;
    }
}

@media (max-width: 720px) {
    .loading-terminal {
        border-radius: 12px;
    }
    .terminal-body {
        font-size: 0.9rem;
    }
    .terminal-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    .loading-start-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .cyber-title-ascii {
        font-size: 0.4rem;
        transform: scale(0.75);
    }
    
    .loading-screen {
        padding: 1rem;
        padding-top: 4rem;
    }
    
    .cyber-stats {
        display: none !important;
    }
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    border: none;
}

html {
    margin: 0;
    padding: 0;
    border: none;
}

* {
    box-sizing: border-box;
}

body > *:first-child:not(#loadingScreen):not(#backgroundCanvas):not(.background-particles) {
    border-top: none !important;
}

[class*="nav"],
[class*="navbar"],
[class*="header"] {
    border-top: none !important;
    border-bottom: none !important;
}

.background-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.background-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    background: radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
}

#mainContent {
    position: relative;
    z-index: 2;
}

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--black);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
    display: none !important;
    visibility: hidden !important;
    z-index: -1 !important;
}

.loading-background {
    position: absolute;
    inset: 0;
    perspective: 1000px;
}

.loading-grid-3d {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(139, 92, 246, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.1) 1px, transparent 1px);
    background-size: 80px 80px;
    transform: translateY(50%) rotateX(60deg);
    transform-style: preserve-3d;
    animation: grid3dMove 2s ease-out;
    display: none;
}

@media (min-width: 768px) {
    .loading-grid-3d {
        display: block;
    }
}

@keyframes grid3dMove {
    from {
        transform: translateY(50%) rotateX(60deg) translateZ(-500px);
    }
    to {
        transform: translateY(50%) rotateX(60deg) translateZ(0);
    }
}

.loading-grid-mobile {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 70%),
        linear-gradient(rgba(139, 92, 246, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.05) 1px, transparent 1px);
    background-size: 100% 100%, 40px 40px, 40px 40px;
    opacity: 0;
    animation: fadeIn 1.5s ease forwards;
    display: block;
}

@media (min-width: 768px) {
    .loading-grid-mobile {
        display: none;
    }
}

.loading-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: var(--purple-500);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.8);
    animation: particleFloat 3s linear infinite;
}

@keyframes particleFloat {
    from {
        transform: translateY(100vh);
        opacity: 0;
    }
    50% {
        opacity: 0.6;
    }
    to {
        transform: translateY(-50px);
        opacity: 0;
    }
}

.loading-scanline {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(139, 92, 246, 0.3) 50%,
        rgba(139, 92, 246, 0.3) 50.5%,
        transparent 51%
    );
    animation: scanlineMove 3s linear infinite;
    pointer-events: none;
}

@keyframes scanlineMove {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 0 100vh;
    }
}

.loading-content {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90vw;
    max-width: 600px;
    height: 60vh;
    max-height: 400px;
}

.loading-box {
    position: relative;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(139, 92, 246, 0.5);
    border-radius: 0.5rem;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
    animation: boxAppear 1s ease-out;
    overflow: hidden;
}

@keyframes boxAppear {
    from {
        transform: scale(0.5) rotateY(-180deg);
        opacity: 0;
    }
    to {
        transform: scale(1) rotateY(0);
        opacity: 1;
    }
}

.loading-corners {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.corner {
    position: absolute;
    width: 2rem;
    height: 2rem;
    border: 4px solid var(--purple-500);
}

@media (min-width: 768px) {
    .corner {
        width: 2.5rem;
        height: 2.5rem;
    }
}

.corner-tl {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

.corner-tr {
    top: 0;
    right: 0;
    border-left: none;
    border-bottom: none;
}

.corner-bl {
    bottom: 0;
    left: 0;
    border-right: none;
    border-top: none;
}

.corner-br {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}

.loading-inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

@media (min-width: 768px) {
    .loading-inner {
        padding: 3rem;
    }
}

.loading-header {
    margin-bottom: 1.5rem;
    text-align: center;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.loading-title {
    font-size: 2rem;
    font-weight: bold;
    background: linear-gradient(to right, var(--purple-400), rgba(200, 181, 255, 1), var(--white));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .loading-title {
        font-size: 3rem;
    }
}

.loading-subtitle {
    color: var(--purple-300);
    font-size: 0.75rem;
    text-align: center;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .loading-subtitle {
        font-size: 0.875rem;
        letter-spacing: 0.3em;
    }
}

.loading-status {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 768px) {
    .loading-status {
        gap: 1.5rem;
    }
}

.status-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.625rem;
    color: var(--purple-400);
    font-family: monospace;
    animation: fadeInLeft 0.8s ease-out 0.8s both;
}

@media (min-width: 768px) {
    .status-line {
        font-size: 0.75rem;
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.status-online {
    color: var(--green-400);
}

.progress-container {
    animation: fadeIn 1s ease-out 1s both;
}

.progress-label {
    font-size: 0.625rem;
    color: var(--purple-400);
    font-family: monospace;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .progress-label {
        font-size: 0.75rem;
    }
}

.progress-bar {
    height: 0.5rem;
    background-color: rgba(46, 16, 101, 0.5);
    border-radius: 9999px;
    overflow: hidden;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(to right, var(--purple-600), var(--purple-500), var(--purple-400));
    border-radius: 9999px;
    width: 0%;
    transition: width 0.1s linear;
    position: relative;
    overflow: hidden;
}

.progress-fill::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: progressShine 2s linear infinite;
}

@keyframes progressShine {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.loading-message {
    font-size: 0.625rem;
    color: var(--purple-300);
    font-family: monospace;
    text-align: center;
    animation: pulse 2s ease-in-out infinite 1.2s;
}

@media (min-width: 768px) {
    .loading-message {
        font-size: 0.75rem;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
}

.loading-border {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.border-line {
    stroke: rgba(139, 92, 246, 0.5);
    stroke-width: 1;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    vector-effect: non-scaling-stroke;
}

.line-1 {
    animation: drawLine 1.5s ease-in-out forwards;
}

.line-2 {
    animation: drawLine 1.5s ease-in-out 0.2s forwards;
}

.line-3 {
    animation: drawLine 1.5s ease-in-out 0.4s forwards;
}

.line-4 {
    animation: drawLine 1.5s ease-in-out 0.6s forwards;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

.loading-circles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.loading-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 50%;
}

.circle-1 {
    width: 120vw;
    max-width: 700px;
    height: 120vw;
    max-height: 700px;
    animation: rotate 10s linear infinite;
}

.circle-2 {
    width: 140vw;
    max-width: 800px;
    height: 140vw;
    max-height: 800px;
    border-color: rgba(139, 92, 246, 0.1);
    animation: rotate 15s linear infinite reverse;
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.loading-start {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    pointer-events: all;
    z-index: 25;
}

.loading-start-btn {
    padding: 0.75rem 1.75rem;
    border-radius: 999px;
    border: 1px solid var(--purple-500);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(124, 58, 237, 0.4));
    color: var(--white);
    font-weight: 700;
    letter-spacing: 0.1em;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.loading-start-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
}

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

.loading-start-btn:disabled,
.loading-start-btn.loading-start-btn-active {
    opacity: 0.7;
    cursor: default;
}

.loading-info {
    position: absolute;
    inset: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    pointer-events: none;
    z-index: 20;
}

.loading-info.inactive {
    display: none;
}

.info-left,
.info-right {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.info-item {
    font-size: 0.75rem;
    color: var(--purple-400);
    font-family: monospace;
    opacity: 0;
    animation: fadeInSide 0.5s ease-out forwards;
}

.info-item:nth-child(1) {
    animation-delay: 0.5s;
}

.info-item:nth-child(2) {
    animation-delay: 0.8s;
}

.info-item:nth-child(3) {
    animation-delay: 1.1s;
}

.info-right .info-item:nth-child(1) {
    animation-delay: 0.6s;
}

.info-right .info-item:nth-child(2) {
    animation-delay: 0.9s;
}

@keyframes fadeInSide {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.info-right {
    text-align: right;
}

.info-right .info-item {
    animation-name: fadeInSideRight;
}

@keyframes fadeInSideRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.status-encrypted {
    color: var(--green-400);
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--purple-500);
    outline-offset: 2px;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--purple-600);
    color: var(--white);
    padding: 0.5rem 1rem;
    text-decoration: none;
    z-index: 1000;
    border-radius: 0 0 0.5rem 0;
        opacity: 0;
    pointer-events: none;
    }

.skip-link:focus {
    top: 0;
        opacity: 1;
    pointer-events: auto;
}

.landing-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
        opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    pointer-events: auto;
    cursor: pointer;
    overflow: hidden;
}

.landing-page.hidden {
        opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.landing-ocean {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
}

.ocean-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.ocean-particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.ocean-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(139, 92, 246, 0.6);
    border-radius: 50%;
    opacity: 0.7;
    animation: floatParticle 8s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.8);
}

@keyframes floatParticle {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) translateX(10px);
        opacity: 0.8;
    }
}

.landing-content {
    position: relative;
    z-index: 10;
    text-align: center;
    animation: fadeIn 1s ease-out;
    pointer-events: none;
}

.landing-reveal-text {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: pulseText 2s ease-in-out infinite;
    cursor: pointer;
    pointer-events: auto;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 1) 0%,
        var(--purple-400) 50%,
        rgba(255, 255, 255, 1) 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulseText 2s ease-in-out infinite, waveGradient 3s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}

@media (min-width: 768px) {
    .landing-reveal-text {
        font-size: 2.5rem;
    }
}

@keyframes pulseText {
    0%, 100% {
        opacity: 0.8;
        filter: brightness(1);
    }
    50% {
        opacity: 1;
        filter: brightness(1.2);
    }
}

.bio-container {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
    max-width: 600px;
    margin: 0 auto;
    border-top: none !important;
}

body::before,
body::after,
html::before,
html::after,
#mainContent::before,
#mainContent::after {
    display: none !important;
    content: none !important;
    border: none !important;
}

.bio-hero {
    text-align: center;
    margin-top: 0;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out;
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.bio-hero .bio-avatar-container {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.bio-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.7));
    border: 2px solid rgba(139, 92, 246, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.38);
    overflow: hidden;
}

.bio-avatar:hover {
    transform: scale(1.05);
    box-shadow: 0 0 26px rgba(139, 92, 246, 0.5);
    border-color: rgba(139, 92, 246, 0.9);
}

.bio-avatar svg {
    width: 60px;
    height: 60px;
    color: var(--purple-400);
}

.bio-avatar::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.35) 0%, rgba(139, 92, 246, 0.08) 60%, transparent 75%);
    mix-blend-mode: screen;
    opacity: 0.95;
    animation: pulseRing 3.5s ease-in-out infinite;
    pointer-events: none;
    filter: blur(0.5px);
}

.bio-avatar-glow {
    display: none;
}

@keyframes pulseRing {
    0%, 100% {
        transform: scale(1);
        opacity: 0.9;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.65;
    }
}

.bio-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--white);
    margin: 0 auto 0.5rem;
    text-align: center;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 1) 0%,
        rgba(200, 181, 255, 1) 50%,
        rgba(255, 255, 255, 1) 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: waveGradient 3s ease-in-out infinite;
    width: 100%;
}

@keyframes waveGradient {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@media (min-width: 768px) {
    .bio-title {
        font-size: 3rem;
    }
}

.bio-top-message {
    text-align: center;
    font-size: 0.875rem;
    color: var(--purple-300);
    margin-bottom: 1rem;
    padding: 0.5rem;
    opacity: 0.8;
    animation: fadeInDown 0.6s ease-out;
}

.bio-banner-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bio-banner {
    display: none;
}

.bio-banner {
    width: 100%;
    height: 200px;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(139, 92, 246, 0.3);
    animation: fadeInUp 0.8s ease-out 0.2s both;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(46, 16, 101, 0.4));
}

.bio-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bio-stats-top {
    position: absolute;
    top: 1rem;
    right: -2rem;
    display: flex;
    gap: 0.85rem;
    z-index: 10;
    animation: fadeInUp 0.8s ease-out 0.3s both;
    align-items: center;
}

.bio-stat-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.5rem 0.875rem;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(139, 92, 246, 0.6);
    border-radius: 1.25rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.bio-stat-badge:hover {
    border-color: rgba(139, 92, 246, 0.8);
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-1px);
}

.stat-icon {
    width: 16px;
    height: 16px;
    color: var(--purple-400);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
}

.stat-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 2.5;
}

.stat-value {
    font-size: 0.8125rem;
    color: var(--white);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.bio-banner-wrapper .bio-avatar-container {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    z-index: 10;
}

.bio-icon-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin: 0.75rem auto;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    width: 100%;
}

.icon-badge-item {
    position: relative;
    width: 32px;
    height: 32px;
    color: var(--purple-400);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.icon-badge-item:hover {
    color: var(--purple-300);
    transform: scale(1.1);
}

.icon-badge-item svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.icon-badge-item::after {
    content: attr(data-label);
    position: absolute;
    bottom: 130%;
    left: 50%;
    transform: translate(-50%, 4px);
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    padding: 0.2rem 0.7rem;
    border-radius: 999px;
    font-size: 0.65rem;
    letter-spacing: 0.03em;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
}

.icon-badge-item:hover::after {
    opacity: 1;
    transform: translate(-50%, -6px);
}

.bio-single-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin: 0.5rem auto;
    animation: fadeInUp 0.8s ease-out 0.5s both;
    width: 100%;
}

.single-tag-item {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: transparent;
    border: 1px solid rgba(139, 92, 246, 0.5);
    border-radius: 1.5rem;
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: default;
}

.single-tag-item:hover {
    border-color: rgba(139, 92, 246, 0.7);
    background: rgba(139, 92, 246, 0.1);
}

.bio-description {
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray-300);
    margin: 1.2rem auto 0.5rem;
    padding: 0 1rem;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    max-width: 500px;
}

.bio-content-box {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(to bottom right, rgba(46, 16, 101, 0.2), rgba(0, 0, 0, 0.4));
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.bio-tags {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.bio-tag {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    background: rgba(46, 16, 101, 0.3);
    border: 1px solid rgba(139, 92, 246, 0.4);
    border-radius: 0.5rem;
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: default;
}

.bio-tag:hover {
    background: rgba(46, 16, 101, 0.5);
    border-color: rgba(139, 92, 246, 0.6);
    transform: translateY(-2px);
}

.bio-sections {
    margin: 1.5rem auto;
    animation: fadeInUp 0.8s ease-out 0.6s both;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.bio-section {
    text-align: center;
    margin: 0.75rem auto;
    padding: 0.5rem;
    width: 100%;
}

.bio-section-title {
    font-size: 0.875rem;
    color: var(--white);
    font-weight: 500;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.bio-section-location-icon {
    width: 16px;
    height: 16px;
    color: var(--purple-400);
    flex-shrink: 0;
}

.bio-section-location-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.bio-section-content {
    font-size: 0.75rem;
    color: var(--gray-400);
}

.music-controller {
    max-width: 400px;
    margin: 2rem auto;
    padding: 1rem;
    background: rgba(46, 16, 101, 0.2);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.music-controller:hover {
    border-color: rgba(139, 92, 246, 0.5);
    background: rgba(46, 16, 101, 0.3);
}

.music-player {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.music-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid rgba(139, 92, 246, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--purple-400);
    flex-shrink: 0;
}

.music-btn:hover {
    background: rgba(139, 92, 246, 0.3);
    border-color: rgba(139, 92, 246, 0.6);
    transform: scale(1.1);
}

.music-icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

.music-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
    min-width: 0;
}

.music-title {
    font-size: 0.875rem;
    color: var(--white);
    font-weight: 500;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.music-time {
    font-size: 0.75rem;
    color: var(--gray-400);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.music-progress {
    width: 100%;
    height: 4px;
    background: rgba(139, 92, 246, 0.2);
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
}

.music-progress-bar {
    width: 100%;
    height: 100%;
    position: relative;
}

.music-progress-fill {
    height: 100%;
    background: rgba(139, 92, 246, 0.6);
    width: 0%;
    transition: width 0.1s linear;
}

.bio-links {
    width: 100%;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.links-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 1.2rem 0;
    margin: 0.5rem auto 0;
    animation: fadeInUp 0.8s ease-out 0.9s both;
    width: 100%;
}

.link-logo-item {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    padding: 0;
}

.link-logo-item[data-tooltip] {
    position: relative;
}

.link-logo-item[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    transform: translate(-50%, 12px);
    background: rgba(0, 0, 0, 0.85);
    color: var(--white);
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
    font-size: 0.7rem;
    letter-spacing: 0.03em;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
}

.link-logo-item[data-tooltip]:hover::after {
    opacity: 1;
    transform: translate(-50%, 8px);
}

.link-logo-item:hover {
    transform: translateY(-2px) scale(1.1);
}

.link-logo-item:active {
    transform: translateY(0) scale(1.05);
}

.link-logo {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.link-logo svg {
    width: 100%;
    height: 100%;
    color: var(--purple-400);
    transition: all 0.3s ease;
    fill: currentColor;
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.6)) 
            drop-shadow(0 0 8px rgba(255, 255, 255, 0.4));
}

.link-logo-item:hover .link-logo svg {
    color: var(--purple-300);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.9)) 
            drop-shadow(0 0 16px rgba(255, 255, 255, 0.6))
            drop-shadow(0 0 24px rgba(255, 255, 255, 0.3));
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .bio-container {
        padding: 1rem;
    }
    
    .bio-avatar {
        width: 100px;
        height: 100px;
    }
    
    .bio-avatar svg {
        width: 50px;
        height: 50px;
    }
    
    .bio-avatar-glow {
        width: 120px;
        height: 120px;
    }
    
    .bio-title {
    font-size: 2rem;
    }
    
    .link-logo-item {
        width: 50px;
        height: 50px;
    }
    
    .link-logo svg {
        width: 24px;
        height: 24px;
    }
}

