* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Courier New', monospace;
    background: #0a0a0a;
    color: #66ff99;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin: 0;
}

.container {
    width: 100%;
    max-width: 600px;
}

.terminal {
    background: #0d0d0d;
    border: 1px solid #1a1a1a;
    border-radius: 8px;
    box-shadow: 0 0 40px rgba(102, 255, 153, 0.1);
    overflow: hidden;
}

.terminal-header {
    background: #1a1a1a;
    padding: 12px 16px;
    border-bottom: 1px solid #2a2a2a;
}

.terminal-title {
    color: #66ff99;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.terminal-body {
    padding: 40px;
}

.pfp-container {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.pfp {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid #66ff99;
    object-fit: cover;
    box-shadow: 0 0 20px rgba(102, 255, 153, 0.3);
}

.info {
    margin-bottom: 40px;
}

.prompt {
    color: #66ff99;
    margin-bottom: 8px;
    font-size: 14px;
}

.user {
    color: #66ff99;
}

.path {
    color: #33ff66;
}

.output {
    color: #888;
    font-size: 14px;
    margin-bottom: 0;
}

.links {
    margin-bottom: 40px;
}

.links .prompt {
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.icon-link {
    color: #66ff99;
    text-decoration: none;
    padding: 12px;
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 8px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-link:hover {
    background: #1a1a1a;
    border-color: #66ff99;
    box-shadow: 0 0 20px rgba(102, 255, 153, 0.2);
    transform: translateY(-2px);
}

.icon-link svg {
    width: 24px;
    height: 24px;
}

.footer {
    margin-top: 30px;
    text-align: center;
}

.back-link {
    color: #666;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s ease;
}

.back-link:hover {
    color: #66ff99;
}

@media (max-width: 768px) {
    .terminal-body {
        padding: 30px 20px;
    }
    
    .social-icons {
        gap: 15px;
    }
    
    .icon-link {
        padding: 10px;
    }
    
    .icon-link svg {
        width: 20px;
        height: 20px;
    }
}

.enter-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    cursor: pointer;
    transition: opacity 0.5s ease;
}

.enter-text {
    font-family: 'Courier New', monospace;
    font-size: 24px;
    color: #66ff99;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

#mainContent {
    width: 100%;
}
