@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

body.tamara-links-page {
  margin: 0;
  padding-inline: 14px; /* Sets 14px on left and right */
  background-color: #4FA7C4;
  font-family: 'Poppins', sans-serif;
  color: #2C3938;
}

.tlp-card {
  max-width: 580px;
  margin: 40px auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 32px rgba(0,0,0,0.15);
  background-color: #6DD2E8;
  position: relative;
}

.tlp-hero {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
}
@media (min-width: 600px) {
  .tlp-hero { height: 460px; }
}
.tlp-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
  display: block;
}
.tlp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(109,210,232,0) 0%, rgba(109,210,232,0.85) 75%, #6DD2E8 100%);
}

.tlp-profile {
  padding: 16px 24px 24px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.tlp-name {
  font-size: 2.5rem;
  font-weight: 600;
  margin: 0 0 12px;
}

.tlp-bio {
  font-size: 1rem;
  line-height: 1.5;
  margin: 0 0 20px;
}

.tlp-social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 8px;
}
.tlp-social-icons svg {
  width: 28px;
  height: 28px;
  display: block;
  fill: #000;
}

.tlp-links {
  padding: 16px 24px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tlp-link {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(rgba(255,255,255,0.35), rgba(255,255,255,0.15));
  backdrop-filter: blur(6px);
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0,0,0,0.06);
  padding: 14px 20px;
  text-decoration: none;
  color: #000;
  font-weight: 500;
  font-size: 16px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.tlp-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}
.tlp-link-icon,
.tlp-link-icon svg {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
  fill: #000;
}
.tlp-link-label {
  flex: 1;
  text-align: center;
}
.tlp-link-spacer {
  width: 40px;
  flex-shrink: 0;
}

.tlp-link--feature {
  flex-direction: column;
  align-items: stretch;
  padding: 12px;
  gap: 10px;
  background: rgba(255,255,255,0.15);
}
.tlp-link-feature-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
.tlp-link--feature .tlp-link-label {
  padding: 0 0 6px;
}
.tlp-social-icons a {
    color: #000;
    display: block;
}
.tlp-share-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #000;
  padding: 0;
}
.tlp-share-btn svg {
  width: 20px;
  height: 20px;
}
.tlp-share-btn:hover {
  background: rgba(255, 255, 255, 0.85);
}
@keyframes tlp-buzz {
  0%    { transform: translateX(3px) rotate(1deg); }
  2.5%  { transform: translateX(-3px) rotate(-1deg); }
  5%    { transform: translateX(3px) rotate(1deg); }
  7.5%  { transform: translateX(-3px) rotate(-1deg); }
  10%   { transform: translateX(2px) rotate(1deg); }
  12.5% { transform: translateX(-2px) rotate(-1deg); }
  15%   { transform: translateX(2px) rotate(1deg); }
  17.5% { transform: translateX(-2px) rotate(-1deg); }
  20%   { transform: translateX(1px) rotate(1deg); }
  22.5% { transform: translateX(-1px) rotate(-1deg); }
  25%   { transform: translateX(0) rotate(0); }
}
.tlp-link--shake {
  animation: tlp-buzz 3s linear infinite;
}
.tlp-home-wrap {
  max-width: 580px;
  margin: -10px auto 40px;
  text-align: center;
}
.tlp-home-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 30%;
  background: rgba(0,0,0,0.15);
  color: #000;
  text-decoration: none;
}
.tlp-home-link svg {
  width: 22px;
  height: 22px;
}
.tlp-home-link:hover {
  background: rgba(255,255,255,0.85);
}