

        /* Hide the code container2a until the button is pressed */
        .hidden {
            display: none;
        }


        .explanation {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 20px;
            color: #333; /* Dark gray text color */
        }
        .emoji-large {
            font-size: 30px;
            text-align: center; 
        }
        .bouncing-arrows {
            display: inline-block;
            animation: bounce 1s infinite ease-in-out;
        }

        @keyframes bounce {
            0%, 100% {
                transform: translateY(0); 
            }
            50% {
                transform: translateY(-3mm);
            }
        }
        .instructions {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 20px;
            color: #333; /* Dark gray text color */
            display: none;
        }
        .instructionsoffer {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 10px;
            margin-top: -40px;
            color: #333; /* Dark gray text color */
            display: none;
            text-align: left;
        }
.extframecontainer {
            display: none;
        }

        /* Styling for the main button */
        #showCodeBtn {
            padding: 15px 30px;
            font-size: 18px;
            background-color: #007BFF;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        #showCodeBtn:hover {
            background-color: #0056b3;
        }

        /* CSS for the activation code container2a */
        .container2a {
            text-align: center;
            background-color: #fff;
            padding: 20px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            border-radius: 10px;
            width: 100%;
            max-width: 800px;
            margin-top: 10px; /* Add 10px margin-top for the container2a */
        }

        h1 {
            font-size: 28px;
            margin-bottom: 20px;
            color: #333;
        }

        /* Space of 15px between statusMessage and activationCode */
        #statusMessage {
            margin-bottom: 15px; /* Add 15px margin-bottom */
        }

        .code-box {
            font-size: 26px;
            margin-bottom: 10px;
            padding: 10px;
            border: 2px dotted whitesmoke;
            width: 100%;
            max-width: 400px;
            background-color: #444544;
            border-radius: 5px;
            letter-spacing: 3px;
            color: white;
            margin: 0 auto 20px;
        }

        .red-xxxx {
            color: red; /* Red color for the letters XXXX */
        }

        .btn2 {
            padding: 20px 20px;
            font-size: 20px;
            font-weight: bold;
            background-color: blue;
            color: yellow;
            border: 2px thick double green;
            border-radius: 15px;
            cursor: pointer;
            text-shadow: 1px 0 0 #000, 0 -1px 0 #000, 0 1px 0 #000, -1px 0 0 #000;
            display: none;
        }

        .btn2:hover {
            background-color: darkblue;
        }

       .extframe-container2 {
            display: none;
        }
        /* Additional text */
        .additional-text {
            text-align: left;
            font-size: 16px;
            color: #555;
            margin-top: 50px;
        }



        /* Responsiveness */
        @media (max-width: 600px) {
            .container2a {
                padding: 10px;
            }

            .code-box {
                font-size: 20px;
            }

            .btn {
                font-size: 16px;
            }
        }