
      * {
        font-family: "Inter", sans-serif;
      }

      body {
        background: linear-gradient(
          145deg,
          #0a0a2a 0%,
          #1a1a4e 50%,
          #0d0d2b 100%
        );
        min-height: 100vh;
        position: relative;
        padding-top: 80px;
      }

      /* Animated Background */
      .bg-animation {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        z-index: 0;
      }

      .bg-animation .orb {
        position: absolute;
        border-radius: 50%;
        filter: blur(80px);
        animation: float 25s infinite ease-in-out;
      }

      @keyframes float {
        0%,
        100% {
          transform: translate(0, 0) scale(1);
        }
        33% {
          transform: translate(30px, -50px) scale(1.1);
        }
        66% {
          transform: translate(-20px, 30px) scale(0.9);
        }
      }

      .glass-card-premium {
        background: rgba(15, 15, 35, 0.6);
        backdrop-filter: blur(20px);
        border-radius: 48px;
        border: 1px solid rgba(139, 92, 246, 0.3);
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
      }

      .upload-zone-premium {
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        border: 2px dashed rgba(139, 92, 246, 0.5);
        background: linear-gradient(
          135deg,
          rgba(139, 92, 246, 0.05),
          rgba(59, 130, 246, 0.05)
        );
      }

      .upload-zone-premium:hover {
        border-color: #8b5cf6;
        background: linear-gradient(
          135deg,
          rgba(139, 92, 246, 0.12),
          rgba(59, 130, 246, 0.12)
        );
        transform: translateY(-5px);
      }

      .upload-zone-premium.dragover {
        border-color: #ec4899;
        background: linear-gradient(
          135deg,
          rgba(236, 72, 153, 0.12),
          rgba(139, 92, 246, 0.12)
        );
        transform: scale(1.02);
      }

      .gradient-text-premium {
        background: linear-gradient(
          135deg,
          #a855f7 0%,
          #ec4899 50%,
          #06b6d4 100%
        );
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
      }

      .btn-remove {
        background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
        transition: all 0.3s ease;
        box-shadow: 0 10px 25px -5px rgba(139, 92, 246, 0.4);
      }

      .btn-remove:hover:not(:disabled) {
        transform: translateY(-3px);
        box-shadow: 0 20px 35px -8px rgba(139, 92, 246, 0.6);
      }

      .btn-remove:disabled {
        opacity: 0.5;
        cursor: not-allowed;
      }

      .loading-spinner-premium {
        width: 70px;
        height: 70px;
        border: 3px solid rgba(139, 92, 246, 0.2);
        border-top-color: #8b5cf6;
        border-right-color: #ec4899;
        border-radius: 50%;
        animation: spin 0.8s ease-in-out infinite;
      }

      @keyframes spin {
        to {
          transform: rotate(360deg);
        }
      }

      .progress-bar-premium {
        width: 100%;
        height: 6px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        overflow: hidden;
      }

      .progress-fill-premium {
        height: 100%;
        background: linear-gradient(90deg, #8b5cf6, #ec4899, #06b6d4);
        transition: width 0.3s ease;
        border-radius: 10px;
        box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
      }

      /* Color Options - In Perfect Sequence */
      .color-options-wrapper {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
        margin-bottom: 30px;
      }

      .color-btn {
        transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        cursor: pointer;
        position: relative;
        overflow: hidden;
      }

      .color-btn.active {
        transform: scale(1.08);
        box-shadow: 0 0 0 2px white, 0 0 0 5px #8b5cf6;
      }

      .color-btn::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
      }

      .color-btn:active::before {
        width: 200%;
        height: 200%;
      }

      .result-card {
        animation: fadeInScale 0.4s ease;
      }

      @keyframes fadeInScale {
        from {
          opacity: 0;
          transform: scale(0.95);
        }
        to {
          opacity: 1;
          transform: scale(1);
        }
      }

      .btn-download-premium {
        background: linear-gradient(135deg, #10b981, #059669);
        transition: all 0.3s ease;
      }

      .btn-download-premium:hover {
        transform: translateY(-2px);
        box-shadow: 0 15px 30px -10px rgba(16, 185, 129, 0.5);
      }

      .btn-new-image {
        background: linear-gradient(135deg, #f59e0b, #d97706);
        transition: all 0.3s ease;
      }

      .btn-new-image:hover {
        transform: translateY(-2px);
        box-shadow: 0 15px 30px -10px rgba(245, 158, 11, 0.5);
      }

      .toast-message {
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 10000;
        animation: slideRight 0.3s ease;
      }

      @keyframes slideRight {
        from {
          transform: translateX(100%);
          opacity: 0;
        }
        to {
          transform: translateX(0);
          opacity: 1;
        }
      }

      @media (max-width: 640px) {
        .glass-card-premium {
          padding: 20px !important;
        }
        .color-btn {
          padding: 8px 14px !important;
          font-size: 12px !important;
        }
        body {
          padding-top: 70px;
        }
      }

      /* Custom Scrollbar */
      ::-webkit-scrollbar {
        width: 8px;
      }
      ::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.05);
      }
      ::-webkit-scrollbar-thumb {
        background: linear-gradient(135deg, #8b5cf6, #ec4899);
        border-radius: 10px;
      }

      .relative.z-10 {
        position: relative;
        z-index: 10;
      }

      /* Full width sections */
      #contact-form-section,
      #contact-cta,
      footer {
        width: 100%;
        position: relative;
        z-index: 10;
      }
    