        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
            color: #e0e0e0;
            overflow-x: hidden;
        }

        .neon-text {
            color: #bb86fc;
            text-shadow: 0 0 10px #bb86fc, 0 0 20px #bb86fc, 0 0 30px #bb86fc;
        }

        .neon-border {
            border: 2px solid #bb86fc;
            box-shadow: 0 0 20px rgba(187, 134, 252, 0.3);
        }

        .gradient-bg {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #bb86fc 100%);
        }

        .card {
            background: rgba(26, 26, 46, 0.8);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(187, 134, 252, 0.2);
            border-radius: 15px;
            transition: all 0.3s ease;
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(187, 134, 252, 0.2);
        }

        .btn-primary {
            background: linear-gradient(45deg, #bb86fc, #03dac6);
            border: none;
            color: #000;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(187, 134, 252, 0.4);
        }

        .floating {
            animation: floating 3s ease-in-out infinite;
        }

        @keyframes floating {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        .fade-in {
            animation: fadeIn 1s ease-in;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .pulse-glow {
            animation: pulseGlow 2s infinite;
        }

        @keyframes pulseGlow {

            0%,
            100% {
                box-shadow: 0 0 20px rgba(187, 134, 252, 0.3);
            }

            50% {
                box-shadow: 0 0 40px rgba(187, 134, 252, 0.6);
            }
        }

        .text-accent {
            color: #03dac6;
        }

        .natural-green {
            color: #4ade80;
        }

        .section-divider {
            height: 2px;
            background: linear-gradient(90deg, transparent, #bb86fc, transparent);
            margin: 4rem 0;
        }

        .form-input {
            background: rgba(26, 26, 46, 0.9);
            border: 1px solid rgba(187, 134, 252, 0.3);
            color: #e0e0e0;
            border-radius: 8px;
            padding: 12px 16px;
            transition: all 0.3s ease;
        }

        .form-input:focus {
            outline: none;
            border-color: #bb86fc;
            box-shadow: 0 0 15px rgba(187, 134, 252, 0.3);
        }

        .hero-pattern {
            background-image: radial-gradient(circle at 20% 50%, rgba(187, 134, 252, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(3, 218, 198, 0.1) 0%, transparent 50%);
        }

        @media (max-width: 768px) {
            .neon-text {
                font-size: 2rem;
            }

            .card {
                margin: 1rem 0;
            }
        }