@font-face {
  font-family: 'Jaro';
  src: url('fonts/Jaro-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background-color: #F5EADE;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  color: #000;
  position: relative;
  overflow-x: hidden;
}

/* Animated Background Shapes */
.background-shapes {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.shape {
  position: absolute;
  opacity: 0.15;
}

/* Target-like concentric circles (yellow) */
.shape-1 {
  width: 80px;
  height: 80px;
  border: 3px solid #000;
  border-radius: 50%;
  background: #FFD700;
  top: 10%;
  left: 5%;
  animation: float1 20s ease-in-out infinite;
}

.shape-1::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border: 3px solid #000;
  border-radius: 50%;
  background: #FFD700;
}

.shape-1::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 3px solid #000;
  border-radius: 50%;
  background: #000;
}

/* Grid of dots (purple) */
.shape-2 {
  width: 60px;
  height: 60px;
  top: 15%;
  right: 8%;
  animation: float2 25s ease-in-out infinite;
  background-image: 
    radial-gradient(circle at 10px 10px, #9B59B6 6px, transparent 6px),
    radial-gradient(circle at 30px 10px, #9B59B6 6px, transparent 6px),
    radial-gradient(circle at 50px 10px, #9B59B6 6px, transparent 6px),
    radial-gradient(circle at 10px 30px, #9B59B6 6px, transparent 6px),
    radial-gradient(circle at 30px 30px, #9B59B6 6px, transparent 6px),
    radial-gradient(circle at 50px 30px, #9B59B6 6px, transparent 6px),
    radial-gradient(circle at 10px 50px, #9B59B6 6px, transparent 6px),
    radial-gradient(circle at 30px 50px, #9B59B6 6px, transparent 6px),
    radial-gradient(circle at 50px 50px, #9B59B6 6px, transparent 6px);
  background-size: 60px 60px;
  border: 3px solid #000;
  border-radius: 8px;
}

/* Wavy horizontal band (purple) */
.shape-3 {
  width: 120px;
  height: 20px;
  background: #9B59B6;
  border: 3px solid #000;
  border-radius: 20px;
  top: 40%;
  left: 10%;
  animation: float3 18s ease-in-out infinite;
  transform: rotate(-5deg);
}

.shape-3::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 20px;
  width: 100px;
  height: 20px;
  background: #9B59B6;
  border: 3px solid #000;
  border-radius: 20px;
  transform: rotate(10deg);
}

/* Arrow (blue/turquoise) */
.shape-4 {
  width: 0;
  height: 0;
  border-left: 30px solid #05D9FF;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  top: 50%;
  left: 20%;
  animation: float4 22s ease-in-out infinite;
  filter: drop-shadow(2px 2px 0px #000);
}

.shape-4::before {
  content: '';
  position: absolute;
  left: -30px;
  top: -8px;
  width: 40px;
  height: 16px;
  background: #1E90FF;
  border: 3px solid #000;
  border-radius: 4px;
}

/* Small abstract mark (dark red) */
.shape-5 {
  width: 30px;
  height: 8px;
  background: #8B0000;
  border: 2px solid #000;
  top: 35%;
  left: 25%;
  animation: float5 16s ease-in-out infinite;
  transform: rotate(15deg);
}

.shape-5::before,
.shape-5::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  background: #000;
  border-radius: 50%;
  top: 10px;
}

.shape-5::before {
  left: 5px;
}

.shape-5::after {
  right: 5px;
}

/* Curved line (pink) */
.shape-6 {
  width: 100px;
  height: 4px;
  background: #FF69B4;
  border: 2px solid #000;
  border-radius: 50px;
  top: 70%;
  right: 15%;
  animation: float6 24s ease-in-out infinite;
  transform: rotate(25deg);
}

.shape-7 {
  width: 100px;
  height: 4px;
  background: #FF69B4;
  border: 2px solid #000;
  border-radius: 50px;
  top: 75%;
  right: 12%;
  animation: float7 19s ease-in-out infinite;
  transform: rotate(-20deg);
}

/* Circle (yellow) */
.shape-8 {
  width: 50px;
  height: 50px;
  background: #FFD700;
  border: 3px solid #000;
  border-radius: 50%;
  top: 60%;
  left: 5%;
  animation: float8 21s ease-in-out infinite;
}

/* Square with dot (blue) */
.shape-9 {
  width: 40px;
  height: 40px;
  background: #1E90FF;
  border: 3px solid #000;
  top: 25%;
  left: 50%;
  animation: float9 23s ease-in-out infinite;
}

.shape-9::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: #FF69B4;
  border: 2px solid #000;
  border-radius: 50%;
}

/* Wavy shape (purple) */
.shape-10 {
  width: 80px;
  height: 15px;
  background: #9B59B6;
  border: 3px solid #000;
  border-radius: 15px;
  bottom: 20%;
  right: 25%;
  animation: float10 17s ease-in-out infinite;
  transform: rotate(45deg);
}

/* Floating Animations */
@keyframes float1 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(30px, -40px) rotate(90deg); }
  50% { transform: translate(-20px, 30px) rotate(180deg); }
  75% { transform: translate(40px, 20px) rotate(270deg); }
}

@keyframes float2 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(-25px, 35px) rotate(120deg); }
  66% { transform: translate(35px, -25px) rotate(240deg); }
}

@keyframes float3 {
  0%, 100% { transform: translate(0, 0) rotate(-5deg); }
  50% { transform: translate(50px, 30px) rotate(5deg); }
}

@keyframes float4 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-40px, 50px) rotate(180deg); }
}

@keyframes float5 {
  0%, 100% { transform: translate(0, 0) rotate(15deg); }
  50% { transform: translate(25px, -30px) rotate(-15deg); }
}

@keyframes float6 {
  0%, 100% { transform: translate(0, 0) rotate(25deg); }
  50% { transform: translate(-60px, -40px) rotate(-25deg); }
}

@keyframes float7 {
  0%, 100% { transform: translate(0, 0) rotate(-20deg); }
  50% { transform: translate(50px, 30px) rotate(20deg); }
}

@keyframes float8 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(40px, -30px) rotate(90deg); }
  50% { transform: translate(-30px, 40px) rotate(180deg); }
  75% { transform: translate(-40px, -30px) rotate(270deg); }
}

@keyframes float9 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(30px, 50px) rotate(180deg); }
}

@keyframes float10 {
  0%, 100% { transform: translate(0, 0) rotate(45deg); }
  50% { transform: translate(-50px, 40px) rotate(-45deg); }
}

/* Additional Shapes 11-60 */
/* Triangle (turquoise) */
.shape-11 {
  width: 0;
  height: 0;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-bottom: 40px solid #05D9FF;
  top: 5%;
  left: 15%;
  animation: float11 19s ease-in-out infinite;
  filter: drop-shadow(2px 2px 0px #000);
}

/* Diamond (yellow) */
.shape-12 {
  width: 40px;
  height: 40px;
  background: #FFD700;
  border: 3px solid #000;
  transform: rotate(45deg);
  top: 8%;
  right: 20%;
  animation: float12 22s ease-in-out infinite;
}

/* Small circle (pink) */
.shape-13 {
  width: 35px;
  height: 35px;
  background: #FF69B4;
  border: 3px solid #000;
  border-radius: 50%;
  top: 12%;
  left: 30%;
  animation: float13 17s ease-in-out infinite;
}

/* Rectangle (blue) */
.shape-14 {
  width: 60px;
  height: 25px;
  background: #1E90FF;
  border: 3px solid #000;
  top: 18%;
  right: 30%;
  animation: float14 24s ease-in-out infinite;
  transform: rotate(10deg);
}

/* Zigzag line */
.shape-15 {
  width: 80px;
  height: 4px;
  background: #9B59B6;
  border: 2px solid #000;
  top: 22%;
  left: 40%;
  animation: float15 20s ease-in-out infinite;
  transform: rotate(30deg);
}

.shape-15::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 20px;
  width: 60px;
  height: 4px;
  background: #9B59B6;
  border: 2px solid #000;
  transform: rotate(-60deg);
}

/* Star-like shape (yellow) */
.shape-16 {
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 30px solid #FFD700;
  top: 28%;
  left: 12%;
  animation: float16 18s ease-in-out infinite;
  filter: drop-shadow(2px 2px 0px #000);
}

.shape-16::after {
  content: '';
  position: absolute;
  top: 10px;
  left: -20px;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 30px solid #FFD700;
}

/* Oval (purple) */
.shape-17 {
  width: 70px;
  height: 35px;
  background: #9B59B6;
  border: 3px solid #000;
  border-radius: 50%;
  top: 32%;
  right: 15%;
  animation: float17 21s ease-in-out infinite;
  transform: rotate(-15deg);
}

/* Small square (red) */
.shape-18 {
  width: 30px;
  height: 30px;
  background: #FD5657;
  border: 3px solid #000;
  top: 38%;
  left: 18%;
  animation: float18 16s ease-in-out infinite;
}

/* Wavy line (turquoise) */
.shape-19 {
  width: 90px;
  height: 3px;
  background: #05D9FF;
  border: 2px solid #000;
  border-radius: 50px;
  top: 42%;
  right: 25%;
  animation: float19 23s ease-in-out infinite;
  transform: rotate(-10deg);
}

.shape-19::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 10px;
  width: 70px;
  height: 3px;
  background: #05D9FF;
  border: 2px solid #000;
  border-radius: 50px;
  transform: rotate(20deg);
}

/* Dot cluster (pink) */
.shape-20 {
  width: 8px;
  height: 8px;
  background: #FF69B4;
  border: 2px solid #000;
  border-radius: 50%;
  top: 45%;
  left: 22%;
  animation: float20 19s ease-in-out infinite;
  box-shadow: 15px 0 0 #FF69B4, 30px 0 0 #FF69B4, 0 15px 0 #FF69B4, 15px 15px 0 #FF69B4, 30px 15px 0 #FF69B4;
}

/* Arrow up (blue) */
.shape-21 {
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 25px solid #1E90FF;
  top: 48%;
  right: 35%;
  animation: float21 25s ease-in-out infinite;
  filter: drop-shadow(2px 2px 0px #000);
}

/* Hexagon (yellow) */
.shape-22 {
  width: 35px;
  height: 20px;
  background: #FFD700;
  border: 3px solid #000;
  top: 52%;
  left: 28%;
  animation: float22 17s ease-in-out infinite;
  transform: rotate(30deg);
}

.shape-22::before,
.shape-22::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-left: 17.5px solid transparent;
  border-right: 17.5px solid transparent;
}

.shape-22::before {
  top: -12px;
  border-bottom: 10px solid #FFD700;
}

.shape-22::after {
  bottom: -12px;
  border-top: 10px solid #FFD700;
}

/* Curved arrow (purple) */
.shape-23 {
  width: 50px;
  height: 4px;
  background: #9B59B6;
  border: 2px solid #000;
  border-radius: 50px;
  top: 55%;
  left: 35%;
  animation: float23 20s ease-in-out infinite;
  transform: rotate(45deg);
}

.shape-23::after {
  content: '';
  position: absolute;
  right: -8px;
  top: -6px;
  width: 0;
  height: 0;
  border-left: 12px solid #9B59B6;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

/* Small circle with border (turquoise) */
.shape-24 {
  width: 25px;
  height: 25px;
  border: 3px solid #000;
  border-radius: 50%;
  background: #05D9FF;
  top: 58%;
  right: 40%;
  animation: float24 22s ease-in-out infinite;
}

/* Rectangle rotated (pink) */
.shape-25 {
  width: 45px;
  height: 20px;
  background: #FF69B4;
  border: 3px solid #000;
  top: 62%;
  left: 42%;
  animation: float25 18s ease-in-out infinite;
  transform: rotate(60deg);
}

/* Large dot (yellow) */
.shape-26 {
  width: 20px;
  height: 20px;
  background: #FFD700;
  border: 3px solid #000;
  border-radius: 50%;
  top: 65%;
  right: 18%;
  animation: float26 24s ease-in-out infinite;
}

/* Wavy band (blue) */
.shape-27 {
  width: 100px;
  height: 18px;
  background: #1E90FF;
  border: 3px solid #000;
  border-radius: 20px;
  top: 68%;
  left: 8%;
  animation: float27 19s ease-in-out infinite;
  transform: rotate(-8deg);
}

/* Small triangle (red) */
.shape-28 {
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 20px solid #FD5657;
  top: 72%;
  left: 25%;
  animation: float28 21s ease-in-out infinite;
  filter: drop-shadow(2px 2px 0px #000);
}

/* Square with circle inside (purple) */
.shape-29 {
  width: 35px;
  height: 35px;
  background: #9B59B6;
  border: 3px solid #000;
  top: 75%;
  right: 28%;
  animation: float29 16s ease-in-out infinite;
}

.shape-29::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 15px;
  height: 15px;
  background: #FFD700;
  border: 2px solid #000;
  border-radius: 50%;
}

/* Horizontal line (turquoise) */
.shape-30 {
  width: 70px;
  height: 4px;
  background: #05D9FF;
  border: 2px solid #000;
  top: 78%;
  left: 38%;
  animation: float30 23s ease-in-out infinite;
}

/* Circle cluster (pink) */
.shape-31 {
  width: 15px;
  height: 15px;
  background: #FF69B4;
  border: 2px solid #000;
  border-radius: 50%;
  top: 3%;
  left: 45%;
  animation: float31 20s ease-in-out infinite;
  box-shadow: 20px 10px 0 #FF69B4, -10px 20px 0 #FF69B4;
}

/* Arrow right (yellow) */
.shape-32 {
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 20px solid #FFD700;
  top: 7%;
  right: 12%;
  animation: float32 17s ease-in-out infinite;
  filter: drop-shadow(2px 2px 0px #000);
}

/* Rounded rectangle (blue) */
.shape-33 {
  width: 55px;
  height: 30px;
  background: #1E90FF;
  border: 3px solid #000;
  border-radius: 15px;
  top: 11%;
  left: 50%;
  animation: float33 25s ease-in-out infinite;
  transform: rotate(-20deg);
}

/* Small wavy line (purple) */
.shape-34 {
  width: 60px;
  height: 3px;
  background: #9B59B6;
  border: 2px solid #000;
  border-radius: 50px;
  top: 14%;
  right: 22%;
  animation: float34 18s ease-in-out infinite;
  transform: rotate(15deg);
}

/* Diamond small (red) */
.shape-35 {
  width: 25px;
  height: 25px;
  background: #FD5657;
  border: 3px solid #000;
  transform: rotate(45deg);
  top: 17%;
  left: 55%;
  animation: float35 22s ease-in-out infinite;
}

/* Oval vertical (turquoise) */
.shape-36 {
  width: 30px;
  height: 50px;
  background: #05D9FF;
  border: 3px solid #000;
  border-radius: 50%;
  top: 21%;
  right: 45%;
  animation: float36 19s ease-in-out infinite;
}

/* Small square rotated (pink) */
.shape-37 {
  width: 28px;
  height: 28px;
  background: #FF69B4;
  border: 3px solid #000;
  top: 24%;
  left: 60%;
  animation: float37 16s ease-in-out infinite;
  transform: rotate(45deg);
}

/* Line with dots (yellow) */
.shape-38 {
  width: 80px;
  height: 3px;
  background: #FFD700;
  border: 2px solid #000;
  top: 27%;
  right: 8%;
  animation: float38 24s ease-in-out infinite;
}

.shape-38::before,
.shape-38::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background: #000;
  border-radius: 50%;
  top: -5px;
}

.shape-38::before {
  left: 10px;
}

.shape-38::after {
  right: 10px;
}

/* Large circle (blue) */
.shape-39 {
  width: 45px;
  height: 45px;
  background: #1E90FF;
  border: 3px solid #000;
  border-radius: 50%;
  top: 30%;
  left: 65%;
  animation: float39 21s ease-in-out infinite;
}

/* Zigzag (purple) */
.shape-40 {
  width: 65px;
  height: 4px;
  background: #9B59B6;
  border: 2px solid #000;
  top: 33%;
  right: 50%;
  animation: float40 17s ease-in-out infinite;
  transform: rotate(25deg);
}

.shape-40::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 15px;
  width: 50px;
  height: 4px;
  background: #9B59B6;
  border: 2px solid #000;
  transform: rotate(-50deg);
}

/* Triangle down (red) */
.shape-41 {
  width: 0;
  height: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-top: 28px solid #FD5657;
  top: 36%;
  left: 70%;
  animation: float41 23s ease-in-out infinite;
  filter: drop-shadow(2px 2px 0px #000);
}

/* Rectangle tall (turquoise) */
.shape-42 {
  width: 25px;
  height: 50px;
  background: #05D9FF;
  border: 3px solid #000;
  top: 40%;
  right: 15%;
  animation: float42 20s ease-in-out infinite;
  transform: rotate(10deg);
}

/* Small circle cluster (pink) */
.shape-43 {
  width: 10px;
  height: 10px;
  background: #FF69B4;
  border: 2px solid #000;
  border-radius: 50%;
  top: 43%;
  left: 75%;
  animation: float43 18s ease-in-out infinite;
  box-shadow: 12px 0 0 #FF69B4, 24px 0 0 #FF69B4, 0 12px 0 #FF69B4;
}

/* Wavy shape (yellow) */
.shape-44 {
  width: 85px;
  height: 12px;
  background: #FFD700;
  border: 3px solid #000;
  border-radius: 15px;
  top: 46%;
  right: 32%;
  animation: float44 22s ease-in-out infinite;
  transform: rotate(-12deg);
}

/* Square small (blue) */
.shape-45 {
  width: 22px;
  height: 22px;
  background: #1E90FF;
  border: 3px solid #000;
  top: 50%;
  left: 80%;
  animation: float45 19s ease-in-out infinite;
}

/* Curved line double (purple) */
.shape-46 {
  width: 75px;
  height: 3px;
  background: #9B59B6;
  border: 2px solid #000;
  border-radius: 50px;
  top: 53%;
  right: 38%;
  animation: float46 25s ease-in-out infinite;
  transform: rotate(20deg);
}

.shape-46::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 5px;
  width: 65px;
  height: 3px;
  background: #9B59B6;
  border: 2px solid #000;
  border-radius: 50px;
  transform: rotate(-15deg);
}

/* Circle medium (red) */
.shape-47 {
  width: 32px;
  height: 32px;
  background: #FD5657;
  border: 3px solid #000;
  border-radius: 50%;
  top: 56%;
  left: 85%;
  animation: float47 16s ease-in-out infinite;
}

/* Arrow left (turquoise) */
.shape-48 {
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 18px solid #05D9FF;
  top: 59%;
  right: 42%;
  animation: float48 21s ease-in-out infinite;
  filter: drop-shadow(2px 2px 0px #000);
}

/* Oval horizontal (pink) */
.shape-49 {
  width: 50px;
  height: 25px;
  background: #FF69B4;
  border: 3px solid #000;
  border-radius: 50%;
  top: 63%;
  left: 90%;
  animation: float49 18s ease-in-out infinite;
}

/* Rectangle wide (yellow) */
.shape-50 {
  width: 70px;
  height: 18px;
  background: #FFD700;
  border: 3px solid #000;
  top: 66%;
  right: 48%;
  animation: float50 24s ease-in-out infinite;
  transform: rotate(-25deg);
}

/* Small triangle cluster (blue) */
.shape-51 {
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 12px solid #1E90FF;
  top: 69%;
  left: 2%;
  animation: float51 17s ease-in-out infinite;
  filter: drop-shadow(1px 1px 0px #000);
  box-shadow: 15px 10px 0 -2px #1E90FF, -10px 15px 0 -2px #1E90FF;
}

/* Circle with square (purple) */
.shape-52 {
  width: 38px;
  height: 38px;
  border: 3px solid #000;
  border-radius: 50%;
  background: #9B59B6;
  top: 73%;
  right: 52%;
  animation: float52 20s ease-in-out infinite;
}

.shape-52::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: #FFD700;
  border: 2px solid #000;
}

/* Wavy line vertical (red) */
.shape-53 {
  width: 3px;
  height: 60px;
  background: #FD5657;
  border: 2px solid #000;
  border-radius: 50px;
  top: 76%;
  left: 5%;
  animation: float53 23s ease-in-out infinite;
  transform: rotate(30deg);
}

/* Small dot (turquoise) */
.shape-54 {
  width: 12px;
  height: 12px;
  background: #05D9FF;
  border: 2px solid #000;
  border-radius: 50%;
  top: 80%;
  right: 55%;
  animation: float54 19s ease-in-out infinite;
}

/* Square rotated (pink) */
.shape-55 {
  width: 26px;
  height: 26px;
  background: #FF69B4;
  border: 3px solid #000;
  top: 83%;
  left: 10%;
  animation: float55 22s ease-in-out infinite;
  transform: rotate(30deg);
}

/* Large wavy band (yellow) */
.shape-56 {
  width: 110px;
  height: 16px;
  background: #FFD700;
  border: 3px solid #000;
  border-radius: 20px;
  top: 85%;
  right: 58%;
  animation: float56 18s ease-in-out infinite;
  transform: rotate(8deg);
}

/* Circle small (blue) */
.shape-57 {
  width: 18px;
  height: 18px;
  background: #1E90FF;
  border: 3px solid #000;
  border-radius: 50%;
  top: 88%;
  left: 15%;
  animation: float57 25s ease-in-out infinite;
}

/* Arrow diagonal (purple) */
.shape-58 {
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-bottom: 22px solid #9B59B6;
  top: 90%;
  right: 62%;
  animation: float58 21s ease-in-out infinite;
  filter: drop-shadow(2px 2px 0px #000);
  transform: rotate(45deg);
}

/* Rectangle small (red) */
.shape-59 {
  width: 40px;
  height: 20px;
  background: #FD5657;
  border: 3px solid #000;
  top: 92%;
  left: 20%;
  animation: float59 16s ease-in-out infinite;
  transform: rotate(-15deg);
}

/* Final circle (turquoise) */
.shape-60 {
  width: 28px;
  height: 28px;
  background: #05D9FF;
  border: 3px solid #000;
  border-radius: 50%;
  top: 95%;
  right: 65%;
  animation: float60 24s ease-in-out infinite;
}

/* Additional Animations */
@keyframes float11 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(35px, 45px) rotate(180deg); }
}

@keyframes float12 {
  0%, 100% { transform: translate(0, 0) rotate(45deg); }
  33% { transform: translate(-30px, 40px) rotate(135deg); }
  66% { transform: translate(40px, -30px) rotate(225deg); }
}

@keyframes float13 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-25px, 35px) rotate(360deg); }
}

@keyframes float14 {
  0%, 100% { transform: translate(0, 0) rotate(10deg); }
  50% { transform: translate(45px, -30px) rotate(-10deg); }
}

@keyframes float15 {
  0%, 100% { transform: translate(0, 0) rotate(30deg); }
  50% { transform: translate(-50px, 40px) rotate(-30deg); }
}

@keyframes float16 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(30px, -35px) rotate(90deg); }
  50% { transform: translate(-25px, 30px) rotate(180deg); }
  75% { transform: translate(35px, 25px) rotate(270deg); }
}

@keyframes float17 {
  0%, 100% { transform: translate(0, 0) rotate(-15deg); }
  50% { transform: translate(40px, 35px) rotate(15deg); }
}

@keyframes float18 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(30px, -40px) rotate(180deg); }
}

@keyframes float19 {
  0%, 100% { transform: translate(0, 0) rotate(-10deg); }
  50% { transform: translate(-55px, 45px) rotate(10deg); }
}

@keyframes float20 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(25px, 30px) rotate(120deg); }
  66% { transform: translate(-30px, 25px) rotate(240deg); }
}

@keyframes float21 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(50px, -45px) rotate(360deg); }
}

@keyframes float22 {
  0%, 100% { transform: translate(0, 0) rotate(30deg); }
  50% { transform: translate(-40px, 50px) rotate(-30deg); }
}

@keyframes float23 {
  0%, 100% { transform: translate(0, 0) rotate(45deg); }
  50% { transform: translate(60px, -50px) rotate(-45deg); }
}

@keyframes float24 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(35px, -30px) rotate(90deg); }
  50% { transform: translate(-30px, 35px) rotate(180deg); }
  75% { transform: translate(-35px, -30px) rotate(270deg); }
}

@keyframes float25 {
  0%, 100% { transform: translate(0, 0) rotate(60deg); }
  50% { transform: translate(45px, 40px) rotate(-60deg); }
}

@keyframes float26 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-50px, 55px) rotate(360deg); }
}

@keyframes float27 {
  0%, 100% { transform: translate(0, 0) rotate(-8deg); }
  50% { transform: translate(55px, 40px) rotate(8deg); }
}

@keyframes float28 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(40px, -35px) rotate(180deg); }
}

@keyframes float29 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-45px, 50px) rotate(360deg); }
}

@keyframes float30 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(60px, -40px) rotate(180deg); }
}

@keyframes float31 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(-20px, 25px) rotate(120deg); }
  66% { transform: translate(25px, -20px) rotate(240deg); }
}

@keyframes float32 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-45px, 50px) rotate(360deg); }
}

@keyframes float33 {
  0%, 100% { transform: translate(0, 0) rotate(-20deg); }
  50% { transform: translate(50px, 45px) rotate(20deg); }
}

@keyframes float34 {
  0%, 100% { transform: translate(0, 0) rotate(15deg); }
  50% { transform: translate(-55px, -35px) rotate(-15deg); }
}

@keyframes float35 {
  0%, 100% { transform: translate(0, 0) rotate(45deg); }
  50% { transform: translate(40px, 50px) rotate(-45deg); }
}

@keyframes float36 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(45px, -40px) rotate(180deg); }
}

@keyframes float37 {
  0%, 100% { transform: translate(0, 0) rotate(45deg); }
  50% { transform: translate(-35px, 45px) rotate(-45deg); }
}

@keyframes float38 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(55px, 50px) rotate(360deg); }
}

@keyframes float39 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(40px, -35px) rotate(90deg); }
  50% { transform: translate(-35px, 40px) rotate(180deg); }
  75% { transform: translate(-40px, -35px) rotate(270deg); }
}

@keyframes float40 {
  0%, 100% { transform: translate(0, 0) rotate(25deg); }
  50% { transform: translate(-50px, 45px) rotate(-25deg); }
}

@keyframes float41 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(50px, -45px) rotate(180deg); }
}

@keyframes float42 {
  0%, 100% { transform: translate(0, 0) rotate(10deg); }
  50% { transform: translate(-45px, 55px) rotate(-10deg); }
}

@keyframes float43 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, 35px) rotate(120deg); }
  66% { transform: translate(-35px, 30px) rotate(240deg); }
}

@keyframes float44 {
  0%, 100% { transform: translate(0, 0) rotate(-12deg); }
  50% { transform: translate(60px, 50px) rotate(12deg); }
}

@keyframes float45 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-40px, 55px) rotate(360deg); }
}

@keyframes float46 {
  0%, 100% { transform: translate(0, 0) rotate(20deg); }
  50% { transform: translate(65px, -50px) rotate(-20deg); }
}

@keyframes float47 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(50px, -45px) rotate(180deg); }
}

@keyframes float48 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-55px, 60px) rotate(360deg); }
}

@keyframes float49 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(45px, -40px) rotate(180deg); }
}

@keyframes float50 {
  0%, 100% { transform: translate(0, 0) rotate(-25deg); }
  50% { transform: translate(-60px, 55px) rotate(25deg); }
}

@keyframes float51 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(35px, 40px) rotate(120deg); }
  66% { transform: translate(-40px, 35px) rotate(240deg); }
}

@keyframes float52 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(55px, -50px) rotate(360deg); }
}

@keyframes float53 {
  0%, 100% { transform: translate(0, 0) rotate(30deg); }
  50% { transform: translate(-50px, 60px) rotate(-30deg); }
}

@keyframes float54 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(45px, -40px) rotate(180deg); }
}

@keyframes float55 {
  0%, 100% { transform: translate(0, 0) rotate(30deg); }
  50% { transform: translate(-40px, 50px) rotate(-30deg); }
}

@keyframes float56 {
  0%, 100% { transform: translate(0, 0) rotate(8deg); }
  50% { transform: translate(70px, 60px) rotate(-8deg); }
}

@keyframes float57 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(35px, -30px) rotate(90deg); }
  50% { transform: translate(-30px, 35px) rotate(180deg); }
  75% { transform: translate(-35px, -30px) rotate(270deg); }
}

@keyframes float58 {
  0%, 100% { transform: translate(0, 0) rotate(45deg); }
  50% { transform: translate(60px, -55px) rotate(-45deg); }
}

@keyframes float59 {
  0%, 100% { transform: translate(0, 0) rotate(-15deg); }
  50% { transform: translate(-45px, 60px) rotate(15deg); }
}

@keyframes float60 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(55px, -50px) rotate(360deg); }
}

.container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

/* Logo Section */
.logo-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.logo-placeholder {
  width: 195px;
  height: 195px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mole-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.title {
  font-family: 'Jaro', sans-serif;
  font-weight: 400;
  font-size: 82px;
  line-height: 82px;
  letter-spacing: -5px;
  text-align: center;
  color: #f4f4f4;
  text-shadow: 
    6px 6px 0px #000000,
    4px 2px 0px #000000,
    2px 4px 0px #000000,
    -4px -4px 0px #000000,
    -4px -2px 0px #000000,
    -2px -4px 0px #000000,
    4px -4px 0px #000000,
    4px -2px 0px #000000,
    2px -4px 0px #000000,
    -4px 4px 0px #000000,
    -4px 2px 0px #000000,
    -2px 4px 0px #000000;
  padding-right: 8px;
  padding-bottom: 8px;
  position: relative;
}

/* Form Container */
.form-container {
  width: 100%;
  background-color: #fff;
  border: 3px solid #000;
  border-radius: 16px;
  box-shadow: 4px 4px 0px 0px #000000;
  padding: 32px;
  margin-right: 4px;
  margin-bottom: 4px;
}

.subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #000;
  text-align: center;
  margin-bottom: 8px;
}

.description {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #666;
  text-align: center;
  margin-bottom: 32px;
}

/* Form Styles */
.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #000;
}

.form-input {
  width: 100%;
  padding: 16px;
  border: 3px solid #000;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  background-color: #fff;
  transition: all 0.2s ease;
}

.form-input:focus {
  outline: none;
  box-shadow: 2px 2px 0px 0px #000000;
  transform: translate(-2px, -2px);
}

.form-input::placeholder {
  color: #999;
}

/* Submit Button */
.submit-button {
  width: 100%;
  height: 72px;
  background-color: #FD5657;
  border: 3px solid #000;
  border-radius: 16px;
  box-shadow: 4px 4px 0px 0px #000000;
  margin-top: 8px;
  margin-right: 4px;
  margin-bottom: 4px;
  padding: 16px 10px;
  font-family: 'Inter', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #000;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.submit-button:hover:not(:disabled) {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px 0px #000000;
}

.submit-button:active:not(:disabled) {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0px 0px #000000;
}

.submit-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Messages */
.success-message,
.error-message {
  margin-top: 24px;
  padding: 16px;
  border: 3px solid #000;
  border-radius: 12px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.success-message {
  background-color: #05D9FF;
  color: #000;
}

.error-message {
  background-color: #FD5657;
  color: #000;
}

.hidden {
  display: none;
}

/* Responsive Design */
@media (max-width: 640px) {
  .title {
    font-size: 64px;
    line-height: 64px;
    letter-spacing: -4px;
  }
  
  .form-container {
    padding: 24px;
  }
  
  .subtitle {
    font-size: 28px;
  }
  
  .submit-button {
    font-size: 24px;
    height: 64px;
  }
  
  .logo-placeholder {
    width: 150px;
    height: 150px;
  }
  
  .mole-image {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 480px) {
  .title {
    font-size: 48px;
    line-height: 48px;
    letter-spacing: -3px;
  }
  
  .form-container {
    padding: 20px;
  }
  
  .subtitle {
    font-size: 24px;
  }
  
  .submit-button {
    font-size: 20px;
    height: 56px;
  }
}

