.elementor-4934 .elementor-element.elementor-element-575c368{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-4934 .elementor-element.elementor-element-c9422cf > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}/* Start custom CSS for html, class: .elementor-element-c9422cf */.ga-linktree {
      --ga-cta:        #DF1919;
  --ga-teal:       #3DAFB4;
  --ga-near-black: #161616;
  --ga-white:      #FFFFFF;

  font-family: 'Work Sans', Helvetica Neue, Helvetica, Arial, sans-serif;
  background-color: var(--ga-near-black);
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 48px 16px 64px;
  position: relative;
  overflow: hidden;
}

/* Noise texture */
.ga-linktree::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='2.9' numOctaves='10' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* Teal glow top */
.ga-linktree::after {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse at center, rgba(61,175,180,0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ── Inner container ── */
.ga-linktree__inner {
  width: 100%;
  max-width: 480px;
  position: relative;
  z-index: 1;
  animation: ga-fadeUp 0.6s ease both;
}

@keyframes ga-fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Profile block ── */
.ga-linktree__profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 36px;
}

.ga-linktree__avatar-wrap {
  position: relative;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
}

.ga-linktree__avatar-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--ga-teal);
  opacity: 0.6;
  pointer-events: none;
}

.ga-linktree__avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #3DAFB4;
  display: block;
}

.ga-linktree__name {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--ga-white);
  text-transform: uppercase;
  margin-bottom: 10px;
  text-align: center;
  line-height: 1.2;
}

.ga-linktree__rule {
  width: 250px;
  height: 3px;
  background: var(--ga-teal);
  margin: 0 auto;
  border-radius: 2px;
}

/* ── Links section ── */
.ga-linktree__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ── Section divider ── */
.ga-linktree__section-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 8px 0 4px;
  animation: ga-fadeUp 0.6s ease both;
}

.ga-linktree__section-divider::before,
.ga-linktree__section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(61,175,180,0.25);
}

.ga-linktree__section-label {
  font-family: 'Work Sans', Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(61,175,180,0.55);
  white-space: nowrap;
}

/* ── Link base ── */
.ga-linktree__link {
  display: flex;
  align-items: center;
  text-decoration: none;
  border-radius: 4px;
  padding: 16px 24px;
  font-family: 'Work Sans', Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
  position: relative;
  overflow: hidden;
  animation: ga-fadeUp 0.6s ease both;
}

/* Staggered animation delays */
.ga-linktree__link:nth-child(1)  { animation-delay: 0.06s; }
.ga-linktree__link:nth-child(2)  { animation-delay: 0.10s; }
.ga-linktree__link:nth-child(3)  { animation-delay: 0.14s; }
.ga-linktree__link:nth-child(4)  { animation-delay: 0.18s; }
.ga-linktree__link:nth-child(5)  { animation-delay: 0.22s; }
.ga-linktree__link:nth-child(6)  { animation-delay: 0.26s; }
.ga-linktree__link:nth-child(7)  { animation-delay: 0.30s; }
.ga-linktree__link:nth-child(8)  { animation-delay: 0.34s; }
.ga-linktree__link:nth-child(9)  { animation-delay: 0.38s; }
.ga-linktree__link:nth-child(10) { animation-delay: 0.42s; }
.ga-linktree__link:nth-child(11) { animation-delay: 0.46s; }
.ga-linktree__link:nth-child(12) { animation-delay: 0.50s; }

.ga-linktree__link:hover {
  transform: translateY(-2px);
}

/* Primary CTA */
.ga-linktree__link--primary {
  background: var(--ga-cta);
  color: var(--ga-white);
  box-shadow: 0 4px 20px rgba(223,25,25,0.28);
}

.ga-linktree__link--primary:hover {
  background: #C01515;
  box-shadow: 0 6px 28px rgba(223,25,25,0.38);
  color: var(--ga-white);
}

/* Secondary */
.ga-linktree__link--secondary {
  background: rgba(255,255,255,0.04);
  color: var(--ga-white);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

.ga-linktree__link--secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(61,175,180,0.4);
  box-shadow: 0 4px 16px rgba(61,175,180,0.12);
  color: var(--ga-white);
}

/* Teal left accent bar on secondary */
.ga-linktree__link--secondary::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--ga-teal);
  opacity: 0.7;
}

/* Social links: slightly more compact */
.ga-linktree__link--social {
  padding: 13px 24px;
  font-size: 14px;
}

.ga-linktree__link-label {
  flex: 1;
  text-align: center;
}

.ga-linktree__link-label em {
  font-style: italic;
}

/* Arrow icon */
.ga-linktree__arrow {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.5;
}

/* ── Footer ── */
.ga-linktree__footer {
  margin-top: 40px;
  text-align: center;
  font-family: 'Work Sans', Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  animation: ga-fadeUp 0.6s 0.6s ease both;
}

.ga-linktree__footer a {
  color: rgba(61,175,180,0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.ga-linktree__footer a:hover {
  color: var(--ga-teal);
}/* End custom CSS */