@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@800;900&display=swap");
:root {
  --bg0: #020504;
  --bg1: #06130c;
  --green: #00ff88;
  --green-soft: #6dffbf;
  --green-deep: #009d55;
  --yellow: #f7ff74;
  --text: #f4fff9;
  --muted: rgba(244, 255, 249, 0.72);
  --faint: rgba(244, 255, 249, 0.14);
  --glass: rgba(5, 20, 12, 0.68);
  --glass-strong: rgba(1, 12, 7, 0.82);
  --shadow: 0 26px 80px rgba(0, 255, 136, 0.15);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max: 760px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 18% 12%, rgba(0, 255, 136, 0.22), transparent 32rem),
    radial-gradient(circle at 80% 22%, rgba(247, 255, 116, 0.10), transparent 26rem),
    linear-gradient(145deg, #010302 0%, #041107 38%, #020604 100%);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

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

.orb {
  position: absolute;
  width: 32rem;
  height: 32rem;
  border-radius: 999px;
  filter: blur(48px);
  opacity: 0.42;
  animation: floaty 11s ease-in-out infinite;
}

.orb-a {
  top: -8rem;
  right: -7rem;
  background: rgba(0, 255, 136, 0.42);
}

.orb-b {
  bottom: -13rem;
  left: -10rem;
  background: rgba(0, 157, 85, 0.36);
  animation-delay: -4s;
}

.grid-glow {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 72%, transparent);
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 28px));
  margin: 0 auto;
  padding: 34px 0 46px;
}

.hero-card {
  position: relative;
  padding: 34px 22px 24px;
  border: 1px solid rgba(109, 255, 191, 0.26);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)),
    var(--glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  text-align: center;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(0,255,136,0.22), transparent 18rem),
    linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
  opacity: 0.72;
  pointer-events: none;
}

.hero-card > * {
  position: relative;
  z-index: 1;
}

.live-chip {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(0, 255, 136, 0.34);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.34);
  color: var(--green-soft);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.08em;
  direction: ltr;
}

.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 16px var(--green);
  animation: pulse 1.4s ease-in-out infinite;
}

.avatar-ring {
  width: 122px;
  height: 122px;
  margin: 10px auto 18px;
  padding: 4px;
  border-radius: 999px;
  background:
    conic-gradient(from 180deg, var(--green), var(--yellow), var(--green-deep), var(--green));
  box-shadow:
    0 0 0 8px rgba(0,255,136,0.06),
    0 22px 56px rgba(0,255,136,0.22);
}

.avatar {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 999px;
  object-fit: cover;
  background: #021006;
  border: 3px solid rgba(0,0,0,0.75);
}

.micro-title {
  margin: 0 0 6px;
  color: var(--green-soft);
  font-weight: 800;
  letter-spacing: 0.02em;
}

h1 {
  margin: 0;
  font-size: clamp(42px, 10vw, 74px);
  line-height: 0.92;
  letter-spacing: -0.055em;
  text-shadow: 0 0 30px rgba(0,255,136,0.28);
  direction: ltr;
}

.bio {
  margin: 18px auto 0;
  max-width: 560px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.bio strong {
  color: var(--text);
}

.cta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 22px auto 18px;
  max-width: 560px;
}

.cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 12px 16px;
  border-radius: 18px;
  font-weight: 950;
  border: 1px solid rgba(255,255,255,0.12);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.cta-primary {
  background: linear-gradient(135deg, var(--green), var(--green-deep));
  color: #001e10;
  box-shadow: 0 16px 44px rgba(0,255,136,0.20);
}

.cta-secondary {
  background: rgba(255,255,255,0.07);
  color: var(--text);
}

.cta:hover {
  transform: translateY(-2px);
  border-color: rgba(109,255,191,0.56);
}

.socials {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0 auto;
  max-width: 620px;
}

.social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 36px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.88);
  font-size: 13px;
  font-weight: 800;
  direction: ltr;
  transition: transform 180ms ease, background 180ms ease;
}

.social:hover {
  transform: translateY(-2px);
  background: rgba(0,255,136,0.12);
}

.section-head {
  margin: 30px 4px 14px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.section-head p {
  margin: 0;
  color: var(--green-soft);
  font-size: 13px;
  font-weight: 900;
}

.section-head h2 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.035em;
}

.links-list {
  display: grid;
  gap: 13px;
}

.link-card {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr auto;
  align-items: center;
  gap: 14px;
  width: 100%;
  min-height: 76px;
  padding: 13px 15px;
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.025)),
    var(--glass-strong);
  color: var(--text);
  box-shadow: 0 18px 48px rgba(0,0,0,0.24);
  cursor: pointer;
  overflow: hidden;
  text-align: right;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

a.link-card {
  cursor: pointer;
}

button.link-card {
  border-style: solid;
}

.link-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(0,255,136,0.08), transparent);
  transform: translateX(120%);
  transition: transform 420ms ease;
}

.link-card:hover {
  transform: translateY(-3px) scale(1.005);
  border-color: rgba(0,255,136,0.48);
  box-shadow: 0 22px 64px rgba(0,255,136,0.12);
}

.link-card:hover::before {
  transform: translateX(-120%);
}

.link-card.featured {
  border-color: rgba(0,255,136,0.42);
  background:
    radial-gradient(circle at 100% 0%, rgba(0,255,136,0.20), transparent 18rem),
    linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.035)),
    rgba(1, 18, 9, 0.86);
}

.icon-box {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(0,255,136,0.10);
  border: 1px solid rgba(109,255,191,0.20);
  font-size: 25px;
  overflow: hidden;
}

.icon-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.link-copy {
  font-size: 13px;
  color: var(--green-soft);
  font-weight: 950;
}

.link-content {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.link-title {
  display: block;
  font-size: 17px;
  line-height: 1.25;
  font-weight: 950;
}

.link-subtitle {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.35;
}

.arrow {
  position: relative;
  z-index: 1;
  color: var(--green-soft);
  font-size: 22px;
  transform: rotate(180deg);
  opacity: 0.9;
}

.footer {
  margin-top: 28px;
  padding: 24px 16px 8px;
  text-align: center;
  color: rgba(244,255,249,0.55);
  font-size: 13px;
}

.footer-mark {
  width: 44px;
  height: 44px;
  margin: 0 auto 10px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: rgba(0,255,136,0.10);
  border: 1px solid rgba(0,255,136,0.22);
  color: var(--green-soft);
  font-weight: 1000;
  direction: ltr;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 20;
  transform: translate(-50%, 120px);
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(0, 255, 136, 0.94);
  color: #001e10;
  font-weight: 950;
  box-shadow: 0 18px 48px rgba(0,0,0,0.34);
  transition: transform 220ms ease;
}

.toast.show {
  transform: translate(-50%, 0);
}

@keyframes pulse {
  0%, 100% { opacity: 0.58; transform: scale(0.92); }
  50% { opacity: 1; transform: scale(1.12); }
}

@keyframes floaty {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(18px, -16px, 0) scale(1.06); }
}

@media (max-width: 620px) {
  .page-shell {
    width: min(100% - 18px, var(--max));
    padding-top: 16px;
  }

  .hero-card {
    padding: 58px 14px 20px;
    border-radius: 28px;
  }

  .live-chip {
    top: 14px;
    left: 14px;
  }

  .avatar-ring {
    width: 112px;
    height: 112px;
  }

  .cta-row {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: block;
    margin-top: 24px;
  }

  .section-head h2 {
    margin-top: 4px;
  }

  .link-card {
    grid-template-columns: 52px 1fr auto;
    min-height: 72px;
    padding: 12px;
    border-radius: 21px;
  }

  .icon-box {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }

  .link-title {
    font-size: 16px;
  }

  .link-subtitle {
    font-size: 12.5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
/* OAO-LANG-SWITCH-START */
.lang-switch {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px;
  border: 1px solid rgba(109, 255, 191, 0.22);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.28);
  box-shadow: 0 14px 34px rgba(0,0,0,0.20);
  backdrop-filter: blur(12px);
  direction: ltr;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: rgba(244, 255, 249, 0.72);
  font-weight: 950;
  font-size: 12px;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.lang-btn:hover {
  transform: translateY(-1px);
  color: var(--text);
  background: rgba(255,255,255,0.07);
  border-color: rgba(109,255,191,0.18);
}

.lang-btn.active {
  background: linear-gradient(135deg, var(--green), var(--green-deep));
  color: #001e10;
  border-color: rgba(247,255,116,0.18);
  box-shadow: 0 8px 22px rgba(0,255,136,0.18);
}

[dir="ltr"] .bio,
[dir="ltr"] .section-head,
[dir="ltr"] .links-list,
[dir="ltr"] .footer {
  direction: ltr;
}

[dir="ltr"] .link-card {
  text-align: left;
  direction: ltr;
}

[dir="ltr"] .arrow {
  transform: none;
}

[dir="ltr"] .link-card.featured {
  background:
    radial-gradient(circle at 0% 0%, rgba(0,255,136,0.20), transparent 18rem),
    linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.035)),
    rgba(1, 18, 9, 0.86);
}

@media (max-width: 620px) {
  .lang-switch {
    top: 14px;
    right: 14px;
    gap: 5px;
    padding: 5px;
  }

  .lang-btn {
    min-height: 32px;
    padding: 6px 8px;
    font-size: 11px;
  }
}
/* OAO-LANG-SWITCH-END */
/* OAO-FONT-RESTORE-START */
:root {
  --font-ui: "Segoe UI", Arial, Helvetica, sans-serif;
  --font-display: "Rubik", "Segoe UI", Arial, Helvetica, sans-serif;
}

html,
body,
button,
input,
textarea,
select {
  font-family: var(--font-ui) !important;
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  text-rendering: auto;
}

body {
  font-family: var(--font-ui) !important;
}

/* Keep only the main Studioman title strong and pretty */
h1,
#profileTitle {
  font-family: var(--font-display) !important;
  font-weight: 900 !important;
  letter-spacing: -0.06em;
  text-shadow: 0 0 26px rgba(0,255,136,0.24);
}

/* Everything else goes back to the cleaner readable style */
.micro-title,
.bio,
.cta,
.social,
.section-head,
.link-card,
.link-title,
.link-subtitle,
.footer,
.lang-btn,
.live-chip {
  font-family: var(--font-ui) !important;
}

.cta,
.social,
.lang-btn,
.live-chip {
  font-weight: 800 !important;
}

.link-title {
  font-weight: 900 !important;
}

.section-head h2 {
  font-weight: 900 !important;
}

.section-head p,
.link-copy,
.footer-mark,
.bio strong {
  font-weight: 800 !important;
}

.bio,
.link-subtitle,
.footer {
  font-weight: 400 !important;
}

[dir="rtl"] .link-title,
[dir="rtl"] .link-subtitle,
[dir="rtl"] .bio,
[dir="rtl"] .section-head {
  letter-spacing: 0;
}
/* OAO-FONT-RESTORE-END */
/* OAO-CHROME-FONT-TUNE-START */
/* Chrome / Edge / Blink only — Firefox stays with the restored beautiful font */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  html,
  body,
  button,
  input,
  textarea,
  select {
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
  }

  /* Do NOT touch the big Studioman title */
  h1,
  #profileTitle {
    font-weight: 900 !important;
  }

  /* Softer Hebrew in Chrome */
  .micro-title {
    font-weight: 700 !important;
  }

  .bio,
  .link-subtitle,
  .footer {
    font-weight: 400 !important;
  }

  .bio strong {
    font-weight: 700 !important;
  }

  .cta,
  .social,
  .lang-btn,
  .live-chip {
    font-weight: 700 !important;
  }

  .section-head h2 {
    font-weight: 800 !important;
    letter-spacing: -0.02em;
  }

  .section-head p {
    font-weight: 700 !important;
  }

  .link-title {
    font-weight: 750 !important;
    letter-spacing: 0;
  }

  .link-copy,
  .footer-mark {
    font-weight: 750 !important;
  }

  [dir="rtl"] .link-title,
  [dir="rtl"] .section-head h2 {
    letter-spacing: -0.01em;
  }
}
/* OAO-CHROME-FONT-TUNE-END */
/* OAO-MATRIX-RINGS-START */
.background {
  isolation: isolate;
}

.matrix-rain {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.9;
  mix-blend-mode: screen;
}

.grid-glow,
.orb {
  pointer-events: none;
}

.page-shell {
  position: relative;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .matrix-rain {
    display: none;
  }
}
/* OAO-MATRIX-RINGS-END */