        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Segoe UI', Arial, sans-serif;
            text-decoration: none;
        }

        html,
        body {
            min-height: 100vh;
        }

        body {
            background: linear-gradient(-45deg, #0984e3, #00b894, #fdcb6e, #0984e3);
            background-size: 400% 400%;
            animation: bgMove 10s ease infinite;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            overflow-x: hidden;
        }

        @keyframes bgMove {
            0% {
                background-position: 0% 50%
            }

            50% {
                background-position: 100% 50%
            }

            100% {
                background-position: 0% 50%
            }
        }

        /* 3 cards container */
        .cards {
            display: flex;
            gap: 25px;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            max-width: 1000px;
            width: 100%;
        }

        .card {
            flex: 1 1 260px;
            background: rgba(255, 255, 255, .15);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, .25);
            border-radius: 16px;
            padding: 35px 25px;
            text-align: center;
            color: #fff;
            cursor: pointer;
            transition: transform .3s ease, background .3s ease;
            box-shadow: 0 8px 32px rgba(0, 0, 0, .15);
        }

        .card:hover {
            transform: translateY(-8px);
            background: rgba(255, 255, 255, .25)
        }

        .card h3 {
            font-size: 1.6rem;
            margin-bottom: 10px
        }

        .card p {
            font-size: 1rem;
            opacity: .9
        }


        .spotlight {
            position: absolute;
            top: 0;
            left: 0;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(255, 255, 255, .35) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            filter: blur(40px);
            transform: translate(-50%, -50%);
            transition: transform .08s ease-out;
        }


        .wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 40px;
            width: 100%;
        }

        .page-title {
            color: #fff;
            font-size: 4rem;
            text-align: center;
            text-shadow: 0 6px 20px rgba(0, 0, 0, .3);
            z-index: 2;
        }

        /* cards stays SAME */
        .cards {
            display: flex;
            gap: 25px;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            max-width: 1400px;
            width: 100%;
        }

        .float {
            animation: floatY 1.6s ease-in-out infinite;
            transform-origin: center;
        }


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

            25% {
                transform: translateY(-5px);
            }

            50% {
                transform: translateY(0px);
            }

            75% {
                transform: translateY(5px);
            }

            100% {
                transform: translateY(0px);
            }
        }


        .rotate {
            animation: rotateSlow 6s linear infinite;
            transform-origin: center;
            transform-box: fill-box;
        }



        @keyframes rotateSlow {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        .svg_wrappr {

            width: 100%;
            height: auto;
            overflow: hidden;
        }


        svg {
            width: 180px;
            height: 180px;
        }


        .page-title {
            color: #fff;
            font-size: 4rem;
            text-align: center;
            text-shadow: 0 6px 20px rgba(0, 0, 0, .3);
        }


        @keyframes pageFadeDown {
            0% {
                transform: translateY(-40px);
                opacity: 0;
            }

            100% {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .bg {
            position: absolute;
            inset: 0;
            background: linear-gradient(-45deg, #0984e3, #00b894, #fdcb6e, #0984e3);
            background-size: 400% 400%;
            animation: bgMove 10s ease infinite;
        }

        @keyframes bgMove {
            0% {
                background-position: 0% 50%
            }

            50% {
                background-position: 100% 50%
            }

            100% {
                background-position: 0% 50%
            }
        }


        @media (max-width:375px) {
            .page-title {
                font-size: 3rem;
            }
        }


        .page-title {
            color: #fff;
            font-size: 4rem;
            text-align: center;
            text-shadow: 0 6px 20px rgba(0, 0, 0, .3);
            z-index: 2;
        }
