body{
    background-color: #0a0a0a;
}

@keyframes spinLogo {
    0% { transform: rotate(0deg) scale(0.8); opacity: 0; }
    20% { transform: rotate(360deg) scale(1.05); opacity: 1; }
    30% { transform: rotate(360deg) scale(1); }
    100% { transform: rotate(360deg) scale(1); }
  }
  @keyframes pulseLogo {
    0%, 100% { filter: drop-shadow(0 0 8px rgba(237,31,36,0.3)); }
    50% { filter: drop-shadow(0 0 24px rgba(237,31,36,0.7)); }
  }
  @keyframes drawPath {
    from { stroke-dashoffset: 3000; opacity: 0.3; }
    to { stroke-dashoffset: 0; opacity: 1; }
  }
  @keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(30px) scaleX(0.85); letter-spacing: 0.6em; }
    100% { opacity: 1; transform: translateY(0) scaleX(1); letter-spacing: 0.35em; }
  }
  @keyframes shimmer {
    0% { background-position: -400px 0; }
    100% { background-position: 400px 0; }
  }
  @keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
  }
  @keyframes rotateBorder {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }
  @keyframes scaleIn {
    0% { transform: scale(0.6); opacity: 0; }
    60% { transform: scale(1.08); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
  }
  @keyframes ringPulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.7); opacity: 0; }
  }
  @keyframes subtitleFade {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
  }
  @keyframes dotBounce {
    0%, 80%, 100% { transform: translateY(0); opacity: 0.4; }
    40% { transform: translateY(-8px); opacity: 1; }
  }


  .scene::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 40%, rgba(237,31,36,0.08) 0%, transparent 65%);
    pointer-events: none;
  }

  .logo-wrap {
    position: relative;
    width: 180px;
    height: 180px;
    animation: spinLogo 1.4s cubic-bezier(0.22,1,0.36,1) forwards, pulseLogo 3s ease-in-out 1.4s infinite;
  }
  .logo-wrap svg {
    width: 100%;
    height: 100%;
  }
  .ring {
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    border: 1.5px solid rgba(237,31,36,0.4);
    animation: ringPulse 2.5s ease-out 1.2s infinite;
  }
  .ring2 {
    animation-delay: 3s;
  }

  .coming-soon-wrap {
    margin-top: 2.4rem;
    text-align: center;
    animation: fadeInUp 0.9s cubic-bezier(0.22,1,0.36,1) 1.4s both;
  }
  .coming-soon-text {
    font-family: var(--font-sans, system-ui, sans-serif);
    font-size: 26px;
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    background: linear-gradient(90deg, #888 0%, #fff 40%, #ed1f24 60%, #fff 80%, #888 100%);
    background-size: 400px 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear 2.2s infinite;
    white-space: nowrap;
  }
  .subtitle {
    margin-top: 0.7rem;
    font-family: var(--font-sans, system-ui, sans-serif);
    font-size: 13px;
    font-weight: 400;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.12em;
    animation: subtitleFade 0.8s ease 2.2s both;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }
  .dots {
    display: flex;
    gap: 4px;
    align-items: center;
  }
  .dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #ed1f24;
    animation: dotBounce 1.4s ease-in-out 2.5s infinite;
  }
  .dot:nth-child(2) { animation-delay: 2.65s; }
  .dot:nth-child(3) { animation-delay: 2.8s; }

  .red-path {
    stroke-dasharray: 3000;
    stroke-dashoffset: 3000;
    animation: drawPath 1.4s ease-out 0.1s forwards;
  }
  .white-path-1 {
    stroke-dasharray: 3000;
    stroke-dashoffset: 3000;
    animation: drawPath 1.1s ease-out 0.4s forwards;
  }
  .white-path-2 {
    stroke-dasharray: 3000;
    stroke-dashoffset: 3000;
    animation: drawPath 1.1s ease-out 0.6s forwards;
  }

    .scene {
    min-height: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
  }
  button.notify-btn {
    margin-top: 2.4rem;
    padding: 0.75rem 1.8rem;
    font-family: var(--font-sans, system-ui, sans-serif);
    font-size: 14px;
    font-weight: 500;
    color: #ed1f24;
    background: transparent;
    border: 2px solid #ed1f24;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-items: center;
    display: inline-flex;
    gap: 6px;
    display: flex;
    justify-content: center;

  }