@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Space+Mono:wght@400;700&display=swap');

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

body {
    font-family: 'Space Grotesk', sans-serif;
    background: #0a0a0a;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-x: hidden;
}

/* Noise texture overlay */
.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    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");
}

.container {
    max-width: 480px;
    width: 100%;
    position: relative;
    z-index: 1;
    animation: fadeUp 0.8s ease-out;
}

/* Profile Section */
.profile {
    text-align: center;
    margin-bottom: 40px;
}

.avatar-wrap {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #333;
    position: relative;
}

.avatar-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Mono', monospace;
    font-size: 1.2em;
    font-weight: bold;
    letter-spacing: 2px;
}

.name {
    font-family: 'Space Mono', monospace;
    font-size: 1.3em;
    color: #fff;
    letter-spacing: 3px;
    margin-bottom: 8px;
    font-weight: 700;
}

.tagline {
    font-size: 0.9em;
    color: #555;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.divider {
    width: 40px;
    height: 1px;
    background: #333;
    margin: 0 auto;
}

/* Menu */
.menu {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 40px;
    border: 1px solid #1a1a1a;
    border-radius: 16px;
    overflow: hidden;
}

.menu-item {
    display: flex;
    align-items: center;
    padding: 20px 25px;
    background: #111;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid #1a1a1a;
    gap: 15px;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item:hover {
    background: #1a1a1a;
    padding-left: 30px;
}

.menu-item:hover .menu-arrow {
    transform: translateX(5px);
    color: #fff;
}

.menu-num {
    font-family: 'Space Mono', monospace;
    font-size: 0.75em;
    color: #444;
    letter-spacing: 1px;
    min-width: 25px;
}

.menu-label {
    flex: 1;
    font-size: 1em;
    color: #ccc;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.menu-arrow {
    font-size: 1em;
    color: #333;
    transition: all 0.3s ease;
}

/* Footer */
.footer {
    text-align: center;
}

.contact-row {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-link {
    width: 44px;
    height: 44px;
    background: #111;
    border: 1px solid #222;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    text-decoration: none;
    transition: all 0.3s ease;
    color: white;
}

.contact-link:hover {
    background: #1a1a1a;
    border-color: #444;
    transform: translateY(-2px);
}

.footer-text {
    font-size: 0.75em;
    color: #333;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Space Mono', monospace;
}

/* Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .name {
        font-size: 1.1em;
        letter-spacing: 2px;
    }

    .menu-item {
        padding: 18px 20px;
    }
}