<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
  --bg-color: #000;
  --text-color: #fff;
  --glow-color: #a259ff;
}

body, html {
  margin: 0;
  padding: 0;
  font-family: 'Helvetica Neue', sans-serif;
  background: var(--bg-color);
  color: var(--text-color);
  overflow-x: hidden;
}

#background {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: radial-gradient(ellipse at bottom, #0d0d2b 0%, #000 100%);
  z-index: -1;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;
  text-align: center;
  padding: 20px;
  position: relative;
}

/* Mobile padding to prevent overlap with fixed bolt */
@media (max-width: 767px) {
  .container {
    padding-top: 180px;
  }
}

.coming-soon {
  font-size: 1.8rem;
  font-weight: bold;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

form {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

input {
  padding: 0.5rem;
  border-radius: 6px;
  border: 1px solid #999;
  font-size: 1rem;
  width: 250px;
  background: #111;
  color: #fff;
}

button[type="submit"] {
  background: var(--glow-color);
  color: #fff;
  border: none;
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background: #9333ea;
}

.instagram-link {
  margin-top: 20px;
  display: inline-block;
}

.instagram-icon {
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 0 6px var(--glow-color));
}

/* ✅ MOBILE VIEW */
@media (max-width: 767px) {
  .mobile-bolt-container {
    display: block;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    padding-top: 20px;
    text-align: center;
    background-color: #000;
    width: 100%;
  }

  .mobile-bolt {
    width: 100px;
    height: auto;
    filter: drop-shadow(0 0 12px #a855f7) drop-shadow(0 0 24px #a855f7);
    animation: pulseGlow 2s infinite;
  }

  .mobile-title {
    font-size: 1.3rem;
    margin-top: 0.5rem;
    font-weight: bold;
  }

  .mobile-subtext {
    font-size: 0.95rem;
    font-style: italic;
    color: #ccc;
    margin-bottom: 0.5rem;
  }

  .desktop-logo-container {
    display: none; /* ✅ Hide preview.JPG on mobile */
  }

  @keyframes pulseGlow {
    0% { filter: drop-shadow(0 0 6px #a855f7); }
    50% { filter: drop-shadow(0 0 16px #a855f7) drop-shadow(0 0 24px #a855f7); }
    100% { filter: drop-shadow(0 0 6px #a855f7); }
  }
}

/* ✅ DESKTOP VIEW */
@media screen and (min-width: 768px) {
  .mobile-bolt-container,
  .mobile-title,
  .mobile-subtext {
    display: none;
  }

  .desktop-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 80px;
    margin-bottom: 1rem;
  }

  .desktop-logo {
    width: 240px;
    height: auto;
    filter: none !important;         /* 🧼 Clear glow */
    box-shadow: none !important;     /* 🧼 Remove any shadow */
    text-shadow: none !important;    /* 🧼 Just in case */
  }
}
</pre></body></html>