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

body {
    font-family: 'Courier New', monospace;
    background: #0a0a0a;
    color: #7CFC00;
    min-height: 100vh;
    padding: 20px;
    line-height: 1.4;
    cursor: default;
    -webkit-tap-highlight-color: transparent;
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

.header {
    border: 4px solid #7CFC00;
    padding: 30px;
    margin-bottom: 20px;
    background: #000;
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 25px;
    align-items: center;
}

.profile-pic {
    width: 120px;
    height: 120px;
    background: #1a1a1a;
    border: 3px solid #7CFC00;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.profile-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

h1 {
    font-size: 3rem;
    font-weight: bold;
    letter-spacing: -3px;
    text-transform: uppercase;
    line-height: 1;
}

.subtitle {
    font-size: 1rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
    min-height: 1.5rem;
}

.subtitle::after {
    content: '█';
    animation: blink 1s infinite;
    margin-left: 2px;
}

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

.social-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.social-link {
    color: #7CFC00;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s;
    padding-bottom: 2px;
}

.social-link:active {
    border-bottom-color: #7CFC00;
}

.section {
    border: 4px solid #7CFC00;
    margin-bottom: 20px;
    background: #000;
}

.section-header {
    background: #7CFC00;
    color: #000;
    padding: 15px 20px;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-content {
    padding: 20px;
}

.project-link {
    display: block;
    padding: 20px;
    margin-bottom: 15px;
    background: #0a0a0a;
    border: 2px solid #333;
    color: #7CFC00;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    transition: all 0.2s;
    position: relative;
    touch-action: manipulation;
}

.project-link:hover {
    border-color: #7CFC00;
    padding-left: 40px;
    background: #111;
}

.project-link::before {
    content: '>';
    position: absolute;
    left: 20px;
    opacity: 0;
    transition: opacity 0.2s;
}

.project-link:hover::before {
    opacity: 1;
}

.project-desc {
    font-size: 0.85rem;
    color: #666;
    text-transform: none;
    letter-spacing: normal;
    margin-top: 8px;
    font-weight: normal;
}

.nfc-box {
    background: #1a1a1a;
    color: #e0e0e0;
    padding: 25px;
    margin-top: 20px;
    border: 3px solid #7CFC00;
}

.nfc-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: #7CFC00;
    font-weight: bold;
}

.nfc-box p {
    line-height: 1.6;
    margin-bottom: 10px;
    font-weight: normal;
}

.nfc-box strong {
    color: #7CFC00;
    font-weight: bold;
}

.password-reveal {
    background: #0a0a0a;
    color: #7CFC00;
    padding: 20px;
    margin-top: 15px;
    border: 3px solid #7CFC00;
    font-size: 1.3rem;
    letter-spacing: 3px;
    text-align: center;
    user-select: all;
}

.hidden {
    display: none;
}

.footer {
    margin-top: 40px;
    padding: 20px;
    text-align: center;
    color: #333;
    font-size: 0.8rem;
}

@media (max-width: 600px) {
    .header {
        grid-template-columns: 80px 1fr;
        gap: 15px;
        padding: 20px;
    }

    .profile-pic {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    h1 {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }

    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .section-header {
        font-size: 1rem;
        padding: 12px 15px;
    }

    .project-link {
        padding: 15px;
    }
}