body {
            background: linear-gradient(135deg, #f8fafc 0%, #e0c3fc 100%);
            font-family: 'Roboto', sans-serif;
            margin: 0;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .container {
            background: #fff;
            border-radius: 24px;
            box-shadow: 0 8px 32px rgba(80, 36, 120, 0.15);
            padding: 40px 32px;
            max-width: 350px;
            width: 100%;
            text-align: center;
        }
        .avatar {
            width: 96px;
            height: 96px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid #e0c3fc;
            margin-bottom: 16px;
            box-shadow: 0 2px 8px rgba(80, 36, 120, 0.08);
        }
        h1 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2rem;
            margin: 0 0 8px 0;
            color: #502478;
            letter-spacing: 1px;
        }
        p {
            color: #6c3483;
            margin-bottom: 24px;
            font-size: 1.05rem;
        }
        .links {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }
        .link-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background: linear-gradient(90deg, #e0c3fc 0%, #8ec5fc 100%);
            color: #502478;
            font-weight: 700;
            font-size: 1.1rem;
            text-decoration: none;
            border-radius: 12px;
            padding: 14px 0;
            transition: box-shadow 0.2s, transform 0.2s;
            box-shadow: 0 2px 8px rgba(80, 36, 120, 0.08);
        }
        .link-btn:hover {
            box-shadow: 0 4px 16px rgba(80, 36, 120, 0.18);
            transform: translateY(-2px) scale(1.03);
            color: #fff;
            background: linear-gradient(90deg, #8ec5fc 0%, #e0c3fc 100%);
        }
        @media (max-width: 400px) {
            .container {
                padding: 24px 8px;
            }
            h1 {
                font-size: 1.3rem;
            }
        }