:root {
    --bg-dark: #06050b;
    --panel-bg: rgba(14, 11, 26, 0.6);
    --panel-border: #2a1b4d;
    --panel-border-light: rgba(139, 92, 246, 0.4);

    --text-main: #d1d5db;
    --text-muted: #6b7280;

    --accent-purple: #8b5cf6;
    --accent-magenta: #d946ef;
    --accent-cyan: #06b6d4;
    --accent-green: #10b981;
    --accent-red: #ef4444;

    --font-mono: 'Fira Code', monospace;
    --font-sans: 'Inter', sans-serif;

    --glow-purple: 0 0 15px rgba(139, 92, 246, 0.4);
    --glow-magenta: 0 0 15px rgba(217, 70, 239, 0.4);
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Background Effects */
.background-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-image:
        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: 30px 30px;
    background-position: center center;
    mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
}

.background-noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    pointer-events: none;
}

.site-container {
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.header-left {
    display: flex;
    flex-direction: column;
}

.logo-glitch {
    font-family: var(--font-mono);
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
    text-shadow: 2px 0 var(--accent-purple), -2px 0 var(--accent-cyan);
    position: relative;
    line-height: 1;
}

.logo-subtitle {
    font-family: var(--font-mono);
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

.header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
    background: rgba(14, 11, 26, 0.5);
    padding: 0.75rem 1.25rem;
    border: 1px solid var(--panel-border);
    border-radius: 8px;
    position: relative;
}

/* Status dots */
.header-right::before,
.header-right::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-purple);
    top: 50%;
    transform: translateY(-50%);
}

.header-right::before {
    left: -2px;
}

.header-right::after {
    right: -2px;
}

.system-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-indicator {
    width: 8px;
    height: 8px;
    background-color: var(--accent-green);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent-green);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

/* Navigation */
.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--panel-bg);
    border: 1px solid var(--panel-border);
    border-radius: 8px;
    padding: 0.5rem;
    box-shadow: var(--glow-purple);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 0.5rem;
}

.nav-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    color: var(--text-muted);
    text-decoration: none;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--text-main);
    background: rgba(139, 92, 246, 0.1);
}

.nav-link.active {
    background: rgba(139, 92, 246, 0.15);
    color: var(--accent-purple);
    border: 1px solid var(--panel-border-light);
}

.nav-link .prefix {
    color: var(--text-main);
}

.btn-breach {
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-magenta));
    border: none;
    border-radius: 6px;
    padding: 0.75rem 1.5rem;
    color: #fff;
    font-family: var(--font-mono);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: filter 0.3s ease, transform 0.1s ease;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 15px rgba(217, 70, 239, 0.5);
}

.btn-breach:hover {
    filter: brightness(1.2);
    transform: translateY(-1px);
}

.btn-breach:active {
    transform: translateY(1px);
}

/* Main Grid Layout */
.main-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
    margin-top: 1rem;
}

/* Panels */
.panel {
    background: var(--panel-bg);
    border: 1px solid var(--panel-border);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    position: relative;
    backdrop-filter: blur(10px);
}

/* Corner decorations */
.panel::before,
.panel::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border: 1px solid var(--accent-cyan);
    pointer-events: none;
}

.panel::before {
    top: -1px;
    left: -1px;
    border-right: none;
    border-bottom: none;
}

.panel::after {
    bottom: -1px;
    right: -1px;
    border-left: none;
    border-top: none;
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.25rem;
    border-bottom: 1px solid var(--panel-border);
    font-family: var(--font-mono);
    font-size: 0.75rem;
}

.panel-title {
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: 1px;
}

.panel-status.success {
    color: var(--accent-green);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.panel-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Typography & Content Layout */
.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    font-family: var(--font-sans);
}

.hero-title .cursor {
    color: var(--accent-purple);
    animation: blink 1s step-end infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.bio-text {
    font-size: 1rem;
    color: var(--text-main);
    line-height: 1.8;
}

.highlight-purple {
    color: var(--accent-purple);
    font-weight: 600;
}

.quote-block {
    display: flex;
    gap: 1rem;
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid var(--panel-border);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1rem 0;
    position: relative;
}

.quote-icon {
    color: var(--accent-purple);
    font-size: 1.5rem;
    opacity: 0.8;
    margin-top: 0.25rem;
}

.quote-text {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.6;
}

/* Tech Stack */
.tech-stack-section {
    margin-top: auto;
    padding-top: 1.5rem;
}

.section-label {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--accent-purple);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    gap: 1rem;
}

.tech-item {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--panel-border);
    border-radius: 8px;
    padding: 1rem 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    position: relative;
}

.tech-item:hover {
    border-color: var(--panel-border-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.15);
}

.tech-icon {
    width: 32px;
    height: 32px;
    font-size: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.color-purple {
    color: #8b5cf6;
}

.color-blue {
    color: #3b82f6;
}

.color-red {
    color: #ef4444;
}

.tech-name {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--text-main);
    letter-spacing: 1px;
}

.tech-dot {
    position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
    width: 4px;
    height: 4px;
    background-color: var(--accent-green);
    border-radius: 50%;
}

/* Profile Section */
.profile-stats {
    display: flex;
    flex-direction: column;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--panel-border);
}

.stat-row:last-child {
    border-bottom: none;
    position: relative;
}

.stat-row:last-child::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30%;
    height: 1px;
    background: var(--accent-red);
    box-shadow: 0 0 8px var(--accent-red);
}

.stat-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    letter-spacing: 1px;
}

.stat-label i {
    width: 16px;
    text-align: center;
}

.stat-value {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-main);
    font-weight: 500;
}

.stat-value.redacted {
    color: var(--accent-red);
    text-shadow: 0 0 8px rgba(239, 68, 68, 0.4);
    letter-spacing: 2px;
}

/* Globe Area */
.globe-container {
    flex-grow: 1;
    position: relative;
    min-height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin: 1rem 0;
}

#globeCanvas {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.globe-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 30%, var(--panel-bg) 100%);
    pointer-events: none;
}

/* Profile Footer */
.profile-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--panel-border);
}

.id-text {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
}

.barcode-graphic {
    display: flex;
    height: 12px;
    gap: 2px;
    opacity: 0.5;
}

.bar {
    background-color: var(--text-muted);
}

.w1 {
    width: 1px;
}

.w2 {
    width: 2px;
}

.w3 {
    width: 3px;
}

.w4 {
    width: 4px;
}

/* Site Footer */
.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    margin-top: 1rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
}

.accent-line {
    color: var(--accent-magenta);
}

/* Responsive */
@media (max-width: 900px) {
    .main-grid {
        grid-template-columns: 1fr;
    }

    .navigation {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
}

/* Tabs & Animations */
.tab-pane {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.tab-pane.active {
    opacity: 1;
    transform: translateY(0);
}

/* Redacted Glitch Effect that I spent too much time on and I didn't even like ts*/
.redacted {
    position: relative;
    display: inline-block;
}

.redacted::before,
.redacted::after {
    content: 'REDACTED';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
}

.redacted::before {
    left: 2px;
    text-shadow: -1px 0 red;
    animation: glitch-anim-1 2s infinite linear alternate-reverse;
}

.redacted::after {
    left: -2px;
    text-shadow: -1px 0 blue;
    animation: glitch-anim-2 3s infinite linear alternate-reverse;
}

@keyframes glitch-anim-1 {
    0% {
        clip-path: inset(20% 0 80% 0);
    }

    20% {
        clip-path: inset(60% 0 10% 0);
    }

    40% {
        clip-path: inset(40% 0 50% 0);
    }

    60% {
        clip-path: inset(80% 0 5% 0);
    }

    80% {
        clip-path: inset(10% 0 70% 0);
    }

    100% {
        clip-path: inset(30% 0 20% 0);
    }
}

@keyframes glitch-anim-2 {
    0% {
        clip-path: inset(10% 0 60% 0);
    }

    20% {
        clip-path: inset(80% 0 5% 0);
    }

    40% {
        clip-path: inset(30% 0 20% 0);
    }

    60% {
        clip-path: inset(50% 0 40% 0);
    }

    80% {
        clip-path: inset(5% 0 80% 0);
    }

    100% {
        clip-path: inset(70% 0 10% 0);
    }
}

/* New Tab Content Styles */
.activity-feed {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.activity-item {
    border-left: 2px solid var(--accent-purple);
    padding-left: 1rem;
}

.activity-date {
    font-family: var(--font-mono);
    color: var(--text-muted);
    font-size: 0.85rem;
}

.activity-desc {
    margin-top: 0.5rem;
}

.project-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.project-list li {
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border: 1px solid var(--panel-border);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.project-list strong {
    color: var(--accent-cyan);
    font-family: var(--font-mono);
}

.uses-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.uses-category h3 {
    color: var(--accent-purple);
    font-family: var(--font-mono);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.uses-category ul {
    list-style: square inside;
    color: var(--text-muted);
    line-height: 2;
}

.links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.link-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid var(--panel-border-light);
    padding: 1rem;
    border-radius: 6px;
    text-decoration: none;
    color: var(--text-main);
    font-family: var(--font-mono);
    transition: all 0.3s ease;
}

.link-btn:hover {
    background: rgba(139, 92, 246, 0.2);
    transform: translateX(5px);
}

.highlight-red {
    color: var(--accent-red);
    font-weight: bold;
    text-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
}

.glitch-text {
    animation: blink 0.1s infinite;
    color: var(--accent-red);
}

.progress-bar-container {
    width: 100%;
    height: 20px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--accent-red);
    margin-top: 1rem;
    overflow: hidden;
}

.glitch-bar {
    height: 100%;
    width: 30%;
    background: var(--accent-red);
    animation: load-glitch 5s infinite;
}

@keyframes load-glitch {
    0% {
        width: 0%;
    }

    20% {
        width: 15%;
    }

    25% {
        width: 10%;
    }

    50% {
        width: 50%;
    }

    55% {
        width: 45%;
    }

    80% {
        width: 80%;
    }

    100% {
        width: 95%;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
    border-left: 1px solid var(--panel-border);
}

::-webkit-scrollbar-thumb {
    background: var(--panel-border-light);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-purple);
}

/* Rig Section */
.rig-section {
    margin-top: 2rem;
    padding-top: 1rem;
}

.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.rig-title {
    font-family: var(--font-mono);
    font-size: 2rem;
    color: var(--accent-purple);
    margin-bottom: 0.25rem;
    letter-spacing: 1px;
    font-style: italic;
    font-weight: 800;
    text-shadow: var(--glow-purple);
}

.nodes-title {
    font-family: var(--font-mono);
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.section-subtitle {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 2px;
}

.status-badge-online {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border: 1px solid var(--accent-green);
    border-radius: 20px;
    color: var(--accent-green);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    background: rgba(16, 185, 129, 0.1);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.2);
}

.component-header {
    font-family: var(--font-mono);
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rig-components-container {
    border-left: 1px solid var(--panel-border);
    padding-left: 2rem;
    position: relative;
}

.rig-components-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -4px;
    width: 7px;
    height: 7px;
    background: var(--accent-purple);
    border-radius: 50%;
}

.rig-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.rig-item {
    display: flex;
    align-items: center;
    background: rgba(14, 11, 26, 0.6);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.rig-item:hover {
    border-color: rgba(139, 92, 246, 0.5);
    background: rgba(139, 92, 246, 0.1);
    transform: translateX(5px);
}

.rig-icon-box {
    width: 32px;
    height: 32px;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--accent-purple);
    margin-right: 1rem;
}

.rig-label {
    font-family: var(--font-sans);
    font-weight: 500;
    color: var(--text-main);
    font-size: 0.9rem;
    width: 120px;
}

.rig-value {
    font-family: var(--font-sans);
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-left: auto;
    text-align: right;
}

.highlight-cyan {
    color: var(--accent-cyan);
}

/* Bottom Sections Wrapper */
.bottom-sections-wrapper {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.connection-nodes-col {
    flex: 1.2;
}

.aliases-col {
    flex: 1;
    border-left: 1px solid rgba(139, 92, 246, 0.2);
    padding-left: 2rem;
}

@media (max-width: 900px) {
    .bottom-sections-wrapper {
        flex-direction: column;
    }

    .aliases-col {
        border-left: none;
        border-top: 1px solid rgba(139, 92, 246, 0.2);
        padding-left: 0;
        padding-top: 2rem;
    }
}

/* Connection Nodes */
.nodes-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.node-card {
    display: flex;
    align-items: center;
    padding: 1.25rem;
    border-radius: 12px;
    text-decoration: none;
    background: linear-gradient(135deg, rgba(20, 15, 35, 0.9) 0%, rgba(10, 8, 20, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-align: left;
}

.node-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.node-discord {
    border-left: 3px solid #5865F2;
}

.node-discord:hover {
    box-shadow: 0 0 20px rgba(88, 101, 242, 0.2);
    transform: translateX(5px);
}

.node-discord .node-icon {
    color: #5865F2;
}

.node-linkedin {
    border-left: 3px solid #0077b5;
}

.node-linkedin:hover {
    box-shadow: 0 0 20px rgba(0, 119, 181, 0.2);
    transform: translateX(5px);
}

.node-linkedin .node-icon {
    color: #0077b5;
}

.node-github {
    border-left: 3px solid #06b6d4;
}

.node-github:hover {
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.2);
    transform: translateX(5px);
}

.node-github .node-icon {
    color: #06b6d4;
}

.node-icon {
    font-size: 2rem;
    margin-right: 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    width: 56px;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
}

.node-info {
    display: flex;
    flex-direction: column;
}

.node-name {
    color: var(--text-main);
    font-weight: 600;
    font-size: 1.1rem;
}

.node-discord .node-name {
    color: #5865F2;
}

.node-linkedin .node-name {
    color: #0077b5;
}

.node-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

.node-arrow {
    margin-left: auto;
    color: var(--text-muted);
    font-size: 1rem;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.node-card:hover .node-arrow {
    opacity: 1;
    transform: translateX(5px);
}

/* Aliases */
.aliases-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.alias-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.alias-name {
    color: var(--text-main);
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.alias-subtext {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    opacity: 0.3;
    transition: all 0.3s ease;
    position: absolute;
    bottom: 0.55rem;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

.alias-card {
    background: rgba(14, 11, 26, 0.6);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    padding: 1.5rem 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.alias-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.alias-card:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 5px 25px rgba(139, 92, 246, 0.2);
    transform: translateY(-5px) scale(1.02);
}

.alias-card:hover::before {
    transform: translateX(100%);
}

.alias-icon {
    font-size: 2.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.alias-icon.stellar {
    color: #8b5cf6;
    text-shadow: 0 0 15px rgba(139, 92, 246, 0.5);
}

.alias-icon.zaevix {
    color: #06b6d4;
    text-shadow: 0 0 15px rgba(6, 182, 212, 0.5);
}

.alias-icon.omega {
    color: #10b981;
    text-shadow: 0 0 15px rgba(16, 185, 129, 0.5);
}

.alias-icon.pris {
    color: #d946ef;
    text-shadow: 0 0 15px rgba(217, 70, 239, 0.5);
}

.alias-card:hover .alias-name {
    color: var(--accent-cyan);
    text-shadow: 0 0 8px rgba(6, 182, 212, 0.5);
}

.alias-card:hover .alias-subtext {
    opacity: 0.3;
    color: var(--accent-purple);
}

.alias-card:hover .alias-icon.stellar {
    transform: scale(1.2) rotate(180deg);
}

.alias-card:hover .alias-icon.zaevix {
    transform: scale(1.2) translateY(-5px);
}

.alias-card:hover .alias-icon.omega {
    transform: scale(1.2) rotate(-15deg);
}

.alias-card:hover .alias-icon.pris {
    transform: scale(1.2) rotate(45deg);
}

/* Footer Quote */
.footer-quote {
    margin-top: 3rem;
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
}

.footer-quote::after {
    content: '\f135';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: -20px;
    bottom: -20px;
    font-size: 8rem;
    color: rgba(139, 92, 246, 0.05);
    transform: rotate(-45deg);
}

.footer-quote-icon {
    font-size: 3rem;
    color: rgba(139, 92, 246, 0.8);
}

.footer-quote-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 1;
}

.footer-quote-text {
    color: var(--text-main);
    font-family: var(--font-mono);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.footer-quote-subtext {
    color: var(--accent-purple);
    font-family: var(--font-mono);
    font-size: 0.85rem;
    letter-spacing: 2px;
}