
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            overflow-x: hidden;
            background-color: #000;
            color: #070606;
        }

        .navbar {
            overflow: hidden;
            background-color: #000;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }

        /* Styles from the first page */

       body {
            font-family: Arial, sans-serif;
            margin: 0;
            overflow-x: hidden;
            background-color: #000;
            color: #fff;
        }

        .navbar {
            overflow: hidden;
            background-color: #000;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }

        .navbar a {
            float: left;
            display: block;
            color: #fff;
            text-align: center;
            padding: 14px 16px;
            text-decoration: none;
            font-size: 17px;
        }

        .navbar a:hover {
            background-color: #333;
            color: #fff;
        }

        .container {
            max-width: 600px;
            margin: 80px auto;
            padding: 20px;
            background: rgba(0, 0, 0, 0.8);
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
            text-align: center;
            position: relative;
            transform-style: preserve-3d;
            perspective: 1000px;
        }

        input[type="text"],
        select {
            width: calc(100% - 24px);
            padding: 12px;
            margin: 8px 0;
            display: inline-block;
            border: none;
            border-radius: 4px;
            box-sizing: border-box;
            background-color: #333;
            color: #fff;
            border: 1px solid #fff;
        }

        button {
            background-color: #ff69b4;
            color: #000;
            padding: 14px 20px;
            margin: 8px 0;
            border: none;
            cursor: pointer;
            width: calc(100% - 24px);
            border-radius: 4px;
            font-size: 16px;
            position: relative;
        }

        button:hover {
            background-color: #ff1493;
            color: #fff;
        }

        button::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, #ff69b4, #ff1493);
            filter: blur(5px);
            z-index: -1;
            transition: opacity 0.6s;
            opacity: 0;
            border-radius: 4px;
        }

        button:hover::after {
            opacity: 1;
        }

        .results {
            margin-top: 20px;
            background-color: #333;
            padding: 20px;
            border-radius: 10px;
            text-align: left;
        }

        .results p {
            color: #fff;
        }

        .background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, #1fbc1a63, #0d420b63);
            z-index: -1;
            animation: animatedBackground 30s linear infinite;
        }

        @keyframes animatedBackground {
            from { background-position: 0 0; }
            to { background-position: 1000px 0; }
        }

        .floating-numbers {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
        }

        .number {
            position: absolute;
            font-size: 3em;
            color: rgba(255, 255, 255, 0.1);
            animation: floatNumbers 10s linear infinite;
        }

        @keyframes floatNumbers {
            0% {
                transform: translateY(100%);
                opacity: 0;
            }
            50% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100%);
                opacity: 0;
            }
        }

        /* New styles for footer */
        footer {
            position: fixed;
            bottom: 0;
            width: 100%;
            background-color: #272003;
            color: #e8f80b;
            text-align: center;
            padding: 10px 0;
            font-size: 14px;
        }

        footer p {
            margin: 0;
        }

        /* Styles for the footer */
footer {
    position: fixed;
    bottom: 10;
    width: 100%;
    background-color: #0a2135;
    color: #e8f80b;
    text-align: center;
    padding: 5px 0;
    font-size: 15px;
}

footer p {
    margin: 0;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.footer-links a {
    margin: 0 10px;
    text-decoration: none;
    color: #e8f80b;
}

.footer-links a img {
    width: 24px;
    height: 24px;
    margin-right: 5px;
    vertical-align: middle;
}

        /* Additional styles for the second page */
        .container {
            max-width: 800px;
            padding: 20px;
            background-color: #030000;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            border-radius: 10px;
            margin-top: 20px;
        }

        .table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
        }

        .table th, .table td {
            border: 1px solid #6559ea;
            padding: 8px;
            text-align: left;
        }

        .table th {
            background-color: #f60505;
        }
 