
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }



        body {
            font-family: "Suisse Intl Bold", serif;
            background: #000000;
            height: 100vh;
            
        }

        .container {
            display: flex;
            height: 100vh;
        }

        .container.full-width .left-side {
            flex: 1;
            width: 100%;
        }

        .container.full-width .right-side {
            display: none;
        }

        .left-side {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 2rem;
            position: relative;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }
        
       

        .logo {
            position: absolute;
            top: 2rem;
            left: 2rem;
            width: 120px;
            height: auto;
            z-index: 10;
        }

        .right-side {
            flex: 1;
            position: relative;
            transition: all 0.3s ease;
            padding: 4px 30px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .right-side img {
         width: 100%;
        height: 100%;
        object-fit: cover; /* Ensure image fits nicely */
            border-radius: 20px;
        }

        .form-container {
            width: 100%;
            max-width: 500px;
            color: white;
        }

        .step {
            display: none;
            animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
        }

        .step.active {
            display: block;
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(80px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .step.slide-out {
            animation: slideOutUp 0.4s cubic-bezier(0.55, 0.06, 0.68, 0.19) forwards;
        }

        .step.slide-out .navigation-container {
            opacity: 0;
            transition: opacity 0.2s ease;
        }

        @keyframes slideOutUp {
            from {
                opacity: 1;
                transform: translateY(0);
            }

            to {
                opacity: 0;
                transform: translateY(-50px);
            }
        }

        .step-title {
            font-size: 2.0rem;
            font-weight: 700;
            margin-bottom: 0.2rem;
            line-height: 1.2;
        }

        .step-number {
            white-space: nowrap;
        }

        .nowrap {
            white-space: nowrap;
        }

        #step-4 .radio-option {
            width: 360px;
        }

        .custom-alert {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(255, 255, 255, 0.95);
            color: #000000;
            padding: 2rem 3rem;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);
            z-index: 1000;
            text-align: center;
            font-family: 'Red Hat Display', sans-serif;
            font-weight: 600;
            font-size: 1.1rem;
            display: none;
            animation: alertSlideIn 0.3s ease-out;
        }

        .custom-alert.show {
            display: block;
        }

        .custom-alert-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
            display: none;
        }

        .custom-alert-overlay.show {
            display: block;
        }

        .alert-close-btn {
            background: #000000;
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            margin-top: 1rem;
            font-family: 'Red Hat Display', sans-serif;
            transition: all 0.3s ease;
        }

        .alert-close-btn:hover {
            background: #9a0d66;
            transform: translateY(-2px);
        }

        /* Navigation Buttons */
        .navigation-container {
            position: absolute;
            bottom: -39px;
            left: 30%;
            transform: translateX(-50%);
            display: flex;
            align-items: center;
            gap: 1rem;
            transition: none;
            z-index: 10;
        }

        /* Special positioning for step 3 */
        #step-3 .navigation-container {

            left: 32% !important;
            bottom: -75px !important;
        }

        /* Special positioning for step 4 */
        #step-4 .navigation-container {
            left: 25%;
            bottom: -75px !important;
        }

        .nav-button {
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 10px;
            padding: 0.5rem 1rem;
            color: white;
            font-family: 'Red Hat Display', sans-serif;
            font-weight: 800;
            font-size: 19px !important;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1rem;
            will-change: transform, background-color;
        }


        .nav-button.primary {
            background: white;
            color: #000000;
            margin-right: 72px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }


        .nav-button:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none !important;
        }

        .nav-button:disabled:hover {
            transform: none !important;
        }

        .nav-arrow {
            font-size: 1.2rem;
            font-weight: bold;
        }

        .press-enter-text {
            font-size: 0.9rem;
            color: white;
            font-weight: 400;
        }

        /* Powered by DelivYou */
       .powered-by {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex
;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #b41078;
    font-weight: 500;
    background: white;
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 0.5rem 1rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background: black !important;
    border: black !important;
}

        /* Hide powered by on welcome step */
        #step-welcome.active~.step-indicator~.bottom-navigation~.powered-by {
            display: none;
        }

        body:has(#step-welcome.active) .powered-by {
            display: none;
        }

        /* Hide bottom navigation on welcome step */
        body:has(#step-welcome.active) .bottom-navigation {
            display: none;
        }

        .powered-by .logo-mini {
            width: 20px;
            height: 20px;
            background: #b41078;
            color: white;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 0.7rem;
        }

        /* Navigation arrows container */
        .bottom-navigation {
            position: absolute;
            bottom: 20px;
            right: 230px;
            display: flex;
            gap: 0.5rem;
        }

        .nav-arrow-btn {
            width: 39px;
            height: 39px;
            background: white;
            border: 2px solid rgba(255, 255, 255, 0.9);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            color: #b41078;
            font-size: 1.2rem;
            font-weight: bold;
        }

        .nav-arrow-btn svg {
            width: 24px;
            height: 24px;
            stroke: black;
            transition: all 0.3s ease;
        }

        .nav-arrow-btn:hover {
            background: #f0f0f0;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        }

        .nav-arrow-btn:hover svg {
            stroke: #9a0d66;
        }

        .nav-arrow-btn:disabled {
            opacity: 0.4;
            cursor: not-allowed;
            transform: none !important;
        }

        .nav-arrow-btn:disabled:hover {
            background: white;
            transform: none !important;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .nav-arrow-btn:disabled svg {
            stroke: #b41078;
        }

        @keyframes alertSlideIn {
            from {
                opacity: 0;
                transform: translate(-50%, -60%);
            }

            to {
                opacity: 1;
                transform: translate(-50%, -50%);
            }
        }

        .step-subtitle {
            font-size: 14px;
            font-weight: 400;
            margin-bottom: 3rem;
            line-height: 1.4;
            color: white;
        }

        .mb-3 {
            margin-bottom: 3rem;
        }

        .input-group {
            margin-bottom: 2rem;
        }

        .input-label {
            font-size: 1.1rem;
            font-weight: 500;
            margin-bottom: 0.5rem;
            display: block;

            color: white !important;
        }

        .form-input {
            width: 100%;
            background: #000000;
            border: none;
            border-bottom: 2px solid rgba(255, 255, 255, 0.3);
            color: white;
            font-size: 1.3rem;
            font-weight: 500;
            padding: 1rem 0;
            font-family: 'Red Hat Display', sans-serif;
            transition: all 0.3s ease;
        }


       @media screen and (max-width: 768px) {
    .step.active {
        display: block;
        position: relative;
        top: 80px;
    }

    .bottom-navigation {
        position: absolute;
       bottom: -220px;
        right: 230px;
        display: flex;
        gap: 0.5rem;
        display: none;
    }
    .step-indicator {
    display: flex
;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    display: none !important;
}
}


        .form-input:focus {
            outline: none;
            border-bottom-color: white;
            transform: translateY(-2px);
        }

        .form-input::placeholder {
            color: rgba(255, 255, 255, 0.6);
            font-weight: 400;
        }

        /* Fix autocomplete styling */
        .form-input:-webkit-autofill,
        .form-input:-webkit-autofill:hover,
        .form-input:-webkit-autofill:focus,
        .form-input:-webkit-autofill:active {
            -webkit-box-shadow: 0 0 0 30px transparent inset !important;
            -webkit-text-fill-color: white !important;
            background-color: transparent !important;
            background-clip: text !important;
            transition: background-color 5000s ease-in-out 0s;
        }

        .input-row {
            display: flex;
            gap: 1rem;
        }

        .input-row .input-group {
            flex: 1;
        }

        .radio-group {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .radio-option {
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid white;
            border-radius: 50px;
            padding: 0.6rem 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .radio-option:hover {
            background: white;
            color: #b41078;
            transform: translateY(-2px);

        }

        .radio-option.selected {
            background: white;
            color: #b41078;
            transform: translateY(-2px);

        }

        .radio-option input[type="radio"] {
            display: none;
        }

        .radio-option label {
            font-size: 0.8rem;
            font-weight: 500;
            cursor: pointer;
            display: block;
            width: 100%;
        }

        .btn-primary {

            border: 2px solid white;
            color: rgb(0, 0, 0);
            font-size: 1.2rem;
            font-weight: 600;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            cursor: pointer;
            font-family: 'Red Hat Display', sans-serif;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            margin-top: 0rem;
        }

        .btn-primary:hover {
            background: white;
            color: #000000;
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

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

        .time-indicator {
            display: flex;
            align-items: center;
            justify-content: start;
            gap: 0.2rem;
            margin-top: 1rem;
            padding-left: 5px;
        }

        .time-icon {
            width: 10px;
            height: 10px;
            border: 2px solid rgba(255, 255, 255, 0.7);
            border-radius: 50%;
            position: relative;
            display: inline-block;
        }

        .time-icon::before {
            content: '';
            position: absolute;
            top: 2px;
            left: 50%;
            width: 1px;
            height: 4px;
            background: rgba(255, 255, 255, 0.7);
            transform: translateX(-50%);
        }

        .time-icon::after {
            content: '';
            position: absolute;
            top: 4px;
            left: 50%;
            width: 3px;
            height: 1px;
            background: rgba(255, 255, 255, 0.7);
            transform: translateX(-50%);
        }

        .time-text {
            font-size: 0.8rem;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.8);
        }

        .step-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 0.5rem;
        }

        .step-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
        }

        .step-dot.active {
            background: white;
            transform: scale(1.2);
        }

        .confetti {
            position: absolute;
            width: 10px;
            height: 10px;
            background: #ffeb3b;
            animation: confetti-fall 3s linear infinite;
        }

        @keyframes confetti-fall {
            0% {
                transform: translateY(-100vh) rotate(0deg);
                opacity: 1;
            }

            100% {
                transform: translateY(100vh) rotate(720deg);
                opacity: 0;
            }
        }

        .celebration-emoji {
            font-size: 3rem;
            animation: bounce 1s ease-in-out infinite alternate;
        }

        @keyframes bounce {
            0% {
                transform: translateY(0);
            }

            100% {
                transform: translateY(-10px);
            }
        }

        .thank-you-image {
            width: 450px;
            height: 280px;
            margin: 2rem auto;

            display: none;
            justify-content: center;
            align-items: center;
            border-radius: 25px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .thank-you-image:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
            border-color: rgba(255, 255, 255, 0.5);
        }

        .thank-you-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 22px;
            transition: transform 0.3s ease;
            object-position: top;
        }

        .thank-you-image:hover img {
            transform: scale(1.05);
        }
 body {
                zoom: 0.9;
            }


        @media (max-width: 768px) {

            body {
                zoom: 0.7;
            }

            .navigation-container,
            #step-3 .navigation-container {
                left: 39% !important;
            }

            #step-4 .navigation-container {
                left: 46% !important;
            }

            .nowrap {
                white-space: normal !important;
            }

            #step-4 {
                margin-left: 0 !important;
            }

            #step-4 .radio-option {
                width: auto;
            }

            .container,
            .container.full-width {
                flex-direction: column;
            }

            .left-side {
                flex: 1;
                padding: 1rem;
                width: 100%;
            }

            .right-side {
                display: none !important;
            }

            .logo {
                width: 80px;
                top: 1rem;
                left: 1rem;
            }

            .step-title {
                font-size: 2rem;
            }

            .step-subtitle {
                font-size: 1rem;
            }

            .input-row {
                flex-direction: column;
                gap: 0.5rem;
            }

            .thank-you-image {
                width: 320px;
                height: 200px;
                margin: 1.5rem auto;
            }

            .press-enter-text {
                visibility: hidden;
            }
        }

        /* Hidden form for submission */
        .hidden-form {
            display: none;
        }

