        :root {
            --neon-yellow: #f9ff00;
            --neon-purple: #bc13fe;
            --dark: #121212;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--dark);
            color: #ffffff;
            overflow-x: hidden;
        }

        .neon-text {
            text-shadow: 0 0 5px var(--neon-yellow), 0 0 10px var(--neon-yellow);
            color: var(--neon-yellow);
        }

        .neon-purple {
            text-shadow: 0 0 5px var(--neon-purple), 0 0 10px var(--neon-purple);
            color: var(--neon-purple);
        }

        .neon-border {
            box-shadow: 0 0 5px var(--neon-yellow), inset 0 0 5px var(--neon-yellow);
            border: 2px solid var(--neon-yellow);
        }

        .gradient-bg {
            background: linear-gradient(135deg, var(--neon-yellow) 0%, var(--neon-purple) 100%);
        }

        .section {
            padding: 6rem 2rem;
            position: relative;
            overflow: hidden;
        }

        .section::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 10%;
            width: 80%;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--neon-yellow), transparent);
        }

        .hover-grow {
            transition: all 0.3s ease;
        }

        .hover-grow:hover {
            transform: scale(1.03);
        }

        .card {
            background-color: rgba(18, 18, 18, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            padding: 2rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        .card:hover {
            box-shadow: 0 0 15px var(--neon-yellow);
        }

        .btn {
            padding: 0.75rem 2rem;
            border-radius: 30px;
            font-weight: bold;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: var(--neon-yellow);
            transition: all 0.3s ease;
            z-index: -1;
        }

        .btn:hover::before {
            width: 100%;
        }

        .btn-primary {
            background-color: var(--neon-purple);
            color: white;
        }

        .btn-primary:hover {
            color: var(--dark);
        }

        .form-input {
            background-color: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
            padding: 0.75rem 1rem;
            border-radius: 5px;
            width: 100%;
            margin-bottom: 1rem;
            transition: all 0.3s ease;
        }

        .form-input:focus {
            outline: none;
            box-shadow: 0 0 5px var(--neon-yellow);
            border-color: var(--neon-yellow);
        }

        @keyframes float {
            0% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-15px);
            }

            100% {
                transform: translateY(0px);
            }
        }

        .float {
            animation: float 6s ease-in-out infinite;
        }

        .float-delay-1 {
            animation-delay: 1s;
        }

        .float-delay-2 {
            animation-delay: 2s;
        }

        .number-circle {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--neon-yellow);
            color: var(--dark);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.5rem;
            margin-right: 1rem;
            box-shadow: 0 0 10px var(--neon-yellow);
        }

        @media (max-width: 768px) {
            .section {
                padding: 4rem 1rem;
            }

            h1 {
                font-size: 2rem !important;
            }

            h2 {
                font-size: 1.5rem !important;
            }
        }