* { margin:0; padding:0; box-sizing:border-box; }

body, html {
  height: 100%;
  background: #000;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  ;
  overflow: hidden;
}

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

/* MAIN TITLE */
.title-wrapper {
  position: relative;
  display: inline-block;
}

h1 {
  font-size: clamp(4rem, 13vw, 11rem);
  font-weight: 900;
  letter-spacing: 2px;
  margin: 0;
  background: linear-gradient(90deg, #00ffff, #00ff88, #ffff66, #ff3366, #00ffff);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: flow 9s ease infinite;
  text-shadow: 0 0 50px rgba(0,255,255,0.4);
  display: inline-block;
}

/* PRO RIBBON — NOW THE WORD "Pro" IS VISIBLE AND PERFECT */
.pro-ribbon {
  position: absolute;
  top: -10px;
  right: -70px;
  background: #ff3366;
  color: #000;
  font-size: 2em;           /* bigger */
  font-weight: 900;
  padding: 20px 35px;
  border-radius: 18px;
  box-shadow: 
    0 9px 50px rgba(255,51,102,0.8),
    inset 0 2px 4px rgba(255,255,255,0.3);
  transform: rotate(18deg);
  letter-spacing: 3px;
  border: 3px solid #000;
  z-index: 20;
  text-shadow: none !important;
  opacity: 1 !important;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Rest stays perfect */
h2 {
  font-size: clamp(2.2rem, 7vw, 4.5rem);
  font-weight: 800;
  margin: 30px 0 40px 0;
  background: linear-gradient(90deg, #0af, #00ff88, #00ffff);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: flow 9s ease infinite;
}

p {
  font-size: 1.5rem;
  color: #aaa;
  max-width: 90%;
  line-height: 1.6;
}

.verse {
  margin-top: 60px;
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(90deg, #00ff88, #ffff66);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes flow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.footer-links {
  margin-top: 80px; /* gives breathing room from the verse */
  font-size: 1rem;
  color: #888;
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
  margin: 0 15px;
  position: relative;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background: linear-gradient(90deg, #00ffff, #00ff88);
  transition: width 0.4s ease;
}

.footer-links a:hover::after {
  width: 100%;
}

.appstore-badge {
  margin-top: 16px;
  width: 180px;
  max-width: 80%;
}

/* Exact same base styles as original site */
.desktop-buttons {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 40px 0;
}

.desktop-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  padding: 20px 40px !important;
  border-radius: 20px !important;

  font-size: 1.1rem !important;
  font-weight: 900 !important;
  color: white !important;
  text-decoration: none !important;

  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.85),
    rgba(20, 20, 20, 0.85)
  ) !important;

  border: 3px solid #00ffff !important;

  box-shadow:
    0 0 0 rgba(0,0,0,0),
    0 20px 50px rgba(0, 255, 255, 0.45) !important;

  width: 250px !important;
  transition: all 0.35s ease !important;
}


.btn-icon {
  height: 28px;
  width: auto;
}

/* Dimmed style for coming-soon buttons */
.desktop-btn.coming-soon {
  color: #666;
  border-color: #333;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  opacity: 0.6;
}

.desktop-btn {
  cursor: pointer;
  text-decoration: none;
}

.desktop-btn:hover {
  transform: translateY(-6px) scale(1.03);
  border-color: #00ffea;

  box-shadow:
    0 10px 30px rgba(0, 255, 255, 0.35),
    0 30px 80px rgba(0, 255, 255, 0.65);
}


.desktop-btn:active {
  transform: translateY(-2px) scale(0.99);
  box-shadow:
    0 8px 20px rgba(0, 255, 255, 0.4);
}

