body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      background: url('images/love-bg.jpg') no-repeat center center/cover;
      color: white;
      text-align: center;
      overflow-x: hidden;
      position: relative;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      filter: blur(10);
    }

    .container {
      padding: 40px 20px;
      max-width: 900px;
      margin: auto;
    }

    h1 {
      font-size: 3rem;
      animation: fadeIn 2s ease;
    }

    p {
      font-size: 1.4rem;
      margin: 20px 0;
      animation: fadeIn 3s ease;
    }

    .swipe-cards {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-top: 40px;
      position: relative;
      flex-wrap: nowrap;
    }

    .card {
      background: url('images/love-bg3.jpg') no-repeat center center/cover #fff;
      color: #ffffff;
      padding: 30px;
      margin: 0 10px;
      border-radius: 30px;
      min-width: 250px;
      max-width: 300px;
      box-shadow: 0 8px 16px rgba(0,0,0,0.2);
      opacity: 0;
      transform: scale(0.8);
      transition: all 0.5s ease;
      position: absolute;
      backdrop-filter: blur(10px) saturate(180%)20px;
    }

    .card.active {
      opacity: 1;
      transform: scale(1);
      position: relative;
      
    }

    .card img {
      width: 100px;
      margin-bottom: 15px;
      border-radius: 15%;
    }

    .buttons {
      margin-top: 40px;
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .buttons button {
      background: white;
      color: #ff4b2b;
      padding: 15px 25px;
      border: none;
      border-radius: 50px;
      font-size: 1.1rem;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

    .buttons button:hover {
      transform: scale(1.1);
      background: #ff6f91;
      color: white;
    }

    .arrow-controls {
      text-align: center;
      margin-top: 20px;
      z-index: 3;
    }

    .arrow-controls button {
      background: #ff4b2b;
      border: none;
      color: white;
      padding: 10px 20px;
      margin: 0 15px;
      border-radius: 50px;
      font-size: 1.2rem;
      cursor: pointer;
      transition: 0.3s ease;
      box-shadow: 0 5px 10px rgba(255, 0, 102, 0.3);
    }

    .arrow-controls button:hover {
      transform: scale(1.1);
      background: #e40b0b;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(-20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @media screen and (max-width: 600px) {
      h1 {
        font-size: 2rem;
      }
      .card {
        min-width: 200px;
        max-width: 240px;
        backdrop-filter: (10px) saturate(180%)20px;
      }
    }