* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #f5f3f0 0%, #faf9f7 100%);
    color: #2a2520;
    line-height: 1.6;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 600px;
    background: white;
    border-radius: 12px;
    padding: 48px 32px;
    box-shadow: 0 2px 16px rgba(90, 107, 91, 0.08),
        0 8px 24px rgba(91, 44, 58, 0.04);
    text-align: center;
}

.profile-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #5a6b5b;
    display: block;
}

h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #5a6b5b;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

.subtitle {
    font-size: 15px;
    color: #8b8680;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}

.tagline {
    font-size: 16px;
    color: #8b8680;
    font-weight: 400;
    margin-bottom: 40px;
    line-height: 1.7;
}

.actions {
    display: flex;
    gap: 16px;
    flex-direction: column;
}

.action-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 8px;
    border: 2px solid transparent;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', sans-serif;
}

.action-button.primary {
    background: #5a6b5b;
    color: white;
}

.action-button.primary:hover {
    background: #4a5a4b;
    box-shadow: 0 4px 12px rgba(90, 107, 91, 0.25);
    transform: translateY(-2px);
}

.action-button.primary:focus {
    outline: 2px solid #5b2c3a;
    outline-offset: 2px;
    background: #4a5a4b;
}

.action-button.primary:active {
    transform: translateY(0);
}

.action-button.secondary {
    background: transparent;
    color: #5a6b5b;
    border-color: #5a6b5b;
}

.action-button.secondary:hover {
    background: #5a6b5b;
    color: white;
    box-shadow: 0 4px 12px rgba(90, 107, 91, 0.15);
    transform: translateY(-2px);
}

.action-button.secondary:focus {
    outline: 2px solid #5b2c3a;
    outline-offset: 2px;
    background: rgba(90, 107, 91, 0.05);
}

.action-button.secondary:active {
    transform: translateY(0);
}

.action-button svg {
    width: 18px;
    height: 18px;
    stroke-width: 2.5;
}

@media (max-width: 640px) {
    .container {
        padding: 40px 24px;
        border-radius: 8px;
        box-shadow: 0 1px 8px rgba(90, 107, 91, 0.06);
    }

    .profile-image {
        width: 100px;
        height: 100px;
        margin-bottom: 24px;
    }

    h1 {
        font-size: 28px;
        margin-bottom: 4px;
    }

    .subtitle {
        font-size: 14px;
        margin-bottom: 18px;
    }

    .tagline {
        font-size: 15px;
        margin-bottom: 32px;
    }

    .action-button {
        padding: 12px 20px;
        font-size: 14px;
    }
}

@media (min-width: 641px) {
    .actions {
        flex-direction: row;
        justify-content: center;
    }

    .action-button {
        flex: 1;
        max-width: 240px;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .action-button {
        transition: none;
    }

    .action-button:hover {
        transform: none;
    }

    .action-button:active {
        transform: none;
    }
}

/* High contrast mode */
@media (prefers-contrast: more) {
    body {
        background: #ffffff;
    }

    .container {
        border: 2px solid #000;
    }

    .action-button.secondary {
        border-width: 2px;
    }
}