body {
  margin: 0;
  background: pink;
  font-family: sans-serif;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  position: relative;
}

@media (max-width: 768px) {
  body {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
  }
}

.floating-emoji {
  position: absolute;
  font-size: 25px;
  z-index: -1;
  pointer-events: none;
  opacity: 0.7;
}

.floating-emoji:nth-child(1) {
  content: '💖';
  left: 10%;
  animation: floatUp1 8s linear infinite;
  animation-delay: 0s;
}

.floating-emoji:nth-child(2) {
  content: '💰';
  left: 25%;
  animation: floatUp2 10s linear infinite;
  animation-delay: 2s;
}

.floating-emoji:nth-child(3) {
  content: '💕';
  left: 40%;
  animation: floatUp3 9s linear infinite;
  animation-delay: 4s;
}

.floating-emoji:nth-child(4) {
  content: '💸';
  left: 55%;
  animation: floatUp4 11s linear infinite;
  animation-delay: 1s;
}

.floating-emoji:nth-child(5) {
  content: '💗';
  left: 70%;
  animation: floatUp5 7s linear infinite;
  animation-delay: 3s;
}

.floating-emoji:nth-child(6) {
  content: '💵';
  left: 85%;
  animation: floatUp6 12s linear infinite;
  animation-delay: 5s;
}

.floating-emoji:nth-child(7) {
  content: '💓';
  left: 15%;
  animation: floatUp7 9s linear infinite;
  animation-delay: 6s;
}

.floating-emoji:nth-child(8) {
  content: '💴';
  left: 30%;
  animation: floatUp8 8s linear infinite;
  animation-delay: 1.5s;
}

.floating-emoji:nth-child(9) {
  content: '💖';
  left: 45%;
  animation: floatUp9 10s linear infinite;
  animation-delay: 3.5s;
}

.floating-emoji:nth-child(10) {
  content: '💰';
  left: 60%;
  animation: floatUp10 11s linear infinite;
  animation-delay: 2.5s;
}

.floating-emoji:nth-child(11) {
  content: '💕';
  left: 75%;
  animation: floatUp11 9s linear infinite;
  animation-delay: 4.5s;
}

.floating-emoji:nth-child(12) {
  content: '💸';
  left: 90%;
  animation: floatUp12 7s linear infinite;
  animation-delay: 0.5s;
}

@keyframes floatUp1 {
  0% { transform: translateY(100vh) rotate(0deg); }
  100% { transform: translateY(-100px) rotate(360deg); }
}

@keyframes floatUp2 {
  0% { transform: translateY(100vh) rotate(0deg) translateX(-10px); }
  100% { transform: translateY(-100px) rotate(-360deg) translateX(10px); }
}

@keyframes floatUp3 {
  0% { transform: translateY(100vh) rotate(0deg) translateX(15px); }
  100% { transform: translateY(-100px) rotate(180deg) translateX(-15px); }
}

@keyframes floatUp4 {
  0% { transform: translateY(100vh) rotate(0deg) translateX(-5px); }
  100% { transform: translateY(-100px) rotate(-180deg) translateX(5px); }
}

@keyframes floatUp5 {
  0% { transform: translateY(100vh) rotate(0deg) translateX(20px); }
  100% { transform: translateY(-100px) rotate(270deg) translateX(-20px); }
}

@keyframes floatUp6 {
  0% { transform: translateY(100vh) rotate(0deg) translateX(-15px); }
  100% { transform: translateY(-100px) rotate(-270deg) translateX(15px); }
}

@keyframes floatUp7 {
  0% { transform: translateY(100vh) rotate(0deg) translateX(8px); }
  100% { transform: translateY(-100px) rotate(450deg) translateX(-8px); }
}

@keyframes floatUp8 {
  0% { transform: translateY(100vh) rotate(0deg) translateX(-12px); }
  100% { transform: translateY(-100px) rotate(-450deg) translateX(12px); }
}

@keyframes floatUp9 {
  0% { transform: translateY(100vh) rotate(0deg) translateX(25px); }
  100% { transform: translateY(-100px) rotate(720deg) translateX(-25px); }
}

@keyframes floatUp10 {
  0% { transform: translateY(100vh) rotate(0deg) translateX(-18px); }
  100% { transform: translateY(-100px) rotate(-540deg) translateX(18px); }
}

@keyframes floatUp11 {
  0% { transform: translateY(100vh) rotate(0deg) translateX(30px); }
  100% { transform: translateY(-100px) rotate(540deg) translateX(-30px); }
}

@keyframes floatUp12 {
  0% { transform: translateY(100vh) rotate(0deg) translateX(-22px); }
  100% { transform: translateY(-100px) rotate(-720deg) translateX(22px); }
}

.iphone-frame {
  width: 400px;
  height: 600px;
  border: 16px solid white;
  border-radius: 40px;
  overflow: hidden;
  position: relative;
  background: #000;
}

@media (max-width: 768px) {
  .iphone-frame {
    width: 95vw;
    height: 95vh;
    max-width: 95vw;
    max-height: 95vh;
    min-width: 95vw;
    min-height: 95vh;
    border: 2px solid white;
    border-radius: 15px;
    position: fixed;
    top: 2.5vh;
    left: 2.5vw;
    right: 2.5vw;
    bottom: 2.5vh;
    overflow: hidden;
  }
}



.scrolling-images {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url('attached_assets/photo2_1750299250811.png');
  background-size: cover;
  background-position: center;
}

.scrolling-images img {
  display: none;
}

.welcome-screen {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.04);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.welcome-title {
  text-align: center;
  margin-bottom: 20px;
  font-family: 'Anton', sans-serif;
  background: linear-gradient(135deg, #ff69b4, #ff1493, #da70d6);
  padding: 8px 12px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(255, 105, 180, 0.4);
  display: inline-block;
  animation: floatTitle 3s ease-in-out infinite;
}

@keyframes floatTitle {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

.title-line-1 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 5px;
}

.title-line-2 {
  font-size: 24px;
  font-weight: bold;
}

.avatar {
  border-radius: 50%;
  margin-bottom: 20px;
}

button {
  padding: 20px 40px;
  border: none;
  background: #ff69b4;
  color: white;
  font-weight: bold;
  border-radius: 20px;
  cursor: pointer;
  font-size: 18px;
}

.loading-bar {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  text-align: center;
  color: #ff69b4;
}

.loading-bar .progress-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: white;
  position: relative;
  margin: 0 auto 20px;
  box-shadow: 0 4px 12px rgba(255, 105, 180, 0.3);
}

.loading-bar .progress-circle::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  border-radius: 50%;
  border: 3px solid #f0f0f0;
  border-top: 3px solid #ff69b4;
  animation: spin 1s linear infinite;
}

.loading-bar .progress-circle::after {
  content: '❤️';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
}

.loading-bar .loading-text {
  font-size: 18px;
  font-weight: bold;
  color: #ff69b4;
  margin-bottom: 15px;
  text-shadow: 
    -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
    1px 1px 0 #000;
}

.loading-bar .auth-bar {
  width: 200px;
  height: 4px;
  background: #f0f0f0;
  border-radius: 2px;
  margin: 0 auto;
  overflow: hidden;
}

.loading-bar .auth-progress {
  height: 100%;
  background: linear-gradient(90deg, #ff69b4, #ff1493);
  width: 0%;
  transition: width 2s ease-in-out;
  border-radius: 2px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.homepage {
  display: none;
  color: white;
  text-align: left;
  padding: 20px 20px 40px 20px;
  overflow-y: auto;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  background: rgba(0, 0, 0, 0.85);
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
  .homepage {
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding-bottom: 60px;
  }
}

.homepage::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  z-index: -1;
  border-radius: 24px 24px 0 0;
}

.homepage h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #ff69b4;
  position: relative;
  z-index: 1;
  font-family: 'Fredoka One', cursive;
  font-size: 28px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.category-box {
  background: rgba(255, 105, 180, 0.8);
  border: 2px solid #ff69b4;
  border-radius: 8px;
  padding: 12px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.category-box:hover {
  background: rgba(255, 105, 180, 0.9);
}



.category-content {
  flex: 1;
}

.category-title {
  font-size: 16px;
  font-weight: bold;
  color: white;
  margin-bottom: 4px;
  font-family: 'Fredoka One', cursive;
  text-align: center;
}

.click-here-box .category-title {
  font-weight: normal;
  text-shadow: 
    -2px -2px 0 #000,
    2px -2px 0 #000,
    -2px 2px 0 #000,
    2px 2px 0 #000,
    -2px 0 0 #000,
    2px 0 0 #000,
    0 -2px 0 #000,
    0 2px 0 #000;
}

.category-desc {
  font-size: 12px;
  color: #ddd;
  line-height: 1.3;
  font-family: monospace;
  text-align: center;
}

.special-box {
  background: linear-gradient(135deg, #ffb6c1, #ffc0cb);
  border: 2px solid #ff69b4;
  padding: 20px;
  text-align: center;
  transform: scale(1.05);
  margin: 8px 0;
  animation: throb 1.5s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes throb {
  0%, 100% {
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(255, 105, 180, 0.5);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 105, 180, 0.8);
  }
}
</keyframes>

.category-content-special {
  width: 100%;
}

.category-title-special {
  font-size: 20px;
  font-weight: bold;
  color: white;
  margin-bottom: 6px;
  font-family: 'Fredoka One', cursive;
  text-transform: uppercase;
}

.category-desc-special {
  font-size: 15px;
  color: white;
  line-height: 1.3;
}

.pink-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, #ff69b4, transparent);
  margin: 8px 0;
  border-radius: 1px;
}

.click-here-box {
  margin: 15px 0;
  animation: softShake 2s ease-in-out infinite;
  background: linear-gradient(135deg, #ff69b4, #000000) !important;
  border: 2px solid #ff69b4 !important;
}

.click-here-box:hover {
  background: linear-gradient(135deg, #ff1493, #333333) !important;
}

@keyframes softShake {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-2px);
  }
  75% {
    transform: translateX(2px);
  }
}

.forms-section {
  margin-top: 20px;
  padding: 15px;
  background: linear-gradient(135deg, #ffb6c1, #ffc0cb);
  border-radius: 12px;
}

.forms-section h3 {
  text-align: center;
  color: #ff69b4;
  font-weight: bold;
  font-size: 18px;
  margin: 0 0 15px 0;
}

.forms-container {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.forms-container::-webkit-scrollbar {
  display: none;
}

.form-box {
  min-width: 138px;
  height: 120px;
  border: 2px solid #333;
  border-radius: 15px;
  padding: 15px;
  cursor: pointer;
  display: flex;
  align-items: flex-end;
  flex-shrink: 0;
  transition: transform 0.2s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.form-box:first-child {
  background-image: url('attached_assets/poki_1751921005616.jpg');
}

.form-box:nth-child(2) {
  background-image: url('attached_assets/sophie_1751921340393.png');
}

.form-box:nth-child(3) {
  background-image: url('attached_assets/amour_1751921804873.jpg');
}

.form-box:nth-child(4) {
  background-image: url('attached_assets/odessy_1751921157850.jpg');
}

.form-box:hover {
  transform: scale(1.05);
}

.form-content {
  width: 100%;
}

.form-title {
  color: white;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.2;
  text-align: left;
  background: rgba(0, 0, 0, 0.7);
  padding: 8px 12px;
  border-radius: 8px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.scroll-indicator {
  margin-top: 10px;
  margin-right: 15px;
  display: flex;
  justify-content: center;
}

.scroll-bar {
  width: 200px;
  height: 6px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 3px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.scroll-thumb {
  width: 60px;
  height: 6px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 3px;
  position: absolute;
  left: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: background 0.2s ease;
}

.scroll-thumb:hover {
  background: rgba(255, 255, 255, 1);
}

.scroll-bar {
  cursor: pointer;
}