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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, serif;
    background: #0f0f1a;
    color: #e0e0e0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.7;
}

.container {
    text-align: center;
    max-width: 480px;
    padding: 2rem;
}

.profile {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #2a2a40;
    box-shadow: 0 0 40px rgba(100, 120, 255, 0.2);
    margin-bottom: 2rem;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, #8ab4f8, #c3e8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 300;
}

.tagline {
    font-size: 1.4rem;
    color: #88aaff;
    margin: 1rem 0 3rem;
    font-style: italic;
}

.content {
    font-size: 1.15rem;
    margin: 2rem 0;
}

.email a {
    color: #8ab4f8;
    text-decoration: none;
    border-bottom: 1px dotted #8ab4f8;
}

footer {
    margin-top: 4rem;
    font-size: 0.9rem;
    color: #666;
}

footer a {
    color: #88aaff;
    text-decoration: none;
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.8rem;
    }

    .profile {
        width: 150px;
        height: 150px;
    }
}