* { 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%; }
}