/* Reset + Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', sans-serif;
    color: #fff;
    text-align: center;
    min-height: 100vh;
    overflow-x: hidden;
  }
  
  .container {
    padding: 40px 20px;
  }
  
  /* Page Backgrounds */
  .page1 {
    background: linear-gradient(135deg, #010a3d, #010005);
  }
  
  .page2 {
    background: linear-gradient(135deg, #1d0146, #d5e030);
  }
  
  /* Typography */
  h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
  }
  
  .intro-text {
    font-size: 1.3rem;
    margin-bottom: 30px;
  }
  
  /* Images */
  .main-image {
    width: 300px;
    height: 350px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    margin-bottom: 30px;
    animation: fadeIn 2s ease-out;
  }
  
  .image-grid {
    display: block;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
  }
  
  .surprise-image {
    width: 300px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    animation: pop 1.5s ease-in-out infinite alternate;
  }
  
  /* Button */
  .button {
    display: block;
    padding: 15px 30px;
    font-size: 1.2rem;
    background-color: #ff6b81;
    color: white;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.2s ease, background-color 0.3s ease;
  }
  
  .button:hover {
    background-color: #ff3e6c;
    transform: scale(1.05);
  }
  
  /* Animations */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(40px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes pop {
    0% {
      transform: scale(1);
    }
    100% {
      transform: scale(1.05);
    }
  }