        body {
            background-color: #000;
            color: #0f0;
            font-family: 'Courier New', Courier, monospace;
            overflow-y: scroll;
        }

        .matrix-background {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            overflow: hidden;
            pointer-events: none;
            display: flex;
            justify-content: center;
            align-items: flex-start;
            font-size: 3rem;
            color: rgba(0, 255, 0, 0.1);
            z-index: 0;
        }

        .matrix-char {
            position: absolute;
            white-space: nowrap;
            animation: fall linear infinite;
            opacity: 0.1;
        }

        @keyframes fall {
            0% {
                transform: translateY(-100%);
                opacity: 1;
            }

            100% {
                transform: translateY(100vh);
                opacity: 0;
            }
        }

        .container {
            max-width: 562px;
            background-color: rgb(0 0 0 / 0%);
            border-radius: 15px;
            box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
            padding: 2rem;
            margin: auto;
            margin-left: 3%;
            margin-right: 3%;
            position: relative;
            z-index: 1;
            margin-top: 3%;
            margin-bottom: 3%;
        }

        .options-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 1rem;
        }

        .option {
            cursor: pointer;
            padding: 12px;
            border: 2px solid #0f0;
            border-radius: 10px;
            flex: 1 1 30%;
            margin: 5px;
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: background-color 0.3s ease, transform 0.2s;
        }

        .option:hover {
            background-color: rgba(0, 255, 0, 0.2);
            transform: scale(1.05);
        }

        .option.active {
            background-color: #00ff00ba;
            color: #000;
        }

        .input-field {
            background-color: #1a1a1a70;
            border: 2px solid #0f0;
            padding: 10px;
            width: 100%;
            transition: border-color 0.2s;
            font-size: 1rem;
        }

        .input-field::placeholder {
            color: #0f0;
        }

        .input-field:focus {
            outline: none;
            border-color: #00ff00;
            box-shadow: 0 0 5px #00ff00;
        }

        .button {
            background-color: #00ff00ba;
            color: #000;
            padding: 10px;
            font-size: 1rem;
            border-radius: 10px;
            width: 100%;
            margin-top: 10px;
            transition: background-color 0.3s ease;
        }

        .button:hover {
            background-color: #0f0;
        }

        .result-box {
            background-color: rgba(0, 255, 0, 0.1);
            color: #0f0;
            padding: 10px;
            border-radius: 5px;
            border: 1px solid #0f0;
            margin-top: 20px;
            opacity: 0;
            animation: fadeIn 0.5s forwards;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .description {
            font-size: 0.875rem;
            color: rgba(0, 255, 0, 0.7);
            margin-top: 5px;
            text-align: center;
        }

        .footer {
            font-size: 0.75rem;
            color: rgba(0, 255, 0, 0.7);
            padding-top: 5%;
            text-align: center;
        }

        .header {
            font-size: 0.75rem;
            color: rgba(0, 255, 0, 0.7);
            padding-bottom: 5%;
            text-align: center;
        }

        .captcha-container {
        text-align: center;
        margin: 1.5rem 0;
    }

        .captcha-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 0.5rem;
        }

        .captcha-image {
            width: 114px;
            height: auto;
            border: 2px solid #0f0;
            border-radius: 5px;
            margin-right: 10px;
        }

        .refresh-icon {
            background: none;
            border: none;
            cursor: pointer;
            color: #03fb03;
            font-size: 26px;
            transition: transform 0.2s;
            margin-right: 10px;
        }

        .refresh-icon:hover {
            transform: scale(1.1);
        }

        .captcha-input {
            width: 200px;
            border: 2px solid #0f0;
            border-radius: 5px;
            font-size: 16px;
        }

        .social-button {
            display: inline-block;
            padding: 2px 5px;
            color: #00ff00a8;
            border: 2px solid #00ff00a8;
            text-transform: uppercase;
            text-decoration: none;
            font-family: 'Courier New', Courier, monospace;
            letter-spacing: 0.5px;
            margin: 7px;
            transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
        }

        .social-button i {
            margin-right: 5px;
        }

        .social-button:hover {
            background-color: #00ff4b;
            color: #000;
            cursor: pointer;
        }

        @media (max-width: 768px) {
            .social-button i {
            font-size: 19px;
            margin: 5px;
            }
            .social-button {
            font-size: 0;
            letter-spacing: 0px;
            padding: 5px;
            }


       