<!DOCTYPE html>
<html lang="bn">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Messenger Live Chat</title>
<style>
body {
font-family: 'Poppins', sans-serif;
background: #f5f5f5;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.messenger-box {
display: flex;
align-items: center;
gap: 12px;
max-width: 95%;
padding: 14px 16px;
background: #fff;
border-radius: 12px;
border: 2px solid #dbeafe;
box-shadow: 0 4px 12px rgba(0,0,0,0.05);
cursor: pointer;
transition: transform 0.2s, box-shadow 0.2s;
text-decoration: none;
}
.messenger-box:hover {
transform: translateY(-2px);
box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}
.messenger-icon {
min-width: 48px;
min-height: 48px;
background: #1877f2;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 24px;
color: #fff;
}
.messenger-text {
font-size: 16px;
color: #1f2937;
line-height: 1.4;
flex: 1;
}
@media (max-width: 480px) {
.messenger-text {
font-size: 14px;
}
.messenger-icon {
min-width: 40px;
min-height: 40px;
font-size: 20px;
}
}
</style>
</head>
<body>
<a href="https://m.me/61578889056074" target="_blank" class="messenger-box">
<div class="messenger-icon">đŦ</div>
<div class="messenger-text">āĻŽā§āϏā§āĻā§āĻāĻžāϰ⧠āϞāĻžāĻāĻ āĻā§āϝāĻžāĻā§āϰ āĻāύā§āϝ āĻāĻāĻžāύ⧠āĻā§āϞāĻŋāĻ āĻāϰā§āύāĨ¤</div>
</a>
</body>
</html>