* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  background: #f4f4f4;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 20px;
}

.card {
  width: 100%;
  max-width: 420px;
  background: #fff;
  border-radius: 24px;
  padding: 24px 20px 28px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Header */
.logo-img {
  width: 60px;
  margin-bottom: 10px;
}

.header h1 {
  font-size: 18px;
  font-weight: 700;
  color: #222;
}

.header p {
  font-size: 13px;
  color: #777;
  margin-top: 4px;
}

/* Links */
.links {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.link-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #ffe2d6; /* Peach */
  color: #222;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.link-btn img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  background: #fff;
}

.link-btn:hover {
  background: #ffd2c2;
  transform: translateY(-1px);
}

/* Socials */
.socials {
  margin: 22px 0 10px;
  display: flex;
  justify-content: center;
  gap: 18px;
}

.socials a {
  color: #ff8a65; /* Peach accent */
  font-size: 22px;
  transition: transform 0.2s ease;
}

.socials a:hover {
  transform: scale(1.1);
}

/* Footer */
.footer {
  margin-top: 16px;
}

.join-btn {
  background: #ff8a65;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.join-btn:hover {
  opacity: 0.9;
}

.small {
  margin-top: 10px;
  font-size: 11px;
  color: #888;
}
