  .btn-container {
    display: none;
    visibility: hidden;
    width: 100%;
  }

  @media (max-width: 550px) {
    .btn-container {
      display: block;
      visibility: visible;
      width: 100%;
      padding: 6px 8px;
      box-sizing: border-box;
    }

    .btn-container a {
      position: relative;
      display: block;
      width: 100%;
      padding: 13px 10px;
      box-sizing: border-box;
      overflow: hidden;

      background: linear-gradient(
        135deg,
        #ff9800,
        #ffc107,
        #ffb300
      );

      border: 2px solid #ffe082;
      border-radius: 8px;

      color: #242424;
      font-size: 17px;
      font-weight: 800;
      line-height: 1.4;
      text-align: center;
      text-decoration: none;

      text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);

      box-shadow:
        0 0 10px rgba(255, 193, 7, 0.8),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    }

    .btn-container a::before {
      content: "";
      position: absolute;
      top: 0;
      left: -120%;
      width: 70%;
      height: 100%;

      background: linear-gradient(
        110deg,
        transparent 0%,
        rgba(255, 255, 255, 0.15) 30%,
        rgba(255, 255, 255, 0.85) 50%,
        rgba(255, 255, 255, 0.15) 70%,
        transparent 100%
      );

      transform: skewX(-20deg);
      animation: amberRunningLight 2.2s linear infinite;
      pointer-events: none;
    }

    .btn-container a:active {
      transform: scale(0.98);
    }

    .btn-container a.btn-jejak {
      --accent: #00a97a;
      --accent-bright: #00c98f;
      --accent-glow: #00c98f2e;
      --accent-ink: #fff;
      --shadow-sm: 0 1px 2px #10121a0f;
      --shadow-md: 0 12px 36px #10121a1f;
      --shadow-glow: 0 0 0 4px var(--accent-glow);

      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 8px;
      border: 1px solid var(--accent-bright);
      border-radius: 8px;
      background: linear-gradient(135deg, var(--accent-bright), var(--accent));
      box-shadow: var(--shadow-md), 0 0 18px var(--accent-glow);
      color: var(--accent-ink);
      text-shadow: 0 1px 2px #006a4d;
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
    }

    .btn-container a.btn-jejak::before {
      background: linear-gradient(110deg, transparent, var(--accent-glow), #fff9, var(--accent-glow), transparent);
    }

    .btn-jejak-text::after {
      display: inline-block;
      width: 2px;
      height: 1em;
      margin-left: 3px;
      background: currentColor;
      vertical-align: -2px;
      animation: jejakCaret .75s step-end infinite;
      content: "";
    }

    .btn-container a.btn-jejak:hover,
    .btn-container a.btn-jejak:focus-visible {
      border-color: var(--accent);
      box-shadow: var(--shadow-md), var(--shadow-glow);
      transform: translateY(-2px);
    }

    .btn-container a.btn-jejak:active {
      box-shadow: var(--shadow-sm), var(--shadow-glow);
      transform: scale(.98);
    }
  }

  @keyframes amberRunningLight {
    0% {
      left: -120%;
    }

    60%,
    100% {
      left: 140%;
    }
  }

  @keyframes jejakCaret {
    50% {
      opacity: 0;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .btn-container a::before {
      animation: none;
    }

    .btn-jejak-text::after {
      display: none;
    }
  }
