* {
    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, #420D0C 0%, #7A1F1E 50%, #F53133 100%);
    padding: 20px;
}

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

.profile {
    margin-bottom: 30px;
}

.profile-image {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: #FFF0F0;
    border: 4px solid #FFF0F0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    object-fit: contain;
    padding: 8px;
    margin-bottom: 16px;
}

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

.tagline {
    color: #FFF0F0;
    font-size: 0.95rem;
    font-weight: 400;
    opacity: 0.9;
}

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

.link-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.95);
    color: #420D0C;
    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: #F53133;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 49, 51, 0.5);
}

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

footer {
    margin-top: 40px;
    color: rgba(255, 240, 240, 0.6);
    font-size: 0.85rem;
}

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

    .profile-image {
        width: 120px;
        height: 120px;
    }

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