    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    img, div {
  max-width: 100%;
}
    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      background: #FFFFFF;
      color: #2A2A2A;
      line-height: 1.6;
      overflow-x: hidden;
      box-sizing: border-box;
    }

    html, body {
      height: 100%;
        width: 100%;
  overflow-x: hidden;
    }


    /* Header & Navigation */
    header {
      backdrop-filter: blur(10px);
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }

    nav {
      max-width: 1200px;
      margin: 0 auto;
      padding: 1rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      font-size: 1.5rem;
      font-weight: 700;
      color: #FF6F7D;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .nav-links {
      display: flex;
      gap: 2rem;
      align-items: center;
      list-style: none;
    }

    .nav-links a {
      color: #2A2A2A;
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s;
      cursor: pointer;
    }

    .nav-links a:hover {
      color: #FF6F7D;
    }

    .btn {
      padding: 0.75rem 1.5rem;
      border: none;
      border-radius: 50px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s;
      text-decoration: none;
      display: inline-block;
    }

    .btn-primary {
  background: linear-gradient(135deg, #FF6F7D, #FF8FA0);
        color: white;
    }

    .btn-primary:hover {
      background: #ff5566;
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(255, 111, 125, 0.3);
    }

    .btn-secondary {
      background: transparent;
      color: #FF6F7D;
      border: 2px solid #FF6F7D;
    }

    .btn-secondary:hover {
      background: #FFE7E9;
    }

    .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      font-size: 1.5rem;
      cursor: pointer;
      color: #2A2A2A;
    }

    /* Hero Section */
    .hero {
    max-width: none !important;    
    margin: 0 auto;
      padding: 5rem 2rem;
      text-align: center;
      position: relative;
    }

    .hero h1 {
      font-size: 3.5rem;
      font-weight: 800;
      color: #2A2A2A;
      margin-bottom: 1rem;
      animation: fadeInUp 1s ease-out;
    }

    .hero p {
      font-size: 1.25rem;
      color: #666;
      margin-bottom: 2rem;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
      animation: fadeInUp 1s ease-out 0.2s backwards;
    }

    .hero-buttons {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
      animation: fadeInUp 1s ease-out 0.4s backwards;
      margin-bottom: 2rem;
    }

    

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Features Section */
    .features {
      max-width: 1200px;
      margin: 4rem auto;
      padding: 2rem;
    }

    .section-title {
      text-align: center;
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 3rem;
      color: #2A2A2A;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
    }

    .feature-card {
      background: white;
      padding: 2rem;
      border-radius: 20px;
      border: 2px solid #E6E6E6;
      text-align: center;
      transition: all 0.3s;
      cursor: pointer;
    }

    .feature-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 30px rgba(255, 111, 125, 0.15);
      border-color: #FF6F7D;
    }

    .feature-icon {
      font-size: 3rem;
      margin-bottom: 1rem;
    }

    .feature-card h3 {
      font-size: 1.25rem;
      margin-bottom: 0.5rem;
      color: #2A2A2A;
    }

    .feature-card p {
      color: #666;
      font-size: 0.95rem;
    }

    /* Marquee Strip */
    .marquee {
      background: linear-gradient(135deg, #FFE7E9 0%, #FF6F7D 100%);
      padding: 1.5rem 0;
      overflow: hidden;
      margin: 4rem 0;
    }

    .marquee-content {
      display: flex;
      animation: scroll 30s linear infinite;
      white-space: nowrap;
    }

    .marquee-item {
      padding: 0 3rem;
      font-size: 1.5rem;
      font-weight: 600;
      color: white;
      display: inline-block;
    }

    @keyframes scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* Deals Grid */
    .deals {
      max-width: 1200px;
      margin: 4rem auto;
      padding: 2rem;
    }

    .deals-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 2rem;
    }

    .deal-card {
      background: white;
      border: 2px solid #E6E6E6;
      border-radius: 20px;
      overflow: hidden;
      transition: all 0.3s;
      cursor: pointer;
    }

    .deal-card:hover {
      transform: scale(1.05);
      box-shadow: 0 10px 30px rgba(255, 111, 125, 0.2);
      border-color: #FF6F7D;
    }

    .deal-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .deal-header {
      background: linear-gradient(135deg, #FFE7E9 0%, #ffffff 100%);
      padding: 2rem;
      text-align: center;
    }

    .deal-discount {
      font-size: 3rem;
      font-weight: 800;
      color: #FF6F7D;
      line-height: 1;
    }

    .deal-store {
      font-size: 1.25rem;
      font-weight: 600;
      color: #2A2A2A;
      margin-top: 0.5rem;
    }

    .deal-body {
      padding: 1.5rem;
    }

    .deal-description {
      color: #666;
      margin-bottom: 1rem;
      min-height: 3rem;
    }

    .deal-code {
      background: #FFE7E9;
      padding: 0.75rem;
      border-radius: 10px;
      font-family: monospace;
      font-weight: 600;
      color: #FF6F7D;
      margin-bottom: 1rem;
      border: 2px dashed #FF6F7D;
      text-align: center;
    }

    .deal-expiry {
      font-size: 0.85rem;
      color: #999;
      margin-bottom: 1rem;
      text-align: center;
    }

    .copy-btn {
      width: 100%;
      padding: 0.75rem;
      background: #FF6F7D;
      color: white;
      border: none;
      border-radius: 10px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s;
    }

    .copy-btn:hover {
      background: #ff5566;
    }

    .copy-btn.copied {
      background: #4CAF50;
    }

    /* Testimonials */
    .testimonials {
      max-width: 1200px;
      margin: 4rem auto;
      padding: 2rem;
      background: linear-gradient(135deg, #FFE7E9 0%, #ffffff 100%);
      border-radius: 30px;
    }

    .testimonial-slider {
      display: flex;
      overflow-x: auto;
      gap: 2rem;
      scroll-snap-type: x mandatory;
      padding: 2rem 0;
      scrollbar-width: none;
    }

    .testimonial-slider::-webkit-scrollbar {
      display: none;
    }

    .testimonial-card {
      min-width: 300px;
      background: white;
      padding: 2rem;
      border-radius: 20px;
      scroll-snap-align: start;
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

    .testimonial-header {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1rem;
    }

    .testimonial-avatar {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: linear-gradient(135deg, #FF6F7D, #FFE7E9);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      color: white;
    }

    .testimonial-name {
      font-weight: 600;
    }

    .testimonial-stars {
      color: #FFD700;
      margin-bottom: 0.5rem;
    }

    .testimonial-text {
      color: #666;
      font-style: italic;
    }

    /* Blog Section */
    .blog {
      max-width: 1200px;
      margin: 4rem auto;
      padding: 2rem;
    }

    .blog-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
    }

    .blog-card {
      background: white;
      border: 2px solid #E6E6E6;
      border-radius: 20px;
      overflow: hidden;
      transition: all 0.3s;
      cursor: pointer;
    }

    .blog-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .blog-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .blog-image-placeholder {
      width: 100%;
      height: 200px;
      background: linear-gradient(135deg, #FFE7E9 0%, #FF6F7D 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 3rem;
    }

    .blog-content {
      padding: 1.5rem;
    }

    .blog-title {
      font-size: 1.25rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
      color: #2A2A2A;
    }

    .blog-excerpt {
      color: #666;
      font-size: 0.95rem;
    }

    /* Subscribe Section */
    .subscribe {
      max-width: 800px;
      margin: 4rem auto;
      padding: 3rem 2rem;
      background: linear-gradient(135deg, #FF6F7D 0%, #FFE7E9 100%);
      border-radius: 30px;
      text-align: center;
    }

    .subscribe h2 {
      font-size: 2rem;
      color: white;
      margin-bottom: 1rem;
    }

    .subscribe p {
      color: white;
      margin-bottom: 2rem;
      font-size: 1.1rem;
    }

    .subscribe-form {
      display: flex;
      gap: 1rem;
      max-width: 500px;
      margin: 0 auto;
      flex-wrap: wrap;
      justify-content: center;
    }

    .subscribe-form input {
      flex: 1;
      min-width: 250px;
      padding: 1rem 1.5rem;
      border: none;
      border-radius: 50px;
      font-size: 1rem;
    }

    .subscribe-form button {
      padding: 1rem 2rem;
      background: white;
      color: #FF6F7D;
      border: none;
      border-radius: 50px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s;
    }

    .subscribe-form button:hover {
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

    /* Footer */
    footer {
      background: #2A2A2A;
      color: white;
      padding: 3rem 2rem 1rem;
      margin-top: 4rem;
    }

    .footer-content {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 2rem;
      margin-bottom: 2rem;
    }

    .footer-section h3 {
      color: #FF6F7D;
      margin-bottom: 1rem;
      font-size: 1.25rem;
    }

    .footer-section ul {
      list-style: none;
    }

    .footer-section ul li {
      margin-bottom: 0.5rem;
    }

    .footer-section a {
      color: #ccc;
      text-decoration: none;
      transition: color 0.3s;
      cursor: pointer;
    }

    .footer-section a:hover {
      color: #FF6F7D;
    }

    .social-icons {
      display: flex;
      gap: 1rem;
      margin-top: 1rem;
    }

    .social-icon {
      width: 40px;
      height: 40px;
      background: #444;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s;
      cursor: pointer;
    }

    .social-icon:hover {
      background: #FF6F7D;
      transform: translateY(-3px);
    }

    .footer-bottom {
      max-width: 1200px;
      margin: 2rem auto 0;
      padding-top: 2rem;
      border-top: 1px solid #444;
      text-align: center;
      color: #999;
    }

    /* Auth Pages */
    .auth-container {
      min-height: calc(100% - 80px);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 2rem;
    }

    .auth-box {
      background: white;
      padding: 3rem;
      border-radius: 30px;
      box-shadow: 0 10px 50px rgba(0,0,0,0.1);
      border: 2px solid #E6E6E6;
      max-width: 450px;
      width: 100%;
    }

    .auth-box h2 {
      font-size: 2rem;
      text-align: center;
      margin-bottom: 0.5rem;
      color: #2A2A2A;
    }

    .auth-box p {
      text-align: center;
      color: #666;
      margin-bottom: 2rem;
    }

    .form-group {
      margin-bottom: 1.5rem;
    }

    .form-group label {
      display: block;
      margin-bottom: 0.5rem;
      font-weight: 600;
      color: #2A2A2A;
    }

    .form-group input {
      width: 100%;
      padding: 1rem;
      border: 2px solid #E6E6E6;
      border-radius: 10px;
      font-size: 1rem;
      transition: all 0.3s;
    }

    .form-group input:focus {
      outline: none;
      border-color: #FF6F7D;
      box-shadow: 0 0 0 3px rgba(255, 111, 125, 0.1);
    }

    .auth-btn {
      width: 100%;
      padding: 1rem;
      background: #FF6F7D;
      color: white;
      border: none;
      border-radius: 10px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s;
      margin-top: 1rem;
    }

    .auth-btn:hover {
      background: #ff5566;
      transform: translateY(-2px);
    }

    .auth-btn:disabled {
      opacity: 0.6;
      cursor: not-allowed;
    }

    .auth-link {
      text-align: center;
      margin-top: 1.5rem;
      color: #666;
    }

    .auth-link a {
      color: #FF6F7D;
      text-decoration: none;
      font-weight: 600;
    }

    .auth-link a:hover {
      text-decoration: underline;
    }

    .error-message {
      background: #ffebee;
      color: #c62828;
      padding: 1rem;
      border-radius: 10px;
      margin-bottom: 1rem;
      border-left: 4px solid #c62828;
    }

    .success-message {
      background: #e8f5e9;
      color: #2e7d32;
      padding: 1rem;
      border-radius: 10px;
      margin-bottom: 1rem;
      border-left: 4px solid #2e7d32;
    }

    /* User Menu */
    .user-menu {
      position: relative;
    }

    .user-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: linear-gradient(135deg, #FF6F7D, #FFE7E9);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      color: white;
      cursor: pointer;
      transition: all 0.3s;
    }

    .user-avatar:hover {
      transform: scale(1.1);
    }

    .user-dropdown {
      position: absolute;
      top: 60px;
      right: 0;
      background: white;
      border: 2px solid #E6E6E6;
      border-radius: 15px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
      min-width: 200px;
      display: none;
    }

    .user-dropdown.show {
      display: block;
    }

    .user-dropdown a {
      display: block;
      padding: 1rem 1.5rem;
      color: #2A2A2A;
      text-decoration: none;
      transition: all 0.3s;
      cursor: pointer;
    }

    .user-dropdown a:hover {
      background: #FFE7E9;
      color: #FF6F7D;
    }

    .user-dropdown a:first-child {
      border-radius: 13px 13px 0 0;
    }

    .user-dropdown a:last-child {
      border-radius: 0 0 13px 13px;
    }

    /* Page Styles */
    .page {
      display: none;
    }

    .page.active {
      display: block;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .hero h1 {
        font-size: 2.5rem;
      }

      .hero p {
        font-size: 1rem;
      }

      .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        border-bottom: 1px solid #E6E6E6;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
      }

      .nav-links.show {
        display: flex;
      }

      .mobile-menu-btn {
        display: block;
      }

      .features-grid {
        grid-template-columns: 1fr;
      }

      .deals-grid {
        grid-template-columns: 1fr;
      }

      .blog-grid {
        grid-template-columns: 1fr;
      }

      .footer-content {
        grid-template-columns: 1fr;
      }
    }

    /* Loading State */
    .loading {
      display: inline-block;
      width: 20px;
      height: 20px;
      border: 3px solid rgba(255,255,255,.3);
      border-radius: 50%;
      border-top-color: white;
      animation: spin 1s ease-in-out infinite;
    }

    @keyframes spin {
      to { transform: rotate(360deg); }
    }

    /* Modal Popup */
    .modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.7);
      z-index: 10000;
      align-items: center;
      justify-content: center;
      padding: 2rem;
    }

    .modal.show {
      display: flex;
    }

    .modal-content {
      background: white;
      padding: 3rem;
      border-radius: 30px;
      max-width: 600px;
      width: 100%;
      max-height: 80%;
      overflow-y: auto;
      position: relative;
      animation: modalSlideIn 0.3s ease-out;
    }

    @keyframes modalSlideIn {
      from {
        opacity: 0;
        transform: translateY(-50px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .modal-close {
      position: absolute;
      top: 1.5rem;
      right: 1.5rem;
      background: #FFE7E9;
      border: none;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      font-size: 1.5rem;
      cursor: pointer;
      transition: all 0.3s;
      color: #FF6F7D;
      font-weight: 700;
    }

    .modal-close:hover {
      background: #FF6F7D;
      color: white;
      transform: rotate(90deg);
    }

    .modal-content h2 {
      color: #FF6F7D;
      margin-bottom: 1rem;
      font-size: 2rem;
    }

    .modal-content h3 {
      color: #2A2A2A;
      margin-top: 1.5rem;
      margin-bottom: 0.5rem;
    }

    .modal-content p {
      color: #666;
      line-height: 1.8;
      margin-bottom: 1rem;
    }

    .modal-content ul {
      margin-left: 1.5rem;
      margin-bottom: 1rem;
    }

    .modal-content li {
      color: #666;
      margin-bottom: 0.5rem;
      line-height: 1.6;
    }
    

/* ------------ HERO SECTION ------------ */
/* ------------ HERO SECTION ------------ */
.hero {
  position: relative;
  width: 100vw;
  height: 200vh;
  margin: 0;
  padding: 80px 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* Full width sliding background */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
animation: slideBg 18s ease-in-out infinite;
  z-index: -2;
  filter: brightness(0.45);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.5));
  z-index: 0;
}
@keyframes slideBg {
  0%   { background-image: url('https://i.pinimg.com/1200x/03/3f/8e/033f8e02cc583a59296091e94bf84f07.jpg'); }
  3%  { background-image: url('https://i.pinimg.com/736x/0d/ed/78/0ded78cbbbcbde1d74e3cd494eb3a53e.jpg'); }
  66%  { background-image: url('https://i.pinimg.com/736x/7d/fd/88/7dfd883e1d5070660cd001cfe6602383.jpg'); }
  100% { background-image: url('https://i.pinimg.com/736x/92/18/aa/9218aa234745efa242b323f5038cd5bc.jpg'); }
}

/* Typewriter */
.typewriter {
    
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;

  animation: typing 4s steps(40, end) infinite alternate;
}

@keyframes typing {
  from { width: 0; }
  to   { width: 100%; }
}
.typewriter::after {
  content: '|';
  display: inline-block;
  margin-left: 2px;
  animation: blink 1s infinite;
}
@keyframes blink {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0; }
}


/* Buttons */
.hero-buttons button {
  padding: 16px 32px;
  margin: 10px;
  font-size: 18px;
  border-radius: 6px;
  cursor: pointer;
  border: none;
}

/* Marquee */
.marquee-container {
  position: absolute;
  bottom: 0;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}
.marquee {
  display: inline-block;
  padding: 10px 0;
  font-size: 22px;
  opacity: 0.4;
  animation: scrollMarquee 15s linear infinite;
}
.marquee:hover {
  animation-play-state: paused;
}

@keyframes scrollMarquee {
  0% { transform: translateX(100%); }
 100% { transform: translateX(-100%); }
}
