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

body {
    font-family: 'Tahoma', 'MS Sans Serif', sans-serif;
    background: linear-gradient(135deg, #918FED 0%, #7B76E8 15%, #A39AF0 30%, #6B64E0 45%, #B8B3F5 60%, #7B76E8 75%, #918FED 100%);
    background-attachment: fixed;
    background-size: 400% 400%;
    animation: gradientFlow 15s ease infinite;
    color: #000;
    font-size: 11px;
    line-height: 1.4;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    cursor: pointer;
}

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

.minx-boot {
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.5s ease;
    color: white;
    font-family: 'Tahoma', sans-serif;
    position: relative;
}

.boot-messages {
    position: absolute;
    top: 20px;
    left: 20px;
    max-width: 500px;
    font-size: 11px;
    line-height: 1.4;
    font-family: 'Courier New', monospace;
    color: #ccc;
}

.boot-message {
    opacity: 0;
    margin-bottom: 4px;
    animation: messageAppear 0.3s ease forwards;
}

.minx-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    position: relative;
}

.logo-svg {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(145, 143, 237, 0.6));
    animation: logoFloat 3s ease-in-out infinite, logoGlow 4s ease-in-out infinite;
    transition: all 0.3s ease;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

@keyframes logoGlow {
    0%, 100% { filter: drop-shadow(0 0 15px rgba(145, 143, 237, 0.6)); }
    50% { filter: drop-shadow(0 0 25px rgba(145, 143, 237, 0.9)) drop-shadow(0 0 35px rgba(145, 143, 237, 0.4)); }
}

.minx-text {
    font-size: 24px;
    color: #ccc;
    font-family: 'Tahoma', sans-serif;
    margin-bottom: 30px;
    text-align: center;
}

.boot-progress {
    width: 300px;
    height: 8px;
    background: #333;
    border: 1px solid rgba(145, 143, 237, 0.5);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(145, 143, 237, 0.3);
}

.boot-bar {
    height: 100%;
    background: linear-gradient(90deg, rgba(145, 143, 237, 0.8) 0%, rgba(145, 143, 237, 1) 50%, rgba(145, 143, 237, 0.8) 100%);
    background-size: 60px 100%;
    width: 0%;
    animation: bootProgress 3s ease-out forwards, bootShine 1s ease-in-out infinite;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(145, 143, 237, 0.6);
}

@keyframes bootProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}

@keyframes bootShine {
    0%, 100% { background-position: -60px 0; }
    50% { background-position: 360px 0; }
}

.boot-status {
    font-size: 12px;
    color: #ccc;
    text-align: center;
    font-family: 'Tahoma', sans-serif;
}

.main-content {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.main-content.visible {
    opacity: 1;
    transform: scale(1);
}

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

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

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

.window {
    max-width: 580px;
    background: #ece9d8;
    border: 3px outset #ece9d8;
    border-radius: 8px 8px 6px 6px;
    box-shadow: 8px 8px 20px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.2);
    overflow: hidden;
    position: relative;
    animation: windowOpen 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes windowOpen {
    0% { transform: scale(0.3) translateY(-50px); opacity: 0; }
    100% { transform: scale(1) translateY(0); opacity: 1; }
}

.title-bar {
    background: linear-gradient(180deg, #B8B3F5 0%, #918FED 25%, #7B76E8 50%, #6B64E0 75%, #5A52D5 100%);
    padding: 4px 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid #7B76E8;
    position: relative;
}

.title-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0.8) 100%);
}

.title-text {
    color: white;
    font-size: 11px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    gap: 8px;
    user-select: none;
}

.title-icon {
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, #918FED 0%, #A39AF0 50%, #7B76E8 100%);
    border: 2px solid #6B64E0;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: white;
    font-weight: bold;
    box-shadow: inset 1px 1px 2px rgba(255,255,255,0.3), 2px 2px 4px rgba(0,0,0,0.3);
    animation: iconGlow 3s ease-in-out infinite;
}

@keyframes iconGlow {
    0%, 100% { box-shadow: inset 1px 1px 2px rgba(255,255,255,0.3), 2px 2px 4px rgba(0,0,0,0.3); }
    50% { box-shadow: inset 1px 1px 2px rgba(255,255,255,0.5), 2px 2px 6px rgba(145,143,237,0.4); }
}

.window-controls {
    display: flex;
    gap: 2px;
}

.control-btn {
    width: 18px;
    height: 16px;
    background: linear-gradient(180deg, #f0f0f0 0%, #e0e0e0 50%, #d0d0d0 100%);
    border: 1px outset #d0d0d0;
    font-size: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.1s ease;
    user-select: none;
    border-radius: 2px;
}

.control-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255,255,255,0.8);
}

.control-btn:hover {
    background: linear-gradient(180deg, #f8f8f8 0%, #e8e8e8 50%, #d8d8d8 100%);
    border-color: #a0a0a0;
}

.control-btn:active {
    border: 1px inset #d0d0d0;
    background: linear-gradient(180deg, #d0d0d0 0%, #e0e0e0 50%, #f0f0f0 100%);
    transform: translate(1px, 1px);
}

.menu-bar {
    background: linear-gradient(180deg, #ece9d8 0%, #ddd4c0 100%);
    border-bottom: 1px solid #c7b899;
    padding: 2px 4px;
    display: flex;
    gap: 8px;
    font-size: 11px;
}

.menu-item {
    padding: 3px 6px;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.15s ease;
    user-select: none;
}

.menu-item:hover {
    background: linear-gradient(180deg, #E8E5F0 0%, #D2CCDB 100%);
    border: 1px solid #918FED;
}

.container {
    padding: 16px;
    background: linear-gradient(180deg, #ece9d8 0%, #ddd4c0 20%, #ece9d8 100%);
    min-height: 420px;
    position: relative;
}

.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0.6) 100%);
}

.profile {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 18px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f6f0 25%, #f0ede4 50%, #f8f6f0 75%, #ffffff 100%);
    padding: 12px;
    border: 2px inset #ece9d8;
    border-radius: 4px;
    box-shadow: inset 2px 2px 4px rgba(255,255,255,0.9), inset -2px -2px 4px rgba(0,0,0,0.1), 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
}

.profile::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
}

.ascii-avatar {
    width: 72px;
    height: 72px;
    border: 3px inset #ece9d8;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 4px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 25%, #f0f0f0 50%, #e8e8e8 75%, #e0e0e0 100%);
    box-shadow: 3px 3px 6px rgba(0,0,0,0.2), inset 1px 1px 2px rgba(255,255,255,0.8);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.ascii-avatar:hover {
    transform: scale(1.02);
    box-shadow: 4px 4px 8px rgba(0,0,0,0.3), inset 1px 1px 3px rgba(255,255,255,0.9);
}

.ascii-avatar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.9) 50%, transparent 100%);
}

.ascii-avatar img {
    width: calc(100% - 6px);
    height: calc(100% - 6px);
    object-fit: cover;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.ascii-avatar:hover img {
    filter: contrast(1.1) brightness(1.05);
}

.info {
    text-align: left;
    color: #000;
    flex: 1;
}

.info h1 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #6B64E0;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.8);
    position: relative;
    display: inline-block;
}

.info h1::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, #6B64E0 0%, transparent 100%);
}

.info p {
    margin-bottom: 6px;
    font-size: 11px;
    color: #333;
    font-style: italic;
}

.badges {
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    justify-content: flex-start;
}

.badge {
    border: 1px solid #d4d0c8;
    padding: 3px 7px;
    font-size: 9px;
    color: #000;
    background: linear-gradient(135deg, #e8e5f0 0%, #d2ccdb 25%, #c4b8c7 50%, #d2ccdb 75%, #e8e5f0 100%);
    display: inline-block;
    font-family: 'Tahoma', sans-serif;
    border-radius: 3px;
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    box-shadow: 1px 1px 2px rgba(0,0,0,0.15), inset 1px 1px 1px rgba(255,255,255,0.6);
    position: relative;
    user-select: none;
    overflow: hidden;
}

.badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.8) 50%, transparent 100%);
}

.badge:hover {
    background: linear-gradient(135deg, #B8B3F5 0%, #A39AF0 25%, #918FED 50%, #7B76E8 75%, #6B64E0 100%);
    border: 1px solid #6B64E0;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 2px 4px 8px rgba(0,0,0,0.3), inset 1px 1px 2px rgba(255,255,255,0.8);
    color: white;
}

.badge:active {
    border: 1px solid #d4d0c8;
    background: linear-gradient(135deg, #c4b8c7 0%, #d2ccdb 50%, #e8e5f0 100%);
    transform: translateY(-1px) scale(1.02);
    box-shadow: inset 2px 2px 4px rgba(0,0,0,0.2);
}

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

.section {
    margin-bottom: 16px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f6f0 100%);
    border: 2px inset #ece9d8;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.section:hover {
    box-shadow: 3px 3px 6px rgba(0,0,0,0.15);
}

.section-header {
    background: linear-gradient(180deg, #ddd4c0 0%, #c7b899 50%, #b8a082 100%);
    padding: 6px 12px;
    border-bottom: 1px solid #b8a082;
    font-size: 11px;
    font-weight: bold;
    color: #2c2c2c;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.8);
    position: relative;
    user-select: none;
}

.section-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0.8) 100%);
}

.section-content {
    padding: 10px 12px;
    position: relative;
}

.project-list {
    border-left: 3px solid #918FED;
    padding-left: 10px;
    padding-right: 8px;
    margin-left: 6px;
    position: relative;
    max-height: 90px;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none;
}

.project-list::before {
    content: '';
    position: absolute;
    left: -1px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, rgba(255,255,255,0.6) 0%, transparent 50%, rgba(255,255,255,0.6) 100%);
}

.project-item {
    display: block;
    margin-bottom: 6px;
    font-size: 11px;
    color: #000;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 4px 8px;
    border-radius: 3px;
    position: relative;
    border: 1px solid transparent;
}

.project-item::before {
    content: '→';
    position: absolute;
    left: -18px;
    top: 50%;
    transform: translateY(-50%);
    color: #918FED;
    font-weight: bold;
    transition: all 0.2s ease;
}

.project-item:hover {
    background: linear-gradient(135deg, #E8E5F0 0%, #D2CCDB 50%, #C4B8C7 100%);
    border: 1px solid #918FED;
    box-shadow: inset 1px 1px 2px rgba(255,255,255,0.6), 2px 2px 6px rgba(0,0,0,0.2);
    transform: translateX(4px);
}

.project-item:hover::before {
    color: #6B64E0;
    transform: translateY(-50%) translateX(2px);
}

.project-item:active {
    background: linear-gradient(135deg, #C4B8C7 0%, #D2CCDB 50%, #E8E5F0 100%);
    box-shadow: inset 2px 2px 4px rgba(0,0,0,0.3);
    transform: translateX(2px);
}

.project-name {
    color: #6B64E0;
    font-weight: bold;
}

.project-item:hover .project-name {
    color: #000;
    text-shadow: 1px 1px 1px rgba(255,255,255,0.8);
}

.links a {
    color: #6B64E0;
    text-decoration: underline;
    font-size: 11px;
    transition: all 0.2s ease;
    padding: 2px 4px;
    border-radius: 2px;
    margin: -2px;
}

.links a:hover {
    color: #5A52D5;
    background: linear-gradient(135deg, #F0EDF8 0%, #E8E5F0 100%);
    text-decoration: none;
    box-shadow: 1px 1px 3px rgba(0,0,0,0.2);
    transform: translateY(-1px);
}

.discord {
    color: #6B64E0;
    cursor: pointer;
    font-size: 11px;
    transition: all 0.2s ease;
    padding: 2px 4px;
    border-radius: 2px;
    margin: -2px;
    position: relative;
}

.discord::after {
    content: '📋';
    position: absolute;
    right: -16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 8px;
    opacity: 0;
    transition: all 0.2s ease;
}

.discord:hover {
    color: #5A52D5;
    background: linear-gradient(135deg, #F0EDF8 0%, #E8E5F0 100%);
    text-decoration: underline;
    box-shadow: 1px 1px 3px rgba(0,0,0,0.2);
    transform: translateY(-1px);
}

.discord:hover::after {
    opacity: 1;
    right: -18px;
}

.status-bar {
    background: linear-gradient(180deg, #ddd4c0 0%, #c7b899 50%, #b8a082 100%);
    border-top: 2px solid #b8a082;
    padding: 3px 12px;
    font-size: 10px;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.status-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0.8) 100%);
}

.status-left {
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-icon {
    width: 14px;
    height: 14px;
    background: radial-gradient(circle, #918FED 0%, #7B76E8 70%, #6B64E0 100%);
    border: 2px solid #6B64E0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6px;
    animation: statusPulse 2s infinite;
    box-shadow: inset 1px 1px 2px rgba(255,255,255,0.6), 0 0 8px rgba(145,143,237,0.3);
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; box-shadow: inset 1px 1px 2px rgba(255,255,255,0.6), 0 0 8px rgba(145,143,237,0.3); }
    50% { opacity: 0.7; box-shadow: inset 1px 1px 2px rgba(255,255,255,0.8), 0 0 12px rgba(145,143,237,0.5); }
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    align-items: start;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f6f0 100%);
    border: 1px solid #ddd;
    border-radius: 3px;
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.contact-item:hover {
    background: linear-gradient(135deg, #E8E5F0 0%, #D2CCDB 50%, #C4B8C7 100%);
    border: 1px solid #918FED;
    box-shadow: inset 1px 1px 2px rgba(255,255,255,0.6), 2px 2px 6px rgba(0,0,0,0.2);
    transform: translateY(-2px);
}

.contact-icon {
    font-size: 16px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #918FED 0%, #7B76E8 100%);
    border-radius: 4px;
    flex-shrink: 0;
    box-shadow: inset 1px 1px 2px rgba(255,255,255,0.3), 2px 2px 4px rgba(0,0,0,0.2);
}

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

.contact-label {
    font-size: 9px;
    color: #666;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 2px;
    letter-spacing: 0.5px;
}

.contact-link {
    color: #6B64E0;
    text-decoration: none;
    font-size: 11px;
    font-weight: bold;
    transition: all 0.2s ease;
    word-break: break-all;
}

.contact-link:hover {
    color: #5A52D5;
    text-decoration: underline;
}

.fingerprint-item {
    grid-column: 1 / -1;
}

.fingerprint-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f8f8f8 0%, #f0f0f0 100%);
    border: 1px solid #ddd;
    padding: 4px 8px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
}

.fingerprint {
    font-size: 9px;
    color: #333;
    font-weight: bold;
    letter-spacing: 1px;
    flex: 1;
    word-break: break-all;
}

.copy-btn {
    background: linear-gradient(180deg, #f0f0f0 0%, #e0e0e0 50%, #d0d0d0 100%);
    border: 1px outset #d0d0d0;
    padding: 2px 4px;
    font-size: 10px;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.1s ease;
}

.copy-btn:hover {
    background: linear-gradient(180deg, #f8f8f8 0%, #e8e8e8 50%, #d8d8d8 100%);
    border-color: #a0a0a0;
}

.copy-btn:active {
    border: 1px inset #d0d0d0;
    background: linear-gradient(180deg, #d0d0d0 0%, #e0e0e0 50%, #f0f0f0 100%);
    transform: translate(1px, 1px);
}

@media (max-width: 768px) {
    .window {
        max-width: 95%;
        margin: 10px;
    }

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

    .info {
        text-align: center;
    }

    .badges {
        justify-content: center;
    }

    .project-list {
        border-left: none;
        padding-left: 0;
        margin-left: 0;
    }

    .project-item::before {
        display: none;
    }

    .container {
        padding: 12px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .fingerprint-item {
        grid-column: 1;
    }

    .fingerprint {
        font-size: 8px;
    }
}