
    :root {
      --bg: #120d1c;
      --card: #21152e;
      --pink: #ff5fa2;
      --purple: #a875ff;
      --text: #fff8fc;
      --muted: #cdbdd4;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      min-height: 100vh;
      font-family: Arial, Helvetica, sans-serif;
      color: var(--text);
      background:
        linear-gradient(rgba(18, 13, 28, .78), rgba(18, 13, 28, .96)),
        url("https://images.unsplash.com/photo-1515886657613-9f3515b0c78f?auto=format&fit=crop&w=1600&q=85")
        center/cover fixed;
      display: flex;
      justify-content: center;
      padding: 24px;
    }

    .container {
      width: 100%;
      max-width: 560px;
      text-align: center;
    }

    .age-warning {
      background: rgba(255, 95, 162, .14);
      border: 1px solid rgba(255, 95, 162, .45);
      border-radius: 12px;
      padding: 12px 16px;
      margin-bottom: 22px;
      color: #ffd8e9;
      font-size: 13px;
    }

    .profile {
      width: 118px;
      height: 118px;
      object-fit: cover;
      border-radius: 50%;
      border: 4px solid var(--pink);
      box-shadow: 0 0 30px rgba(255, 95, 162, .45);
      margin-bottom: 18px;
    }

    h1 {
      font-size: clamp(30px, 8vw, 48px);
      margin-bottom: 8px;
      letter-spacing: -1px;
    }

    .handle {
      color: var(--pink);
      font-weight: bold;
      margin-bottom: 16px;
    }

    .description {
      color: var(--muted);
      line-height: 1.6;
      margin: 0 auto 26px;
      max-width: 440px;
    }

    .links {
      display: grid;
      gap: 14px;
    }

    .link-card {
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 58px;
      padding: 16px 20px;
      border-radius: 14px;
      color: white;
      text-decoration: none;
      font-weight: bold;
      background: linear-gradient(135deg, var(--pink), var(--purple));
      box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
      transition: transform .2s ease, filter .2s ease;
    }

    .link-card:hover {
      transform: translateY(-3px);
      filter: brightness(1.1);
    }

    .link-card.secondary {
      background: rgba(255, 255, 255, .1);
      border: 1px solid rgba(255,255,255,.2);
      box-shadow: none;
    }

    .features {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin: 28px 0;
    }

    .feature {
      padding: 14px 8px;
      border-radius: 12px;
      background: rgba(255,255,255,.07);
      color: var(--muted);
      font-size: 12px;
      line-height: 1.4;
    }

    .feature strong {
      display: block;
      color: white;
      font-size: 18px;
      margin-bottom: 4px;
    }

    footer {
      margin-top: 28px;
      color: #a998b0;
      font-size: 12px;
      line-height: 1.6;
    }

    footer a {
      color: var(--pink);
    }

    @media (max-width: 420px) {
      .features {
        grid-template-columns: 1fr;
      }

      .feature {
        padding: 12px;
      }
    }
