
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            height: 100vh;
            overflow: hidden;
            background: linear-gradient(-45deg, 
                #f8fafc,
                #e2e8f0,
                #f1f5f9,
                #fef7ff,
                #f0f9ff,
                #ecfdf5,
                #fffbeb
            );
            background-size: 400% 400%;
            animation: gentleShift 25s ease infinite;
            position: relative;
        }

        @keyframes gentleShift {
            0% { background-position: 0% 50%; }
            25% { background-position: 100% 50%; }
            50% { background-position: 100% 100%; }
            75% { background-position: 0% 100%; }
            100% { background-position: 0% 50%; }
        }

        /* Subtle geometric shapes */
        .shape {
            position: absolute;
            opacity: 0.1;
            animation: floatGentle 30s infinite ease-in-out;
        }

        .shape:nth-child(1) {
            width: 200px;
            height: 200px;
            background: linear-gradient(45deg, #e0e7ff, #ddd6fe);
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            top: 10%;
            left: 15%;
            animation-delay: 0s;
        }

        .shape:nth-child(2) {
            width: 150px;
            height: 150px;
            background: linear-gradient(45deg, #fce7f3, #fdf2f8);
            border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
            bottom: 20%;
            right: 20%;
            animation-delay: -10s;
        }

        .shape:nth-child(3) {
            width: 120px;
            height: 120px;
            background: linear-gradient(45deg, #ecfccb, #f7fee7);
            border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
            top: 50%;
            left: 70%;
            animation-delay: -20s;
        }

        @keyframes floatGentle {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
            }
            33% {
                transform: translateY(-10px) rotate(1deg);
            }
            66% {
                transform: translateY(5px) rotate(-1deg);
            }
        }

        /* Subtle light rays */
        .light-ray {
            position: absolute;
            width: 2px;
            height: 100px;
            background: linear-gradient(to bottom, 
                transparent, 
                rgba(255, 255, 255, 0.3), 
                transparent
            );
            animation: lightMove 20s linear infinite;
            transform-origin: top;
        }

        .light-ray:nth-child(4) {
            top: 0;
            left: 20%;
            animation-delay: 0s;
            transform: rotate(15deg);
        }

        .light-ray:nth-child(5) {
            top: 0;
            left: 60%;
            animation-delay: -5s;
            transform: rotate(-10deg);
        }

        .light-ray:nth-child(6) {
            top: 0;
            left: 80%;
            animation-delay: -10s;
            transform: rotate(20deg);
        }

        @keyframes lightMove {
            0% {
                opacity: 0;
                transform: translateY(-100px) rotate(15deg);
            }
            50% {
                opacity: 0.7;
            }
            100% {
                opacity: 0;
                transform: translateY(100vh) rotate(15deg);
            }
        }

        /* Soft dots pattern */
        .dot {
            position: absolute;
            width: 3px;
            height: 3px;
            background: rgba(148, 163, 184, 0.3);
            border-radius: 50%;
            animation: softPulse 4s ease-in-out infinite;
        }

        .dot:nth-child(7) { top: 30%; left: 25%; animation-delay: 0s; }
        .dot:nth-child(8) { top: 60%; left: 15%; animation-delay: -1s; }
        .dot:nth-child(9) { top: 20%; left: 85%; animation-delay: -2s; }
        .dot:nth-child(10) { top: 80%; left: 75%; animation-delay: -3s; }
        .dot:nth-child(11) { top: 45%; left: 45%; animation-delay: -0.5s; }

        @keyframes softPulse {
            0%, 100% {
                opacity: 0.3;
                transform: scale(1);
            }
            50% {
                opacity: 0.8;
                transform: scale(1.2);
            }
        }

        /* Content container */
        .content {
            position: relative;
            z-index: 2;
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: #334155;
            font-family: 'Arial', sans-serif;
        }

        .content h1 {
            font-size: 3em;
            margin-bottom: 20px;
            font-weight: 300;
            color: #1e293b;
        }

        .content p {
            font-size: 1.2em;
            max-width: 600px;
            line-height: 1.6;
            color: #475569;
            margin-bottom: 30px;
        }

        .cta-button {
            background: rgba(255, 255, 255, 0.95);
            border: 2px solid rgba(148, 163, 184, 0.3);
            padding: 15px 30px;
            color: #334155;
            text-decoration: none;
            border-radius: 25px;
            transition: all 0.3s ease;
            font-size: 1.1em;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), 
                        inset 0 1px 0 rgba(255, 255, 255, 0.8);
        }

        .cta-button:hover {
            background: rgba(255, 255, 255, 0.95);
            border: 2px solid rgba(148, 163, 184, 0.5);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        }

        .popup{
            border-radius: 6px;
            border: 2px solid gray;
        }
        