:root {
      color-scheme: dark;
      --panel: #000;
      --text: #fff;
      --muted: rgba(255, 255, 255, 0.68);
      --line: rgba(255, 255, 255, 0.1);
      --radius-xl: 30px;
      --radius-lg: 18px;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      min-height: 100vh;
      color: var(--text);
      background:
        radial-gradient(circle at 18% 20%, rgba(187, 199, 73, 0.72), transparent 30%),
        radial-gradient(circle at 28% 82%, rgba(210, 143, 104, 0.72), transparent 33%),
        radial-gradient(circle at 76% 36%, rgba(93, 119, 62, 0.78), transparent 34%),
        radial-gradient(circle at 79% 83%, rgba(182, 170, 179, 0.66), transparent 34%),
        #121412;
      background-attachment: fixed;
    }

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

    .page-shell {
      width: min(100%, 708px);
      min-height: 100vh;
      margin: 0 auto;
      background: var(--panel);
      box-shadow: 0 0 30px rgba(0, 0, 0, 0.46);
    }

    .profile-card {
      min-height: 100vh;
      overflow: visible;
      background: #000;
    }

    .mini-header {
      position: fixed;
      top: 0;
      left: 50%;
      z-index: 12;
      width: min(100%, 708px);
      height: 60px;
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 10px 20px;
      background: rgba(0, 0, 0, 0.78);
      opacity: 0;
      transform: translate(-50%, -8px);
      pointer-events: none;
      transition: opacity 180ms ease, transform 180ms ease;
      backdrop-filter: blur(12px);
    }

    .mini-header.visible {
      opacity: 1;
      transform: translate(-50%, 0);
      pointer-events: auto;
    }

    .mini-avatar,
    .avatar-placeholder {
      flex: 0 0 auto;
      display: grid;
      place-items: center;
      overflow: hidden;
      color: rgba(255, 255, 255, 0.78);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.02)),
        radial-gradient(circle at 32% 24%, #f4cf94, transparent 18%),
        linear-gradient(150deg, #2e2e2f, #161616 50%, #6e655d);
    }

    .mini-avatar {
      width: 38px;
      height: 38px;
      border-radius: 999px;
    }

    .mini-name {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 21px;
      font-weight: 800;
    }

    .hero {
      position: relative;
      z-index: 10;
      min-height: 690px;
      display: grid;
      align-items: end;
      overflow: visible;
      border-radius: var(--radius-xl) var(--radius-xl) 0 0;
      background: #000;
    }

    .hero-media {
      position: absolute;
      inset: 0;
      overflow: hidden;
      border-radius: inherit;
      opacity: var(--hero-opacity, 1);
      transform: none;
      transform-origin: center top;
      transition: opacity 80ms linear;
      background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.15) 46%, rgba(0, 0, 0, 0.96) 92%),
        radial-gradient(circle at 24% 14%, #b4cc3a 0 16%, transparent 17%),
        radial-gradient(circle at 83% 18%, #557c42 0 20%, transparent 21%),
        linear-gradient(115deg, #d8d3c8 0 18%, #cdb08d 19% 36%, #9e8166 37% 48%, #d6d6d0 49% 68%, #7d8d6d 69% 100%);
    }

    .hero-media::after {
      content: "Hero photo placeholder";
      position: absolute;
      top: 42%;
      left: 50%;
      width: 220px;
      padding: 12px 16px;
      border: 1px dashed rgba(255, 255, 255, 0.38);
      border-radius: 999px;
      color: rgba(255, 255, 255, 0.75);
      text-align: center;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      transform: translate(-50%, -50%);
      background: rgba(0, 0, 0, 0.25);
      backdrop-filter: blur(8px);
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background: linear-gradient(180deg, transparent 38%, rgba(0, 0, 0, 0.45) 66%, #000 93%);
    }

    .hero-content {
      position: relative;
      z-index: 2;
      width: 100%;
      padding: 0 24px 22px;
      text-align: center;
    }

    .name-row {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 7px;
    }

    h1 {
      margin: 0;
      font-size: clamp(38px, 7vw, 46px);
      line-height: 1;
      font-weight: 850;
      letter-spacing: -0.045em;
    }

    .handle {
      margin-top: 6px;
      color: var(--muted);
      font-size: 18px;
      font-weight: 700;
    }

    .verify {
      width: 26px;
      height: 26px;
      display: inline-grid;
      place-items: center;
      border-radius: 50%;
      color: #fff;
      font-size: 15px;
      font-weight: 900;
      background: linear-gradient(135deg, #8fb0ff, #594bff);
      box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.18);
    }

    .social-row {
      display: flex;
      justify-content: center;
      gap: 12px;
      margin: 18px 0 20px;
    }

    .social {
      width: 48px;
      height: 48px;
      display: grid;
      place-items: center;
      border-radius: 999px;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.26);
    }

    .social svg {
      width: 26px;
      height: 26px;
      filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.22));
    }

    .instagram {
      background: radial-gradient(circle at 28% 95%, #ffe06a 0 15%, #ff5a3d 34%, #db267f 62%, #6a35d9 100%);
    }

    .youtube {
      background: #ff1f16;
    }

    .tiktok {
      background:
        radial-gradient(circle at 28% 24%, rgba(37, 244, 238, 0.24), transparent 25%),
        radial-gradient(circle at 78% 74%, rgba(254, 44, 85, 0.24), transparent 28%),
        #050505;
    }

    .link-area {
      position: relative;
      z-index: 2;
      padding: 0 24px 28px;
      background: #000;
    }

    .feature-card,
    .small-card {
      position: relative;
      display: block;
      overflow: hidden;
      border-radius: var(--radius-lg);
      background: #111;
      isolation: isolate;
      transform: translateZ(0);
    }

    .feature-card {
      aspect-ratio: 3 / 2;
      min-height: 0;
      margin-top: -2px;
    }

    .small-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
      margin-top: 16px;
    }

    .small-card {
      min-height: 170px;
    }

    .photo-placeholder {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.72)),
        radial-gradient(circle at 74% 18%, rgba(255, 255, 255, 0.38), transparent 13%),
        linear-gradient(90deg, #e3e1db 0 34%, #986b44 35% 49%, #cfc4b7 50% 69%, #e6e6e1 70% 100%);
    }

    .photo-placeholder::after {
      content: attr(data-label);
      position: absolute;
      top: 50%;
      left: 50%;
      padding: 9px 12px;
      border: 1px dashed rgba(255, 255, 255, 0.34);
      border-radius: 999px;
      color: rgba(255, 255, 255, 0.72);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      transform: translate(-50%, -50%);
      background: rgba(0, 0, 0, 0.25);
      backdrop-filter: blur(8px);
    }

    .small-card .photo-placeholder {
      filter: saturate(0.85);
    }

    .small-card .photo-placeholder::after {
      display: none;
    }

    .small-card.tiktok-card .photo-placeholder {
      background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.58)),
        radial-gradient(circle at 16% 18%, rgba(37, 244, 238, 0.46), transparent 23%),
        radial-gradient(circle at 88% 16%, rgba(254, 44, 85, 0.38), transparent 24%),
        linear-gradient(130deg, #3d4650, #969b91 44%, #34434a 71%, #12151c);
      filter: saturate(1.12) contrast(1.06);
    }

    .small-card.youtube-card .photo-placeholder {
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.68)),
        linear-gradient(130deg, #d2d5dc, #c7a5b4 53%, #8a8387);
    }

    .small-card.instagram-card .photo-placeholder {
      background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.67)),
        radial-gradient(circle at 28% 82%, rgba(255, 224, 106, 0.52), transparent 24%),
        linear-gradient(135deg, #2e2f36, #8b5176 46%, #dc8f66);
    }

    .card-dim {
      position: absolute;
      inset: 0;
      z-index: 1;
      background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.58));
    }

    .brand-dot {
      position: absolute;
      z-index: 3;
      top: 16px;
      left: 16px;
      width: 48px;
      height: 48px;
      display: grid;
      place-items: center;
      border-radius: 999px;
      background: #1aaeed;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
      font-size: 24px;
    }

    .brand-dot svg {
      width: 30px;
      height: 30px;
    }

    .corner-icon {
      position: absolute;
      z-index: 3;
      top: 14px;
      left: 14px;
      width: 34px;
      height: 34px;
      display: grid;
      place-items: center;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      background:
        radial-gradient(circle at 28% 20%, rgba(255, 255, 255, 0.2), transparent 24%),
        linear-gradient(145deg, #15161f, #050505 68%);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 10px 18px rgba(0, 0, 0, 0.34);
    }

    .corner-icon svg {
      width: 23px;
      height: 23px;
      filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.42));
    }

    .corner-icon.tiktok-mark {
      background:
        radial-gradient(circle at 30% 26%, rgba(37, 244, 238, 0.42), transparent 25%),
        radial-gradient(circle at 78% 78%, rgba(254, 44, 85, 0.46), transparent 29%),
        linear-gradient(145deg, #232532, #060609 62%, #11121c);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 0 1px rgba(37, 244, 238, 0.14),
        0 0 18px rgba(37, 244, 238, 0.26),
        0 10px 20px rgba(0, 0, 0, 0.38);
    }

    .corner-icon.youtube {
      background:
        radial-gradient(circle at 34% 20%, rgba(255, 255, 255, 0.48), transparent 24%),
        linear-gradient(135deg, #ff554c, #ff1f16 58%, #960704);
    }

    .corner-icon.instagram {
      background:
        radial-gradient(circle at 28% 95%, #ffe06a 0 15%, #ff5a3d 34%, #db267f 62%, #6a35d9 100%),
        linear-gradient(135deg, #7434db, #ff6f61);
    }

    .corner-icon.impressum {
      background:
        linear-gradient(135deg, rgba(226, 214, 198, 0.86), rgba(116, 109, 99, 0.62)),
        rgba(255, 255, 255, 0.12);
      backdrop-filter: blur(8px);
    }

    .card-title {
      position: absolute;
      z-index: 3;
      left: 18px;
      right: 18px;
      bottom: 20px;
      margin: 0;
      color: #fff;
      text-align: center;
      font-size: 24px;
      line-height: 1.1;
      font-weight: 850;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
    }

    .logo-title {
      position: absolute;
      z-index: 3;
      inset: 0;
      display: grid;
      place-items: center;
      color: rgba(255, 255, 255, 0.84);
      font-size: 48px;
      font-weight: 900;
      letter-spacing: -0.055em;
      text-shadow: 0 8px 24px rgba(0, 0, 0, 0.78);
    }

    .logo-title.youtube-logo {
      color: rgba(255, 178, 211, 0.82);
      text-shadow: 0 10px 24px rgba(0, 0, 0, 0.8);
    }

    .logo-title.instagram-logo {
      color: transparent;
      letter-spacing: -0.05em;
      background: linear-gradient(90deg, #ffe9a5, #ff79b7 46%, #b8a4ff);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-stroke: 0;
      text-shadow: none;
      filter: drop-shadow(0 9px 18px rgba(0, 0, 0, 0.62));
    }

    .logo-title.impressum-logo {
      color: rgba(255, 255, 255, 0.82);
      font-size: 40px;
      letter-spacing: -0.04em;
      text-shadow: 0 8px 22px rgba(0, 0, 0, 0.68);
    }

    .small-card-title {
      position: absolute;
      z-index: 4;
      left: 14px;
      right: 14px;
      bottom: 18px;
      margin: 0;
      text-align: center;
      font-size: 20px;
      font-weight: 850;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.75);
    }

    footer {
      padding: 54px 18px 42px;
      color: rgba(255, 255, 255, 0.38);
      text-align: center;
      font-size: 16px;
    }

    footer a {
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    @media (min-width: 760px) {
      body {
        padding: 42px 0 70px;
      }

      .page-shell {
        min-height: auto;
        border-radius: var(--radius-xl);
        overflow: hidden;
      }
    }

    @media (max-width: 520px) {
      .page-shell {
        width: 100%;
      }

      .profile-card,
      .hero {
        border-radius: 0;
      }

      .hero {
        min-height: 530px;
      }

      .hero-content,
      .link-area {
        padding-left: 24px;
        padding-right: 24px;
      }

      .feature-card {
        min-height: 0;
      }

      .small-grid {
        gap: 14px;
      }

      .small-card {
        min-height: 140px;
      }

      .logo-title {
        font-size: 38px;
      }

      .logo-title.instagram-logo,
      .logo-title.impressum-logo {
        font-size: 32px;
        letter-spacing: -0.035em;
      }

      footer {
        padding-bottom: 34px;
      }
    }

    @media (max-width: 380px) {
      .logo-title {
        font-size: 32px;
      }

      .logo-title.instagram-logo,
      .logo-title.impressum-logo {
        font-size: 27px;
      }
    }

    /* Stella Glow variant: same layout, sharper mood. */
    @keyframes auraDrift {
      0%, 100% { transform: translate3d(-2%, 0, 0) scale(1); opacity: 0.72; }
      50% { transform: translate3d(2%, -1%, 0) scale(1.03); opacity: 1; }
    }

    @keyframes cardSheen {
      0%, 100% { transform: translateX(-18%) rotate(12deg); opacity: 0.12; }
      50% { transform: translateX(24%) rotate(12deg); opacity: 0.26; }
    }

    :root {
      --panel: #040407;
      --text: #fffaf4;
      --muted: rgba(255, 250, 244, 0.68);
      --line: rgba(255, 255, 255, 0.16);
      --glow-cyan: #45f4ff;
      --glow-pink: #ff4aa2;
      --glow-gold: #ffd36c;
      --radius-xl: 32px;
      --radius-lg: 20px;
      font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }

    body {
      background:
        radial-gradient(circle at 18% 12%, rgba(69, 244, 255, 0.34), transparent 28%),
        radial-gradient(circle at 83% 18%, rgba(255, 74, 162, 0.34), transparent 30%),
        radial-gradient(circle at 20% 86%, rgba(255, 211, 108, 0.28), transparent 34%),
        linear-gradient(135deg, #090b14 0%, #1a1019 42%, #071515 100%);
      background-attachment: fixed;
    }

    .page-shell {
      background: #030306;
      border-left: 1px solid rgba(255, 255, 255, 0.12);
      border-right: 1px solid rgba(255, 255, 255, 0.12);
      box-shadow:
        0 28px 80px rgba(0, 0, 0, 0.58),
        0 0 90px rgba(69, 244, 255, 0.12),
        0 0 120px rgba(255, 74, 162, 0.12);
    }

    .profile-card {
      background:
        radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.06), transparent 42%),
        #030306;
    }

    .mini-header {
      height: 64px;
      background: rgba(3, 3, 6, 0.78);
      border-bottom: 1px solid rgba(255, 255, 255, 0.12);
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.34);
      backdrop-filter: blur(18px);
    }

    .mini-avatar,
    .avatar-placeholder {
      color: transparent;
      letter-spacing: 0;
      background:
        radial-gradient(circle at 48% 33%, rgba(255, 220, 160, 0.9) 0 16%, transparent 17%),
        radial-gradient(circle at 46% 46%, rgba(255, 184, 170, 0.8) 0 20%, transparent 21%),
        linear-gradient(145deg, #161822, #684d68 46%, #e4a86e);
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
    }

    .mini-name {
      font-size: 21px;
      font-weight: 900;
      letter-spacing: 0;
    }

    .hero {
      min-height: 690px;
      background: #020204;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      pointer-events: none;
      background:
        radial-gradient(circle at 36% 70%, rgba(69, 244, 255, 0.16), transparent 26%),
        radial-gradient(circle at 70% 68%, rgba(255, 74, 162, 0.16), transparent 24%);
      animation: auraDrift 7s ease-in-out infinite;
    }

    .hero::after {
      z-index: 1;
      background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.1) 36%, rgba(0, 0, 0, 0.84) 78%, #030306 96%),
        radial-gradient(ellipse at center bottom, rgba(255, 255, 255, 0.18), transparent 38%);
    }

    .hero-media {
      filter: saturate(1.08) contrast(1.04);
      background:
        #05070a url("../images/stella-hero.PNG") center top / cover no-repeat;
    }

    .hero-media::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.05) 38%, rgba(0, 0, 0, 0.64) 76%, #030306 98%),
        radial-gradient(ellipse at center bottom, rgba(0, 0, 0, 0.14), transparent 44%);
      opacity: 1;
    }

    .hero-media::after {
      content: "";
      position: absolute;
      inset: auto 24px 22px;
      width: auto;
      height: 2px;
      padding: 0;
      border: 0;
      border-radius: 999px;
      transform: none;
      background: linear-gradient(90deg, transparent, rgba(69, 244, 255, 0.8), rgba(255, 74, 162, 0.76), transparent);
      box-shadow: 0 0 20px rgba(69, 244, 255, 0.45);
      backdrop-filter: none;
    }

    .hero-content {
      z-index: 3;
      padding-bottom: 26px;
    }

    .name-row {
      gap: 9px;
    }

    h1 {
      font-size: 48px;
      line-height: 0.98;
      font-weight: 950;
      letter-spacing: 0;
      color: #fff;
      text-shadow:
        0 2px 0 rgba(255, 255, 255, 0.08),
        0 20px 42px rgba(0, 0, 0, 0.78),
        0 0 28px rgba(255, 255, 255, 0.2);
    }

    .handle {
      margin-top: 8px;
      color: rgba(255, 250, 244, 0.74);
      font-size: 17px;
      font-weight: 800;
      letter-spacing: 0;
    }

    .verify {
      width: 28px;
      height: 28px;
      font-size: 15px;
      background:
        radial-gradient(circle at 35% 26%, rgba(255, 255, 255, 0.72), transparent 22%),
        linear-gradient(135deg, #7ddcff, #6a4cff 54%, #ff4aa2);
      box-shadow:
        0 0 0 2px rgba(0, 0, 0, 0.24),
        0 0 22px rgba(106, 76, 255, 0.44);
    }

    .social-row {
      gap: 14px;
      margin: 20px 0 22px;
    }

    .social {
      width: 50px;
      height: 50px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.16);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 16px 32px rgba(0, 0, 0, 0.36);
      transition: transform 180ms ease, box-shadow 180ms ease;
    }

    .social.instagram {
      border: 0;
      background:
        radial-gradient(circle at 31% 104%, #ffd86c 0 23%, transparent 24%),
        radial-gradient(circle at 84% 6%, #6d6dfb 0 21%, transparent 22%),
        linear-gradient(135deg, #8134af 0%, #dd2a7b 42%, #fd1d1d 68%, #fcb045 100%);
      box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.12),
        0 16px 32px rgba(0, 0, 0, 0.36);
    }

    .social.instagram svg {
      filter: none;
    }

    .social:hover {
      transform: translateY(-3px);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.22),
        0 18px 34px rgba(0, 0, 0, 0.44),
        0 0 26px rgba(255, 255, 255, 0.14);
    }

    .link-area {
      padding-top: 4px;
      background:
        linear-gradient(180deg, #030306 0%, #050508 100%);
    }

    .feature-card,
    .small-card {
      border: 1px solid rgba(255, 255, 255, 0.14);
      background: #09090d;
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 18px 44px rgba(0, 0, 0, 0.34);
      transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
    }

    .feature-card:hover,
    .small-card:hover {
      transform: translateY(-3px);
      border-color: rgba(255, 255, 255, 0.26);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.16),
        0 22px 54px rgba(0, 0, 0, 0.48),
        0 0 42px rgba(69, 244, 255, 0.1);
    }

    .feature-card::after,
    .small-card::after {
      content: "";
      position: absolute;
      z-index: 2;
      inset: -60% auto -60% -20%;
      width: 42%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
      pointer-events: none;
      animation: cardSheen 8s ease-in-out infinite;
    }

    .photo-placeholder::after,
    .small-card .photo-placeholder::after {
      display: none;
    }

    .photo-placeholder {
      filter: saturate(1.16) contrast(1.12);
      background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.72)),
        radial-gradient(circle at 80% 16%, rgba(255, 255, 255, 0.44), transparent 13%),
        radial-gradient(circle at 21% 75%, rgba(69, 244, 255, 0.26), transparent 28%),
        linear-gradient(100deg, #e6ded2 0 29%, #9d623f 30% 44%, #d6c5b4 45% 68%, #141e28 69% 100%);
    }

    .feature-card .photo-placeholder {
      background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.12) 42%, rgba(0, 0, 0, 0.54)),
        url("../images/stella-feature.png") center 38% / cover no-repeat;
      filter: saturate(1.08) contrast(1.04) brightness(1.08);
    }

    .small-card.tiktok-card .photo-placeholder {
      background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.2)),
        radial-gradient(circle at 18% 18%, rgba(69, 244, 255, 0.24), transparent 22%),
        radial-gradient(circle at 86% 18%, rgba(255, 74, 162, 0.16), transparent 24%),
        url("../images/stella-tiktok.png") center center / cover no-repeat;
      filter: saturate(1.1) contrast(1.03) brightness(1.08);
    }

    .small-card.youtube-card .photo-placeholder {
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.22)),
        radial-gradient(circle at 78% 18%, rgba(255, 74, 162, 0.14), transparent 22%),
        url("../images/stella-youtube.png") center center / cover no-repeat;
      filter: saturate(1.08) contrast(1.02) brightness(1.08);
    }

    .small-card.instagram-card .photo-placeholder {
      background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.22)),
        radial-gradient(circle at 28% 82%, rgba(255, 211, 108, 0.18), transparent 25%),
        radial-gradient(circle at 78% 26%, rgba(180, 112, 255, 0.14), transparent 22%),
        url("../images/stella-instagram.png") center center / cover no-repeat;
      filter: saturate(1.06) contrast(1.02) brightness(1.08);
    }

    .small-card.tiktok-card .card-dim,
    .small-card.youtube-card .card-dim,
    .small-card.instagram-card .card-dim {
      background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.18)) !important;
    }

    .small-card.tiktok-card .logo-title,
    .small-card.tiktok-card .small-card-title,
    .small-card.youtube-card .logo-title,
    .small-card.youtube-card .small-card-title,
    .small-card.instagram-card .logo-title,
    .small-card.instagram-card .small-card-title {
      display: none !important;
    }

    .story-stack {
      position: relative;
      isolation: isolate;
      display: grid;
      gap: 5px;
      margin-top: 18px;
      overflow: hidden;
      border-radius: var(--radius-lg);
    }

    .story-stack::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 0;
      background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.26), rgba(0, 0, 0, 0.04) 50%, rgba(0, 0, 0, 0.3)),
        url("../images/stella-story-split-wide.png") center center / cover no-repeat;
      filter: saturate(1.12) contrast(1.02) brightness(1.14);
    }

    .story-card {
      position: relative;
      z-index: 1;
      min-height: 168px;
      overflow: hidden;
      display: flex;
      align-items: flex-end;
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: var(--radius-lg);
      padding: 22px;
      background: rgba(9, 9, 13, 0.06);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 18px 44px rgba(0, 0, 0, 0.34);
    }

    .story-card::before,
    .story-card::after {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
    }

    .story-card::before {
      display: none;
    }

    .story-card::after {
      background:
        radial-gradient(circle at 12% 16%, rgba(69, 244, 255, 0.1), transparent 28%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.18) 58%, rgba(0, 0, 0, 0.46)),
        linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.42));
    }

    .story-copy {
      position: relative;
      z-index: 1;
      max-width: 520px;
    }

    .story-copy h2 {
      margin: 0;
      color: #fff9ef;
      font-family: "Arial Rounded MT Bold", "Trebuchet MS", "Segoe UI", ui-sans-serif, system-ui, sans-serif;
      font-size: clamp(29px, 6vw, 40px);
      font-weight: 950;
      line-height: 0.98;
      text-shadow:
        0 3px 0 rgba(0, 0, 0, 0.34),
        0 16px 30px rgba(0, 0, 0, 0.74);
    }

    .story-copy p {
      margin: 10px 0 0;
      max-width: 46rem;
      color: rgba(255, 249, 239, 0.78);
      font-family: "Trebuchet MS", "Segoe UI", ui-sans-serif, system-ui, sans-serif;
      font-size: 15px;
      font-weight: 800;
      line-height: 1.48;
      text-shadow: 0 8px 20px rgba(0, 0, 0, 0.72);
    }

    @media (max-width: 520px) {
      .story-stack {
        gap: 4px;
        margin-top: 14px;
      }

      .story-card {
        min-height: 152px;
        padding: 18px;
      }

      .story-copy h2 {
        font-size: 28px;
      }

      .story-copy p {
        font-size: 14px;
        line-height: 1.44;
      }
    }

    .card-dim {
      background:
        radial-gradient(ellipse at center, transparent 0 38%, rgba(0, 0, 0, 0.22) 64%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.68));
    }

    .brand-dot {
      width: 52px;
      height: 52px;
      background:
        radial-gradient(circle at 34% 26%, rgba(255, 255, 255, 0.9), transparent 16%),
        linear-gradient(135deg, #45f4ff, #2675ff 52%, #6a4cff);
      box-shadow:
        0 12px 24px rgba(0, 0, 0, 0.34),
        0 0 28px rgba(69, 244, 255, 0.36);
    }

    .corner-icon {
      width: 36px;
      height: 36px;
      overflow: hidden;
      border-color: rgba(255, 255, 255, 0.24);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 12px 22px rgba(0, 0, 0, 0.4);
    }

    .corner-icon.instagram {
      border: 0;
      background:
        radial-gradient(circle at 31% 104%, #ffd86c 0 23%, transparent 24%),
        radial-gradient(circle at 84% 6%, #6d6dfb 0 21%, transparent 22%),
        linear-gradient(135deg, #8134af 0%, #dd2a7b 42%, #fd1d1d 68%, #fcb045 100%);
      box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.12),
        0 12px 22px rgba(0, 0, 0, 0.4);
    }

    .corner-icon.instagram svg {
      filter: none;
    }

    .corner-icon.impressum {
      background: linear-gradient(135deg, rgba(255, 250, 244, 0.84), rgba(146, 139, 128, 0.72));
    }

    .card-title {
      bottom: 22px;
      font-size: 30px;
      font-weight: 950;
      letter-spacing: 0;
      text-shadow:
        0 2px 8px rgba(0, 0, 0, 0.9),
        0 0 24px rgba(255, 255, 255, 0.18);
    }

    .logo-title {
      font-size: 43px;
      font-weight: 950;
      letter-spacing: 0;
      color: #fffaf4;
      background: none;
      -webkit-background-clip: border-box;
      background-clip: border-box;
      text-shadow:
        0 2px 0 rgba(255, 255, 255, 0.06),
        0 12px 24px rgba(0, 0, 0, 0.86);
      filter: none;
    }

    .logo-title.youtube-logo {
      color: #fffaf4;
      background: none;
      -webkit-background-clip: border-box;
      background-clip: border-box;
      text-shadow:
        0 2px 0 rgba(255, 255, 255, 0.06),
        0 12px 24px rgba(0, 0, 0, 0.86);
      filter: none;
    }

    .logo-title.instagram-logo {
      letter-spacing: 0;
      color: #fffaf4;
      background: none;
      -webkit-background-clip: border-box;
      background-clip: border-box;
      text-shadow:
        0 2px 0 rgba(255, 255, 255, 0.06),
        0 12px 24px rgba(0, 0, 0, 0.86);
      filter: none;
    }

    .logo-title.impressum-logo {
      font-size: 38px;
      letter-spacing: 0;
      color: #fffaf4;
      background: none;
      -webkit-background-clip: border-box;
      background-clip: border-box;
      text-shadow:
        0 2px 0 rgba(255, 255, 255, 0.06),
        0 12px 24px rgba(0, 0, 0, 0.86);
      filter: none;
    }

    .small-card-title {
      bottom: 17px;
      color: #fff;
      font-size: 20px;
      font-weight: 950;
      letter-spacing: 0;
      text-shadow:
        0 2px 8px rgba(0, 0, 0, 0.9),
        0 0 18px rgba(255, 255, 255, 0.16);
    }

    footer {
      color: rgba(255, 250, 244, 0.42);
    }

    footer a {
      transition: color 160ms ease;
    }

    footer a:hover {
      color: rgba(255, 250, 244, 0.86);
    }

    @media (max-width: 520px) {
      .hero {
        min-height: 540px;
      }

      h1 {
        font-size: 42px;
      }

      .logo-title {
        font-size: 34px;
      }

      .logo-title.instagram-logo,
      .logo-title.impressum-logo {
        font-size: 29px;
        letter-spacing: 0;
      }
    }

    @media (max-width: 380px) {
      .logo-title {
        font-size: 29px;
      }

      .logo-title.instagram-logo,
      .logo-title.impressum-logo {
        font-size: 25px;
      }
    }

    /* Crisp logo/text refresh: no hard gradient blobs or clipped wordmarks. */
    h1,
    .logo-title,
    .card-title,
    .small-card-title {
      font-family: "Arial Rounded MT Bold", "Trebuchet MS", "Segoe UI", ui-sans-serif, system-ui, sans-serif;
      font-weight: 900;
      letter-spacing: 0.01em;
      color: #fff9ef;
      text-shadow:
        0 3px 0 rgba(0, 0, 0, 0.34),
        0 14px 28px rgba(0, 0, 0, 0.72);
      filter: none;
    }

    h1 {
      font-size: 47px;
      line-height: 0.98;
      text-shadow:
        0 3px 0 rgba(0, 0, 0, 0.34),
        0 18px 36px rgba(0, 0, 0, 0.74);
    }

    .handle {
      font-family: "Trebuchet MS", "Segoe UI", ui-sans-serif, system-ui, sans-serif;
      font-size: 16px;
      font-weight: 800;
      letter-spacing: 0.035em;
      color: rgba(255, 249, 239, 0.74);
      text-shadow: 0 9px 22px rgba(0, 0, 0, 0.72);
    }

    .logo-title {
      font-size: 40px;
      background: none;
      -webkit-background-clip: border-box;
      background-clip: border-box;
    }

    .logo-title.instagram-logo {
      font-size: 36px;
    }

    .logo-title.impressum-logo {
      font-size: 34px;
    }

    .small-card-title {
      font-size: 19px;
    }

    .social,
    .corner-icon {
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.13);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.14),
        0 14px 28px rgba(0, 0, 0, 0.38);
    }

    .social svg,
    .corner-icon svg {
      filter: none;
    }

    .social.instagram,
    .corner-icon.instagram {
      border: 1px solid rgba(255, 255, 255, 0.14);
      background: linear-gradient(135deg, #7c3cff 0%, #c13584 38%, #f0444d 68%, #ffb347 100%);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.16),
        0 14px 28px rgba(0, 0, 0, 0.38),
        0 0 24px rgba(240, 68, 77, 0.2);
    }

    .social.youtube,
    .corner-icon.youtube {
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: #ff211b;
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        0 14px 28px rgba(0, 0, 0, 0.38),
        0 0 24px rgba(255, 33, 27, 0.18);
    }

    .social.tiktok,
    .corner-icon.tiktok-mark {
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: #050509;
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 14px 28px rgba(0, 0, 0, 0.42),
        0 0 22px rgba(69, 244, 255, 0.14);
    }

    .corner-icon.impressum {
      border: 1px solid rgba(255, 255, 255, 0.18);
      background: linear-gradient(135deg, #d8d2c8, #8f887f);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 14px 28px rgba(0, 0, 0, 0.38);
    }

    @media (max-width: 520px) {
      h1 {
        font-size: 41px;
      }

      .logo-title {
        font-size: 32px;
      }

      .logo-title.instagram-logo {
        font-size: 27px;
      }

      .logo-title.impressum-logo {
        font-size: 26px;
      }
    }

    @media (max-width: 380px) {
      .logo-title {
        font-size: 28px;
      }

      .logo-title.instagram-logo,
      .logo-title.impressum-logo {
        font-size: 23px;
      }
    }

    /* Bottom card badge hard reset: keep these flat and artifact-free. */
    .small-grid .corner-icon {
      width: 36px !important;
      height: 36px !important;
      overflow: hidden !important;
      border: 0 !important;
      outline: 0 !important;
      box-shadow: none !important;
      background-image: none !important;
      clip-path: circle(50% at 50% 50%);
      transform: translateZ(0);
      backface-visibility: hidden;
      -webkit-font-smoothing: antialiased;
    }

    .small-grid .corner-icon svg {
      width: 22px !important;
      height: 22px !important;
      filter: none !important;
      transform: translateZ(0);
      backface-visibility: hidden;
    }

    .small-grid .corner-icon.youtube {
      background: #ff211b !important;
      box-shadow: none !important;
    }

    .small-grid .corner-icon.instagram {
      background: #e1306c !important;
      box-shadow: none !important;
    }

    .small-grid .corner-icon.tiktok-mark {
      background: #050509 !important;
      box-shadow: none !important;
    }

    .small-grid .corner-icon.impressum {
      background: #b8b1a8 !important;
      box-shadow: none !important;
    }

    .small-grid .logo-title,
    .small-grid .small-card-title {
      color: #fff9ef !important;
      background: none !important;
      -webkit-background-clip: border-box !important;
      background-clip: border-box !important;
      filter: none !important;
      -webkit-text-stroke: 0 !important;
      text-shadow: 0 3px 10px rgba(0, 0, 0, 0.74) !important;
      -webkit-font-smoothing: antialiased;
      text-rendering: geometricPrecision;
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 1ms !important;
      }
    }

css
/* --- FIX: Edge artifacts on bottom corner icons (mobile GPU/webviews) --- */
.small-grid .corner-icon{
  /* remove the fragile clip-path pipeline */
  clip-path: none !important;

  /* stable circle */
  border-radius: 999px !important;
  overflow: hidden !important;

  /* avoid subpixel seams */
  transform: none !important;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0); /* keep as single layer without warping */
  -webkit-mask-image: -webkit-radial-gradient(white, black); /* iOS/Safari smoothing */

  /* keep it flat */
  box-shadow: none !important;
  outline: 0 !important;
}

/* Make SVG rasterization crisp and prevent edge bleeding */
.small-grid .corner-icon svg{
  display: block;
  width: 22px !important;
  height: 22px !important;
  margin: auto;
  shape-rendering: geometricPrecision;
  transform: none !important;
}

/* Ensure no background "image" layers create seams */
.small-grid .corner-icon.instagram,
.small-grid .corner-icon.youtube,
.small-grid .corner-icon.tiktok-mark,
.small-grid .corner-icon.impressum{
  background-image: none !important;
}


### Optional (falls du noch feine “Ringe” siehst)
Wenn es immer noch minimal “zuckt”, dann liegt’s oft am SVG-Antialiasing. Dann zusätzlich:

css
.small-grid .corner-icon{
  background-clip: padding-box;
}

css
/* === FIX: Corner-icon edge artifacts (remove clip-path + stabilize rendering) === */
.small-grid .corner-icon {
  /* clip-path is the #1 source of jagged/buggy circle edges in mobile webviews */
  clip-path: none !important;

  /* stable circle */
  border-radius: 999px !important;
  overflow: hidden !important;

  /* avoid GPU subpixel seams from prior forced transforms */
  transform: none !important;

  /* iOS/Safari smoothing trick for rounded masks */
  -webkit-mask-image: -webkit-radial-gradient(white, black);

  /* keep the badge flat */
  box-shadow: none !important;
  outline: 0 !important;
  border: 0 !important;
  background-image: none !important;
}

.small-grid .corner-icon svg {
  display: block;
  width: 22px !important;
  height: 22px !important;
  margin: auto;

  /* prevent additional rasterization quirks */
  transform: none !important;
  filter: none !important;
}

.small-grid .corner-icon.youtube,
.small-grid .corner-icon.instagram,
.small-grid .corner-icon.tiktok-mark {
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
  -webkit-mask-image: none !important;
}

.small-grid .corner-icon.youtube svg,
.small-grid .corner-icon.instagram svg,
.small-grid .corner-icon.tiktok-mark svg {
  width: 30px !important;
  height: 30px !important;
  filter:
    drop-shadow(0 2px 2px rgba(0, 0, 0, 0.62))
    drop-shadow(0 0 10px rgba(0, 0, 0, 0.36)) !important;
}

.small-grid .corner-icon.tiktok-mark svg path {
  fill: #fff9ef !important;
}

.small-grid .corner-icon.youtube svg path[stroke] {
  fill: none !important;
  stroke: #fff9ef !important;
}

.small-grid .corner-icon.youtube svg path:not([stroke]) {
  fill: #fff9ef !important;
}

.social-row .social.instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%) !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 999px !important;
  overflow: hidden !important;
}

.social-row .social.instagram svg {
  display: block;
  filter: none !important;
}

.profile-card,
.hero {
  overflow: visible !important;
}

.hero-media {
  overflow: hidden;
  transform: none !important;
  clip-path: inset(0 round var(--radius-xl) var(--radius-xl) 0 0);
}

.mini-avatar {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.14)),
    url("../images/stella-hero.PNG") center 18% / cover no-repeat !important;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    0 8px 18px rgba(0, 0, 0, 0.34) !important;
}

.hidden {
  display: none !important;
}

.feature-card {
  cursor: pointer;
  border: 0 !important;
  outline: 0 !important;
  background: #050508 !important;
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.34) !important;
}

.feature-card.portal-fading {
  opacity: 0;
  transform: translateY(-8px) scale(0.985);
  filter: blur(8px);
  pointer-events: none;
}

.more-strip.portal-fading {
  opacity: 0;
  transform: translateY(-8px) scale(0.985);
  filter: blur(8px);
  pointer-events: none;
  transition: opacity 380ms ease, transform 380ms ease, filter 380ms ease;
}

.feature-card::after {
  display: none !important;
}

.feature-card:hover {
  border: 0 !important;
  box-shadow:
    0 22px 54px rgba(0, 0, 0, 0.48),
    0 0 34px rgba(69, 244, 255, 0.08) !important;
}

.feature-card .photo-placeholder {
  inset: -1px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.12) 42%, rgba(0, 0, 0, 0.54)),
    url("../images/stella-feature.png") center 38% / cover no-repeat !important;
  filter: saturate(1.08) contrast(1.04) brightness(1.08);
}

.feature-card .card-dim {
  background:
    radial-gradient(ellipse at center, transparent 0 38%, rgba(0, 0, 0, 0.22) 64%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.01), rgba(0, 0, 0, 0.12) 42%, rgba(0, 0, 0, 0.68)) !important;
}

.more-strip {
  position: relative;
  min-height: 124px;
  margin: 14px 0 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 15px;
  color: #fff9ef;
  text-decoration: none;
  background:
    radial-gradient(circle at 11% 35%, rgba(255, 61, 0, 0.16), transparent 24%),
    radial-gradient(circle at 88% 18%, rgba(69, 244, 255, 0.06), transparent 23%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(7, 8, 12, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    0 12px 28px rgba(0, 0, 0, 0.26);
}

.more-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.045), transparent);
  opacity: 0.28;
}

.more-strip-logo {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-right: -2px;
  filter: drop-shadow(0 8px 14px rgba(255, 61, 0, 0.16));
}

.more-strip-text {
  position: relative;
  z-index: 1;
  color: #fff;
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", "Segoe UI", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(24px, 4.2vw, 32px);
  font-weight: 850;
  line-height: 1.1;
  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.7);
}

.maloum-portal-state {
  position: relative;
  min-height: 88px;
  margin: 14px 0 16px;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 15px 20px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 15px;
  background:
    radial-gradient(circle at 12% 30%, rgba(255, 61, 0, 0.16), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(7, 8, 12, 0.86);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    0 12px 28px rgba(0, 0, 0, 0.26);
  opacity: 0;
  transform: translateY(10px) scale(0.985);
  transition: opacity 380ms ease, transform 380ms ease;
}

.maloum-portal-state.portal-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.maloum-action-button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  width: min(100%, 260px);
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: #fff9ef;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", "Segoe UI", ui-sans-serif, system-ui, sans-serif;
  text-decoration: none;
  font-size: 17px;
  font-weight: 900;
  background:
    linear-gradient(135deg, rgba(255, 61, 0, 0.72), rgba(255, 255, 255, 0.06)),
    rgba(5, 6, 10, 0.74);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 12px 26px rgba(0, 0, 0, 0.32);
}

@media (max-width: 520px) {
  .more-strip {
    min-height: 104px;
    gap: 0;
    padding: 15px 16px;
  }

  .more-strip-logo {
    width: 42px;
    height: 42px;
    margin-right: -3px;
  }

  .maloum-portal-state {
    min-height: 76px;
    padding: 13px 16px;
  }
}

.brand-dot {
  width: 6px !important;
  height: 6px !important;
  top: 12px !important;
  left: 12px !important;
  border: 0 !important;
  outline: 0 !important;
  background: transparent !important;
  box-shadow:
    none !important;
  color: inherit;
  font-size: 0;
}

.brand-dot::before {
  display: none !important;
}

.brand-dot-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  font-size: 45px;
  filter: drop-shadow(0 6px 8px rgba(0, 0, 0, 0.42));
  transform: rotate(-10deg);
}

@media (max-width: 520px) {
  .hero-media {
    clip-path: inset(0);
  }
}

.exclusive-portal-state {
  position: relative;
  aspect-ratio: 3 / 2;
  min-height: 0;
  margin-top: -2px;
  display: grid;
  place-items: center;
  box-sizing: border-box;
  padding: 0 32px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 18% 20%, rgba(69, 244, 255, 0.18), transparent 24%),
    radial-gradient(circle at 82% 26%, rgba(255, 74, 162, 0.2), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    #08080c;
  opacity: 0;
  transform: translateY(10px) scale(0.985);
  transition: opacity 380ms ease, transform 380ms ease;
}

.exclusive-portal-state.portal-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.exclusive-portal-state::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.62)),
    radial-gradient(ellipse at center, transparent 0 38%, rgba(0, 0, 0, 0.2) 70%);
}

.exclusive-updates-button {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  isolation: isolate;
  overflow: visible;
  min-height: 58px;
  width: min(100%, 360px);
  max-width: calc(100% - 28px);
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  color: #fff9ef;
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", "Segoe UI", ui-sans-serif, system-ui, sans-serif;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0.01em;
  text-align: center;
  background: transparent;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.16),
    0 18px 38px rgba(0, 0, 0, 0.46),
    0 0 34px rgba(225, 48, 108, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.exclusive-updates-button::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, #e1306c -10%, #8f4cff 52%, #2db7ff 110%);
}

.exclusive-updates-button::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 32%, rgba(255, 255, 255, 0.06));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 0 rgba(255, 255, 255, 0.08);
}

.exclusive-updates-button:hover {
  transform: translateY(-3px);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    0 22px 44px rgba(0, 0, 0, 0.52),
    0 0 42px rgba(225, 48, 108, 0.3);
}

.ios-browser-guidance {
  position: fixed;
  inset: 0;
  z-index: 90;
  background:
    radial-gradient(circle at 84% 8%, rgba(101, 247, 255, 0.2), transparent 24%),
    radial-gradient(circle at 18% 78%, rgba(255, 255, 255, 0.2), transparent 32%),
    rgba(225, 229, 235, 0.52);
  backdrop-filter: blur(5px) saturate(0.82);
  -webkit-backdrop-filter: blur(5px) saturate(0.82);
  cursor: pointer;
}

.ios-browser-guide-wrap {
  position: absolute;
  top: 10px;
  right: 10px;
  width: min(22rem, calc(100vw - 1.25rem));
  cursor: default;
}

.ios-browser-pointer {
  position: absolute;
  top: -8px;
  right: -16px;
  z-index: 2;
  width: 132px;
  height: 96px;
  filter:
    drop-shadow(0 0 14px rgba(255, 255, 255, 0.26))
    drop-shadow(0 15px 28px rgba(0, 0, 0, 0.42));
}

.ios-browser-card {
  margin-top: 86px;
  padding: 16px 17px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  color: #fff9ef;
  background:
    radial-gradient(circle at 12% 0%, rgba(101, 247, 255, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(3, 3, 6, 0.94);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 24px 58px rgba(0, 0, 0, 0.56),
    0 0 46px rgba(101, 247, 255, 0.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.ios-browser-card-top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 14px;
}

.ios-browser-dots {
  display: flex;
  gap: 6px;
  margin-left: auto;
}

.ios-browser-dots span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 249, 239, 0.74);
}

.ios-browser-steps {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  counter-reset: ios-step;
}

.ios-browser-steps li {
  list-style: none;
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: center;
  gap: 10px;
  color: #fff9ef;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.34;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.34);
}

.ios-browser-steps li::before {
  counter-increment: ios-step;
  content: counter(ios-step);
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  color: #050508;
  font-size: 14px;
  font-weight: 950;
  background:
    radial-gradient(circle at 34% 22%, rgba(255, 255, 255, 0.9), transparent 22%),
    linear-gradient(135deg, #dffcff, #65f7ff);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 8px 16px rgba(0, 0, 0, 0.16);
}

@media (max-width: 520px) {
  .exclusive-portal-state {
    min-height: 0;
    padding: 0 22px;
  }

  .exclusive-updates-button {
    width: min(100%, 320px);
    max-width: calc(100% - 24px);
    font-size: 17px;
  }

  .ios-browser-guide-wrap {
    top: 8px;
    right: 8px;
    width: min(21rem, calc(100vw - 1rem));
  }

  .ios-browser-pointer {
    width: 118px;
    height: 88px;
    right: -15px;
  }

  .ios-browser-card {
    margin-top: 78px;
    padding: 14px;
    border-radius: 20px;
  }

  .ios-browser-steps li {
    font-size: 14px;
  }
}

