:root {
  --bg: #020408;
  --panel: rgba(0, 12, 28, 0.74);
  --panel-strong: rgba(0, 18, 42, 0.88);
  --text: #ffffff;
  --muted: #aebbd0;
  --blue: #008cff;
  --blue2: #00c8ff;
  --line: rgba(0, 140, 255, 0.38);
  --soft-glow: 0 0 24px rgba(0, 140, 255, 0.16);
  --button-glow: 0 0 20px rgba(0, 140, 255, 0.55), 0 0 48px rgba(0, 140, 255, 0.22);
}

* { box-sizing: border-box; }

html { min-height: 100%; background: var(--bg); }

body {
  margin: 0;
  min-height: 100%;
  font-family: "Exo 2", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 8%, rgba(0, 200, 255, 0.13), transparent 24rem),
    radial-gradient(circle at 88% 25%, rgba(0, 140, 255, 0.10), transparent 22rem),
    radial-gradient(circle at 50% 105%, rgba(0, 140, 255, 0.12), transparent 26rem),
    #020408;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(rgba(255,255,255,0.026) 1px, transparent 1px);
  background-size: 100% 4px;
  opacity: 0.16;
}


.neon-rings {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.ring {
  position: absolute;
  display: block;
  border-radius: 50%;
  border: 2px solid rgba(0, 200, 255, 0.28);
  background: transparent;
  box-shadow:
    0 0 18px rgba(0, 200, 255, 0.34),
    0 0 54px rgba(0, 140, 255, 0.22),
    inset 0 0 28px rgba(0, 200, 255, 0.10);
  filter: blur(0.2px);
  opacity: 0.72;
}

.ring-one {
  width: clamp(240px, 58vw, 430px);
  height: clamp(240px, 58vw, 430px);
  left: -160px;
  top: 24px;
  animation: ringFloatOne 42s ease-in-out infinite alternate;
}

.ring-two {
  width: clamp(190px, 42vw, 340px);
  height: clamp(190px, 42vw, 340px);
  right: -150px;
  top: 38%;
  animation: ringFloatTwo 54s ease-in-out infinite alternate;
}

.ring-three {
  width: clamp(170px, 38vw, 300px);
  height: clamp(170px, 38vw, 300px);
  left: -130px;
  bottom: 80px;
  animation: ringFloatThree 64s ease-in-out infinite alternate;
}

@keyframes ringFloatOne {
  from { transform: translate3d(0, 0, 0) scale(1); opacity: 0.58; }
  to { transform: translate3d(44px, 32px, 0) scale(1.06); opacity: 0.82; }
}

@keyframes ringFloatTwo {
  from { transform: translate3d(0, 0, 0) scale(1); opacity: 0.48; }
  to { transform: translate3d(-42px, -46px, 0) scale(1.08); opacity: 0.76; }
}

@keyframes ringFloatThree {
  from { transform: translate3d(0, 0, 0) scale(1); opacity: 0.44; }
  to { transform: translate3d(54px, -24px, 0) scale(1.05); opacity: 0.70; }
}

@media (prefers-reduced-motion: reduce) {
  .ring { animation: none; }
  .social-divider b { animation: none; }
}


.page {
  position: relative;
  z-index: 1;
  width: min(560px, calc(100% - 28px));
  margin: 0 auto;
  padding: 30px 0 24px;
}

.hero {
  text-align: center;
  padding: 8px 0 18px;
}

.logo {
  width: min(300px, 64vw);
  display: block;
  margin: 0 auto;
  border-radius: 0;
  filter: drop-shadow(0 0 10px rgba(0, 140, 255, 0.28));
}

.hero::after { content: none; }

.section-label {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.38em;
  text-align: center;
}


.socials {
  display: grid;
  gap: 12px;
  margin: 4px 0 24px;
}

.social-row {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 14px;
  align-items: center;
  min-height: 74px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, var(--panel-strong), rgba(0, 0, 0, 0.66));
  box-shadow: inset 0 0 22px rgba(0, 140, 255, 0.06), var(--soft-glow);
  color: var(--text);
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.social-row:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 200, 255, 0.82);
  box-shadow: inset 0 0 24px rgba(0, 140, 255, 0.10), 0 0 24px rgba(0, 140, 255, 0.22);
}

.brand-icon {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(0, 200, 255, 0.52);
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: rgba(0, 140, 255, 0.08);
}

.brand-icon img {
  width: 24px;
  height: 24px;
  display: block;
}

.social-text {
  display: grid;
  gap: 3px;
}

.social-text strong {
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.social-text small,
.tips small {
  color: var(--muted);
  font-size: 0.92rem;
}

.social-action {
  min-width: 82px;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(0, 200, 255, 0.58);
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  background: rgba(0, 140, 255, 0.12);
}

.tips {
  margin-top: 22px;
  min-height: 104px;
  padding: 16px 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    radial-gradient(circle at 12% 50%, rgba(0, 200, 255, 0.16), transparent 8rem),
    linear-gradient(180deg, var(--panel-strong), rgba(0, 0, 0, 0.66));
  box-shadow: inset 0 0 22px rgba(0, 140, 255, 0.06), var(--soft-glow);
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 14px;
  align-items: center;
  color: var(--text);
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.tips:hover,
.tips:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(0, 200, 255, 0.82);
  box-shadow: inset 0 0 24px rgba(0, 140, 255, 0.10), 0 0 24px rgba(0, 140, 255, 0.22);
}

.tips:hover .tip-button,
.tips:focus-visible .tip-button {
  box-shadow: var(--button-glow), 0 0 28px rgba(0, 200, 255, 0.28);
}

.tip-copy {
  display: grid;
  gap: 4px;
  text-align: left;
}

.tip-copy h2 {
  margin: 0;
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tip-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.35;
}

.tip-jar {
  width: 64px;
  height: 70px;
  position: relative;
  margin: 0 auto;
  filter: drop-shadow(0 0 12px rgba(0, 200, 255, 0.70)) drop-shadow(0 0 28px rgba(0, 140, 255, 0.30));
  animation: jarGlow 3.8s ease-in-out infinite;
}

.jar-lid {
  position: absolute;
  left: 17px;
  top: 3px;
  width: 31px;
  height: 10px;
  border: 2px solid var(--blue2);
  border-radius: 999px;
  background: rgba(0, 140, 255, 0.12);
  box-shadow: inset 0 0 10px rgba(0, 200, 255, 0.16);
}

.jar-glass {
  position: absolute;
  left: 9px;
  top: 15px;
  width: 46px;
  height: 52px;
  border: 2px solid var(--blue2);
  border-radius: 13px 13px 16px 16px;
  background: linear-gradient(180deg, rgba(0, 200, 255, 0.08), rgba(0, 140, 255, 0.02));
  box-shadow:
    inset 0 0 14px rgba(0, 200, 255, 0.16),
    0 0 16px rgba(0, 200, 255, 0.36);
}

.jar-glass::before {
  content: "";
  position: absolute;
  left: 9px;
  top: -9px;
  width: 20px;
  height: 10px;
  border: 2px solid var(--blue2);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
}

.jar-heart {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  text-shadow: 0 0 14px rgba(0, 200, 255, 0.78);
  transform: translateY(1px);
}

@keyframes jarGlow {
  0%, 100% { opacity: 0.82; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-2px); }
}

.tip-button {
  min-width: 132px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--blue2);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  background: linear-gradient(90deg, rgba(0, 120, 255, 0.94), rgba(0, 200, 255, 0.72));
  box-shadow: var(--button-glow);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  font-weight: 900;
  text-decoration: none;
}

footer {
  text-align: center;
  color: var(--muted);
  padding: 22px 0 0;
  font-size: 0.9rem;
}

@media (max-width: 460px) {
  .page { width: min(100% - 20px, 560px); padding-top: 18px; }
  .logo { width: 76vw; max-width: 300px; }
  .social-row { grid-template-columns: 48px 1fr; }
  .brand-icon { width: 46px; height: 46px; }
  .social-action { grid-column: 1 / -1; width: 100%; }
  .tips { grid-template-columns: 48px 1fr; gap: 12px; }
  .tip-jar { width: 46px; height: 52px; }
  .jar-lid { left: 12px; top: 2px; width: 24px; height: 9px; }
  .jar-glass { left: 7px; top: 13px; width: 34px; height: 38px; }
  .jar-glass::before { left: 8px; top: -8px; width: 16px; height: 8px; }
  .jar-heart { font-size: 1.45rem; }
  .tip-copy { text-align: left; }
  .tip-button { grid-column: 1 / -1; width: 100%; }
}

.tip-header {
  text-align: center;
  color: #8fd3ff;
  letter-spacing: 0.32em;
  font-weight: 700;
  font-size: 0.78rem;
  margin: 26px 0 12px;
  text-transform: uppercase;
  text-shadow: 0 0 12px rgba(0, 140, 255, 0.42);
} 


@media (max-width: 768px){
  .hero{
    padding: 4px 0 12px;
  }
  .logo{
    width:min(420px,85vw);
    filter: drop-shadow(0 0 14px rgba(0,140,255,.4));
  }
}



.tips h2,
.tips p,
.tips span {
  text-decoration: none;
}

.tips:link,
.tips:visited,
.tips:hover,
.tips:active {
  color: var(--text);
  text-decoration: none;
}
