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

body {
    font-family: 'Lato', sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 20px;
}

.container {
    max-width: 420px;
    width: 100%;
    text-align: center;
}

.profile {
    margin-bottom: 30px;
}

.profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid #37ca37;
    box-shadow: 0 4px 20px rgba(55, 202, 55, 0.3);
    object-fit: cover;
    object-position: center 20%;
    margin-bottom: 16px;
}

h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 8px;
}

.tagline {
    color: #b8b8b8;
    font-size: 0.95rem;
    font-weight: 400;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.link-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.95);
    color: #1a1a2e;
    text-decoration: none;
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.link-button:hover {
    background: #37ca37;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(55, 202, 55, 0.4);
}

.link-button:active {
    transform: translateY(0);
}

.icon {
    font-size: 1.1rem;
}

footer {
    margin-top: 40px;
    color: #666;
    font-size: 0.85rem;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }

    .link-button {
        padding: 14px 20px;
        font-size: 0.95rem;
    }
}
