@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Thai:wght@400;700&display=swap');

body {
  font-family: "Noto Sans Thai", sans-serif;
  background: url('https://lineoa.xn--72cfe0de5b5esbf7sdp.com/assets/images/background.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
  margin: 0;
  padding: 0;
}

/* Container หลัก */
.container {
  max-width: 480px;
  margin: 0 auto;
  padding: 20px 20px;
}

/* โลโก้ */
.logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: white;
  padding: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,.4);
}

/* หัวข้อหลัก */
h1 {
  margin: 10px 0 5px;
  font-weight: 700;
  color: #000;
}

p {
  margin: 0 0 25px;
  line-height: 1.6;
  font-size: 15px;
  font-weight: 700;
  color: #000;
}

/* กล่องลิงก์ทั้งหมด */
.social-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ปุ่มแต่ละอัน */
.social-card {
  display: flex;
  align-items: center; /* จัดให้อยู่กึ่งกลางแนวตั้ง */
  justify-content: flex-start; /* เริ่มชิดซ้าย */
  background: #f15831;
  border-radius: 30px;
  padding: 12px 20px;
  color: white;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 6px rgba(0,0,0,.3);
  transition: all 0.2s ease;
  position: relative;
}

/* ไอคอนด้านซ้าย */
.social-card img {
  width: 28px;
  height: 28px;
  background: white;
  border-radius: 50%;
  padding: 5px;
  flex-shrink: 0;
  margin-right: 15px;
}

/* ข้อความให้อยู่กึ่งกลางโดยใช้ absolute + translate */
.social-card span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 700;
  color: #fff;
  pointer-events: none;
}

/* hover effect */
.social-card:hover {
  background: #e24a27;
  transform: translateY(-2px);
}
