
    * { 
      box-sizing: border-box; 
      margin: 0;
      padding: 0;
    }
    
    :root {
      --primary-purple: #6b21a8;
      --secondary-pink: #ec4899;
      --accent-gold: #fbbf24;
      --accent-cyan: #06b6d4;
      --bg-gradient-1: #1e1b4b;
      --bg-gradient-2: #581c87;
      --bg-gradient-3: #831843;
      --card-bg: rgba(255, 255, 255, 0.95);
      --text-dark: #1f2937;
      --text-light: #6b7280;
      --shadow-glow: 0 0 40px rgba(251, 191, 36, 0.3);
      --shadow-card: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
    }
    
    .sr-only { 
      position: absolute; 
      width: 1px; 
      height: 1px; 
      padding: 0; 
      margin: -1px; 
      overflow: hidden; 
      clip: rect(0,0,0,0); 
      white-space: nowrap; 
      border: 0; 
    }
    
    body {
      font-family: 'Quicksand', 'Poppins', sans-serif;
      background: linear-gradient(135deg, var(--bg-gradient-1) 0%, var(--bg-gradient-2) 50%, var(--bg-gradient-3) 100%);
      background-attachment: fixed;
      color: var(--text-dark);
      min-height: 100vh;
      display: flex;
      justify-content: center;
      align-items: flex-start;
      padding: 30px 15px;
      overflow-x: hidden;
    }
    
    #particles-js { 
      position: fixed; 
      top: 0; 
      left: 0; 
      width: 100%; 
      height: 100%; 
      z-index: 0; 
      pointer-events: none; 
    }
    
    .container {
      position: relative;
      z-index: 1;
      background: var(--card-bg);
      border-radius: 32px;
      box-shadow: var(--shadow-card), var(--shadow-glow);
      max-width: 500px;
      width: 100%;
      padding: 40px 35px;
      animation: magicPop 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    @keyframes magicPop { 
      0% { transform: scale(0.3) rotate(-5deg); opacity: 0; } 
      60% { transform: scale(1.05) rotate(1deg); } 
      100% { transform: scale(1) rotate(0deg); opacity: 1; } 
    }
    
    .logo-container {
      text-align: center;
      margin-bottom: 25px;
    }
    
    .logo-container img {
      width: 140px;
      filter: drop-shadow(0 8px 20px rgba(251, 191, 36, 0.4));
      transition: transform 0.4s ease;
    }
    
    .logo-container img:hover {
      transform: scale(1.1) rotate(3deg);
    }
    
    h1 { 
      font-family: 'Poppins', sans-serif;
      font-size: 1.9rem; 
      font-weight: 800;
      background: linear-gradient(135deg, var(--primary-purple), var(--secondary-pink));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-align: center;
      margin-bottom: 10px;
      line-height: 1.3;
    }
    
    .subtitle {
      text-align: center;
      font-size: 1.05rem;
      color: var(--text-light);
      margin-bottom: 25px;
      font-weight: 500;
    }
    
    select, input, textarea {
      width: 100%; 
      padding: 16px 20px; 
      margin: 10px 0; 
      border-radius: 16px;
      border: 2px solid #e5e7eb; 
      font-size: 1rem; 
      font-family: 'Quicksand', sans-serif;
      font-weight: 500;
      background: #fafafa;
      color: var(--text-dark);
      transition: all 0.3s ease;
    }
    
    select:focus, input:focus, textarea:focus {
      border-color: var(--secondary-pink);
      background: #fff;
      box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.15);
      outline: none;
      transform: translateY(-2px);
    }
    
    select {
      cursor: pointer;
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b21a8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 15px center;
      background-size: 20px;
      padding-right: 45px;
    }
    
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin-top: 15px;
      padding: 16px 32px;
      background: linear-gradient(135deg, var(--secondary-pink), var(--primary-purple));
      color: #fff;
      text-decoration: none;
      border-radius: 16px;
      font-family: 'Poppins', sans-serif;
      font-weight: 600;
      font-size: 1rem;
      position: relative;
      overflow: hidden;
      transition: all 0.4s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 8px 25px rgba(236, 72, 153, 0.4);
      width: 100%;
    }
    
    .btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
      transition: left 0.5s ease;
    }
    
    .btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 35px rgba(236, 72, 153, 0.5);
    }
    
    .btn:hover::before {
      left: 100%;
    }
    
    .btn:active {
      transform: translateY(-1px);
    }
    
    .error-message { 
      color: #ef4444; 
      font-size: 0.9rem; 
      margin-top: 8px; 
      display: none;
      text-align: center;
      font-weight: 500;
      padding: 10px;
      background: #fef2f2;
      border-radius: 10px;
    }
    
    /* Klarna Banner */
    .klarna-banner {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin: 25px 0;
      padding: 20px;
      background: linear-gradient(135deg, #fdf4ff, #fce7f3);
      border: 2px dashed var(--secondary-pink);
      border-radius: 20px;
      transition: transform 0.3s ease;
    }
    
    .klarna-banner:hover {
      transform: scale(1.02);
    }
    
    .klarna-banner img {
      width: 90px;
      margin-bottom: 12px;
    }
    
    .klarna-banner .btn {
      background: linear-gradient(135deg, #ff69b4, var(--accent-gold));
      margin-top: 10px;
    }
    
    /* WhatsApp Float */
    .whatsapp-float {
      position: fixed;
      bottom: 25px;
      right: 25px;
      background: linear-gradient(135deg, #25d366, #128c7e);
      color: #fff;
      padding: 16px 22px;
      border-radius: 50px;
      font-family: 'Poppins', sans-serif;
      font-weight: 600;
      font-size: 0.95rem;
      text-decoration: none;
      box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
      display: flex;
      align-items: center;
      gap: 10px;
      animation: levitate 2s ease-in-out infinite;
      z-index: 1000;
      transition: all 0.3s ease;
    }
    
    .whatsapp-float:hover {
      transform: scale(1.05);
      box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
    }
    
    .whatsapp-float img {
      width: 26px;
      height: 26px;
    }
    
    @keyframes levitate { 
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }
    
    /* Reviews Carousel */
    .reviews-carousel {
      margin: 25px 0;
      padding: 25px 20px;
      background: linear-gradient(135deg, #eff6ff, #e0e7ff);
      border: 2px dashed var(--accent-cyan);
      border-radius: 20px;
      position: relative;
    }
    
    .reviews-carousel h3 {
      font-family: 'Poppins', sans-serif;
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--primary-purple);
      margin-bottom: 15px;
      text-align: center;
    }
    
    .carousel-inner {
      min-height: 100px;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .review-item {
      position: absolute;
      width: 100%;
      opacity: 0;
      transition: opacity 0.6s ease-in-out;
      padding: 15px;
      text-align: center;
    }
    
    .review-item.active {
      opacity: 1;
    }
    
    .review-text {
      font-style: italic;
      font-size: 1.05rem;
      color: #4b5563;
      margin: 0 0 12px 0;
      line-height: 1.6;
    }
    
    .review-author {
      font-weight: 700;
      color: var(--secondary-pink);
      margin: 0;
    }
    
    .reviews-link {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
      margin-top: 15px;
    }
    
    .reviews-link a {
      display: inline-block;
      background: linear-gradient(135deg, var(--primary-purple), var(--accent-cyan));
      color: #fff;
      padding: 10px 18px;
      border-radius: 12px;
      text-decoration: none;
      font-weight: 600;
      font-size: 0.9rem;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(107, 33, 168, 0.3);
    }
    
    .reviews-link a:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(107, 33, 168, 0.4);
    }
    
    /* Modal */
    .modal {
      display: none;
      position: fixed;
      z-index: 1001;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: auto;
      background-color: rgba(0, 0, 0, 0.7);
      backdrop-filter: blur(8px);
      padding: 20px;
    }
    
    .modal-content {
      position: relative;
      background: #fff;
      margin: 5% auto;
      padding: 35px;
      border-radius: 28px;
      box-shadow: var(--shadow-card), 0 0 60px rgba(251, 191, 36, 0.3);
      max-width: 480px;
      width: 100%;
      animation: modalSlideIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    
    @keyframes modalSlideIn {
      0% { transform: translateY(-50px) scale(0.9); opacity: 0; }
      100% { transform: translateY(0) scale(1); opacity: 1; }
    }
    
    .close-button {
      position: absolute;
      top: 15px;
      right: 20px;
      color: #9ca3af;
      font-size: 32px;
      font-weight: bold;
      line-height: 1;
      cursor: pointer;
      transition: all 0.3s ease;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
    }
    
    .close-button:hover {
      color: var(--secondary-pink);
      background: #fce7f3;
      transform: rotate(90deg);
    }
    
    .copy-btn {
      background: linear-gradient(135deg, var(--primary-purple), var(--secondary-pink));
      color: white;
      border: none;
      padding: 12px 24px;
      border-radius: 12px;
      cursor: pointer;
      font-family: 'Poppins', sans-serif;
      font-size: 0.95rem;
      font-weight: 600;
      margin-top: 15px;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(107, 33, 168, 0.3);
    }
    
    .copy-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(107, 33, 168, 0.4);
    }
    
    .modal-content ul {
      list-style: none;
      padding-left: 0;
    }
    
    .modal-content li {
      margin-bottom: 10px;
      padding: 8px 0;
      border-bottom: 1px solid #f3f4f6;
    }
    
    .modal-content li:last-child {
      border-bottom: none;
    }
    
    /* P2P Button Style */
    .p2p-section {
      background: linear-gradient(135deg, #fef3c7, #fde68a);
      padding: 20px;
      border-radius: 16px;
      margin-bottom: 20px;
      border: 2px solid var(--accent-gold);
      box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
    }
    
    .p2p-section h4 {
      margin: 0 0 12px 0;
      color: var(--primary-purple);
      font-family: 'Poppins', sans-serif;
      font-size: 1.1rem;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    
    .p2p-number {
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--primary-purple);
      letter-spacing: 1px;
    }
    
    .p2p-btn {
      background: linear-gradient(135deg, var(--accent-gold), #f59e0b);
      color: var(--primary-purple);
      border: none;
      padding: 12px 24px;
      border-radius: 12px;
      cursor: pointer;
      font-family: 'Poppins', sans-serif;
      font-size: 0.95rem;
      font-weight: 700;
      margin-top: 10px;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
    }
    
    .p2p-btn:hover {
      transform: translateY(-2px) scale(1.02);
      box-shadow: 0 6px 20px rgba(251, 191, 36, 0.5);
    }
    
    /* Magic Idea Generator */
    .magic-idea-generator {
      margin: 25px 0;
      padding: 25px 20px;
      background: linear-gradient(135deg, #f5f3ff, #ede9fe);
      border: 2px dashed var(--primary-purple);
      border-radius: 20px;
    }
    
    .magic-idea-generator h3 {
      font-family: 'Poppins', sans-serif;
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--primary-purple);
      margin-bottom: 10px;
      text-align: center;
    }
    
    .magic-idea-generator p {
      text-align: center;
      color: var(--text-light);
      margin-bottom: 15px;
      font-size: 0.95rem;
    }
    
    .magic-idea-generator textarea {
      resize: vertical;
      min-height: 80px;
    }
    
    .idea-result {
      margin-top: 20px;
      padding: 20px;
      background: #fff;
      border: 2px solid var(--accent-cyan);
      border-radius: 16px;
      min-height: 60px;
      text-align: left;
      font-style: italic;
      color: #4b5563;
      position: relative;
      box-shadow: 0 4px 15px rgba(6, 182, 212, 0.15);
    }
    
    .idea-result .copy-btn-small {
      position: absolute;
      top: 12px;
      right: 12px;
      padding: 8px 14px;
      font-size: 0.8rem;
      background: linear-gradient(135deg, var(--accent-cyan), #0891b2);
      color: white;
      border: none;
      border-radius: 10px;
      cursor: pointer;
      font-weight: 600;
      transition: all 0.3s ease;
    }
    
    .idea-result .copy-btn-small:hover {
      transform: scale(1.05);
      box-shadow: 0 4px 15px rgba(6, 182, 212, 0.4);
    }
    
    .loading-indicator {
      text-align: center;
      font-weight: 700;
      color: var(--secondary-pink);
      animation: pulse 1s ease-in-out infinite;
    }
    
    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.5; }
    }
    
    /* Location Search Section */
    .location-search-section {
      margin: 25px 0;
      padding: 25px 20px;
      background: linear-gradient(135deg, #ecfdf5, #d1fae5);
      border: 2px dashed #10b981;
      border-radius: 20px;
      text-align: center;
    }
    
    .location-search-section h3 {
      font-family: 'Poppins', sans-serif;
      font-size: 1.15rem;
      font-weight: 700;
      color: #047857;
      margin-bottom: 10px;
    }
    
    .location-search-section p {
      color: var(--text-light);
      margin-bottom: 15px;
      font-size: 0.95rem;
    }
    
    .location-search-section .btn {
      background: linear-gradient(135deg, #10b981, #059669);
      box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    }
    
    .location-search-section .btn:hover {
      box-shadow: 0 12px 35px rgba(16, 185, 129, 0.5);
    }
    
    /* Terms Link */
    .terms-link {
      font-size: 0.8rem;
      color: var(--text-light);
      text-align: center;
      margin-top: 20px;
    }
    
    .terms-link a {
      color: var(--primary-purple);
      text-decoration: none;
      font-weight: 600;
      transition: color 0.3s ease;
    }
    
    .terms-link a:hover {
      color: var(--secondary-pink);
    }
    
    /* Responsive Design */
    @media (max-width: 480px) {
      body {
        padding: 15px 10px;
      }
      
      .container {
        padding: 30px 20px;
        border-radius: 24px;
      }
      
      h1 {
        font-size: 1.5rem;
      }
      
      .subtitle {
        font-size: 0.95rem;
      }
      
      select, input, textarea {
        padding: 14px 16px;
        font-size: 0.95rem;
      }
      
      .btn {
        padding: 14px 24px;
        font-size: 0.95rem;
      }
      
      .whatsapp-float {
        padding: 12px 16px;
        font-size: 0.85rem;
        bottom: 15px;
        right: 15px;
      }
      
      .whatsapp-float img {
        width: 22px;
        height: 22px;
      }
      
      .modal-content {
        padding: 25px 20px;
        margin: 10% auto;
      }
      
      .reviews-link {
        flex-direction: column;
      }
      
      .reviews-link a {
        width: 100%;
        text-align: center;
      }
    }
    
    /* Noscript */
    noscript div {
      color: #ef4444;
      text-align: center;
      margin: 20px;
      font-size: 1.1rem;
      background: #fff;
      padding: 20px;
      border-radius: 16px;
      box-shadow: var(--shadow-card);
    }
  