:root {
  --primary: #48c2f1;
  --primary-dark: #2b9ad5;
  --background: #f5fbff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Poppins", sans-serif;
  background: radial-gradient(circle at top, rgba(72, 194, 241, 0.25), transparent 45%)
      var(--background)
      fixed;
  color: #042536;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 32px 16px 48px;
}

.card {
  width: 100%;
  max-width: 420px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 32px;
  padding: 40px 28px 32px;
  box-shadow: 0 20px 60px rgba(13, 77, 112, 0.15);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(72, 194, 241, 0.18) 15%, transparent 20%);
  background-size: 28px 28px;
  opacity: 0.35;
  pointer-events: none;
}

.branding {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.logo {
  width: 140px;
  height: 140px;
  border-radius: 32px;
  padding: 16px;
  background: linear-gradient(135deg, rgba(112, 212, 247, 0.3), rgba(72, 194, 241, 0.3));
  box-shadow: 0 10px 30px rgba(43, 154, 213, 0.2);
}

h1 {
  margin: 0;
  font-size: 1.75rem;
  font-weight: 600;
  color: #06314c;
}

.socials {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}

.social-link {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(6, 49, 76, 0.15);
  background: rgba(72, 194, 241, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.social-link img {
  width: 22px;
  height: 22px;
  display: block;
}

.social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(72, 194, 241, 0.3);
}

.links {
  position: relative;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.link {
  position: relative;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 24px;
  padding-left: 90px;
  min-height: 64px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  color: #06314c;
  background: var(--primary);
  color: #fff;
  overflow: hidden;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.25), 0 15px 40px rgba(72, 194, 241, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 68px;
  background: var(--primary-dark);
}

.link:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.4), 0 15px 45px rgba(72, 194, 241, 0.45);
}

.link i {
  position: absolute;
  left: 22px;
  color: #fff;
  font-size: 1.15rem;
}

.link span {
  flex: 1;
  text-align: center;
  margin-left: -64px;
}

footer {
  position: relative;
  margin-top: 40px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(6, 49, 76, 0.65);
}

@media (max-width: 480px) {
  .card {
    padding: 32px 20px 28px;
    border-radius: 24px;
  }

  .logo {
    width: 120px;
    height: 120px;
  }
}
