

@charset "UTF-8";

  #iosPrompt {
    position: fixed;
    bottom: 30px;
    left: 50%;
	width: 300px;
    transform: translateX(-50%);
    background: #232f3e;
    color: #fff;
    padding: 16px 20px;
    border-radius: 12px;
    z-index: 10000;
    font-family: system-ui, sans-serif;
    font-size: 16px;
    max-width: 100%;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    animation: fadeIn 0.5s ease;
  }

  #iosPromptClose {
    position: absolute;
    top: 8px;
    right: 10px;
    background: #232f3e;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translate(-50%, 20px); }
    to { opacity: 1; transform: translateX(-50%); }
  }
