.vl-speed-notice {
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(25, 28, 23, 0.58);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.vl-speed-notice__card {
  position: relative;
  box-sizing: border-box;
  width: min(100%, 430px);
  overflow: hidden;
  padding: 38px 32px 30px;
  color: #26322a;
  text-align: left;
  background: linear-gradient(155deg, #fffdf7 0%, #f8f2e5 100%);
  border: 1px solid rgba(150, 112, 55, 0.2);
  border-radius: 28px;
  box-shadow: 0 28px 80px rgba(17, 24, 19, 0.28);
}

.vl-speed-notice__glow {
  position: absolute;
  top: -90px;
  right: -70px;
  width: 220px;
  height: 220px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(205, 161, 83, 0.24), transparent 68%);
}

.vl-speed-notice__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 1;
  width: 34px;
  height: 34px;
  padding: 0;
  color: #687168;
  font: 24px/32px system-ui, sans-serif;
  background: rgba(255, 255, 255, 0.68);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.vl-speed-notice__eyebrow {
  position: relative;
  margin: 0 0 10px;
  color: #a47232;
  font: 600 13px/1.4 system-ui, sans-serif;
  letter-spacing: 0.14em;
}

.vl-speed-notice h2 {
  position: relative;
  margin: 0;
  color: #26322a;
  font: 600 27px/1.3 system-ui, sans-serif;
  letter-spacing: 0.02em;
}

.vl-speed-notice__desc {
  margin: 15px 0 0;
  color: #58645b;
  font: 15px/1.75 system-ui, sans-serif;
}

.vl-speed-notice__address {
  margin-top: 18px;
  padding: 12px 15px;
  color: #345244;
  font: 600 15px/1.4 system-ui, sans-serif;
  text-align: center;
  background: rgba(91, 124, 100, 0.09);
  border: 1px solid rgba(91, 124, 100, 0.16);
  border-radius: 14px;
}

.vl-speed-notice__note {
  margin: 14px 0 0;
  color: #7a756a;
  font: 12px/1.65 system-ui, sans-serif;
}

.vl-speed-notice__actions {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.vl-speed-notice__primary,
.vl-speed-notice__secondary {
  box-sizing: border-box;
  min-height: 48px;
  padding: 13px 18px;
  font: 600 15px/1.4 system-ui, sans-serif;
  text-align: center;
  text-decoration: none;
  border-radius: 16px;
  cursor: pointer;
}

.vl-speed-notice__primary {
  color: #fffdf7;
  background: linear-gradient(135deg, #50725f, #345244);
  box-shadow: 0 12px 24px rgba(52, 82, 68, 0.2);
}

.vl-speed-notice__secondary {
  color: #58645b;
  background: transparent;
  border: 1px solid rgba(88, 100, 91, 0.2);
}

@media (max-width: 480px) {
  .vl-speed-notice {
    align-items: end;
    padding: 14px;
  }

  .vl-speed-notice__card {
    padding: 34px 22px calc(22px + env(safe-area-inset-bottom));
    border-radius: 24px;
  }

  .vl-speed-notice h2 {
    font-size: 24px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .vl-speed-notice {
    animation: vl-speed-fade 180ms ease-out both;
  }

  .vl-speed-notice__card {
    animation: vl-speed-rise 260ms ease-out both;
  }

  @keyframes vl-speed-fade {
    from { opacity: 0; }
  }

  @keyframes vl-speed-rise {
    from { opacity: 0; transform: translateY(18px) scale(0.985); }
  }
}
