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

body {
    font-family: 'JetBrains Mono', monospace;
    background: #FFFFFF;
    min-height: 100vh;
    color: #000000;
}

.app-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    position: relative;
    background: #FFFFFF;
}

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

.card-container {
    position: relative;
    max-width: 600px;
    width: 100%;
}

.card-shadow {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 100%;
    height: 100%;
    background: #000000;
}

.card-main {
    position: relative;
    background: #FFFFFF;
    border: 5px solid #000000;
    padding: 40px;
    z-index: 1;
}

.stamp {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 3px;
    padding: 8px 16px;
    border: 3px solid #000;
    transform: rotate(3deg);
}

.profile-section {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 40px;
    margin-top: 20px;
}

.avatar-container {
    flex-shrink: 0;
}

.avatar {
    width: 120px;
    height: 120px;
    border: 5px solid #000;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    background: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
}

.geo-face {
    width: 80px;
    height: 80px;
    position: relative;
}

.geo-eye {
    width: 16px;
    height: 16px;
    background: #000;
    position: absolute;
    top: 20px;
}

.geo-eye.left {
    left: 15px;
}

.geo-eye.right {
    right: 15px;
}

.geo-mouth {
    width: 40px;
    height: 8px;
    background: #000;
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
}

.info-section {
    flex: 1;
    padding-top: 10px;
}

.name {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 32px;
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.title {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.location {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 100;
    font-size: 13px;
    letter-spacing: 1px;
}

.section-label {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 3px;
    margin-bottom: 12px;
    opacity: 0.6;
}

.bio-section {
    margin-bottom: 30px;
    padding: 20px;
    border: 3px solid #000;
}

.bio-text {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.8;
}

.skills-section {
    margin-bottom: 30px;
}

.skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill-tag {
    display: inline-block;
    padding: 8px 16px;
    background: #000;
    color: #FFF;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 2px;
}

.divider {
    height: 5px;
    background: #000;
    margin: 30px 0;
}

.socials-section {
    margin-bottom: 30px;
}

.socials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.watermark {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 2px dashed #000;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 2px;
    opacity: 0.4;
}

.footer {
    margin-top: 40px;
}

.remix-link {
    display: inline-block;
    padding: 16px 32px;
    border: 4px solid #000;
    background: #FFF;
    color: #000;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.1s ease;
}

.remix-link:hover {
    background: #000;
    color: #FFF;
    transform: translate(-3px, -3px);
    box-shadow: 3px 3px 0 #000;
}

/* Mobile responsive */
@media (max-width: 640px) {
    .card-main {
        padding: 25px;
    }
    
    .profile-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }
    
    .name {
        font-size: 24px;
    }
    
    .title {
        font-size: 14px;
    }
    
    .avatar {
        width: 100px;
        height: 100px;
    }
    
    .geo-face {
        width: 60px;
        height: 60px;
    }
    
    .geo-eye {
        width: 12px;
        height: 12px;
        top: 15px;
    }
    
    .geo-eye.left {
        left: 10px;
    }
    
    .geo-eye.right {
        right: 10px;
    }
    
    .geo-mouth {
        width: 30px;
        height: 6px;
        bottom: 12px;
    }
    
    .socials-grid {
        justify-content: center;
    }
    
    .stamp {
        position: relative;
        top: 0;
        right: 0;
        text-align: center;
        margin-bottom: 20px;
        display: inline-block;
    }
    
    .bio-section {
        padding: 15px;
    }
    
    .bio-text {
        font-size: 13px;
    }
    
    .card-shadow {
        top: 6px;
        left: 6px;
    }
}

/* Animations */
@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.skill-tag {
    animation: fadeSlideIn 0.3s ease forwards;
    opacity: 0;
}