
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #111;
}

p {
    color: white;
}

a {
    text-decoration: none;
}
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: transparent;
    z-index: 100;
    box-sizing: border-box;
    text-align: left;
}

.footer-left h5 {
    margin: 0;
    color: #ffffff;
    font-size: 13px;
    font-family: 'Courier New', Courier, monospace;
}

.footer-right {
    display: flex;
    gap: 15px;
}

.footer-right h5 {
    margin: 0;
    color: #ffffff;
    font-size: 13px;
    font-family: 'Courier New', Courier, monospace;
    text-align: right;
}

.privacy, .tos {
    margin-left: 0;
    margin-right: 0;
    text-align: right;
    justify-content: flex-end;
    align-items: flex-end;
}

.privacy:hover, .tos:hover {
    color: #ff00aa;
    transition: all .2s ease-in;
}

input {
    padding: 5px;
    border: 2px solid #ff00aa;
    background-color: #111;
    color: #ff00c3;
    display: block;
    width: 10%;
    border-radius: 4px;
    font-family: 'Courier New', Courier, monospace;
    margin: 5px 0;
    /* Center input fields */
    margin-left: auto;
    margin-right: auto;
    font-family: 'Courier New', Courier, monospace;
}

input:focus {
    outline: none;
    background-color: rgb(0, 0, 0);
    color: #ff00c3;
    box-shadow: 0 0 10px #ff00aa, 0 0 20px #ff00c3;
    border-color: #ff00c3;
    -moz-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
}

body, html {
    height: 100vh;
    background-color: #111;
    font-family: Verdana, sans-serif;
    opacity: 0;
    animation: fadeIn 3s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.btn {
    background-color: #111;
    border: 2px solid #ff00aa;
    border-radius: 6px;
    color: white;
    padding: 7px 13px;
    text-align: center;
    cursor: pointer;
    font-size: 1rem;
    /* font-weight: bold; */
    font-family: 'Courier New', Courier, monospace;
    transition: all .3s ease-in;
}

.btn:hover {
    color: #111;
    background-color: rgba(255, 0, 170, 0.6);
    box-shadow: 0 0 10px #ff00aa,
                0 0 20px #ff00aa,
                0 0 30px #ff00aa,
                0 0 50px #ff00aa;
}

.circle {
    position: absolute;
    bottom: 0;
    width: 20px;
    aspect-ratio: 1/1;
    background-color: #ff00aa;
    box-shadow: 0 0 10px #ff00aa,
                0 0 20px #ff00aa,
                0 0 30px #ff00aa,
                0 0 50px #ff00aa;
    border-radius: 50%;
    animation: animate 5s linear forwards;
}

@keyframes animate {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh);
        opacity: 0;
    }
}

.btn1 {
    background-color: #111;;
    border: none;
    color: white;
    padding: 15px 15px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border-radius: 12px;
    font-size: 16px;
    font: bold;
    font-family: 'Courier New', Courier, monospace;
    -moz-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
}
.btn1:hover {
    color: #ff00aa;
}
.p1 {
    position: absolute;
    top: 0.8%;
    /* left: 3.5%; */
    color: #ffffff;
    z-index: 11;
}

/* .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    position: relative;
    z-index: 10;
} */

.header-container {
    display: flex;
    justify-content: space-between; /* Ensures proper spacing */
    align-items: center;
    padding: 15px;
    position: relative;
    z-index: 10;
}

.nav-container {
    margin-left: auto; /* Pushes the navigation buttons to the right */
    display: flex;
    gap: 10px;
}

.logo {
    position: absolute;
    width: 2.8em;
    left: 48.5%;
    top: 1%;
    height: auto;
    border: none;
    z-index: 10;
}

/* .nav-container {
    display: flex;
    gap: 10px;
} */

.nav-btn {
    background-color: #111;
    border: none;
    color: white;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    border-radius: 12px;
    font-size: 16px;
    /* font-weight: bold; */
    font-family: 'Courier New', Courier, monospace;
    transition: all .2s ease-in;
}

.nav-btn:hover {
    color: #ff00aa;
}

.content-container {
    position: relative;
    top: 30vh;
    transform: translateY(-50%);
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    /*----*/
    width: 100%;
}

.content-container form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

h1 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 15px;
    font-family: 'Courier New', Courier, monospace;
}

h2 {
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 15px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.2rem;
}

.cta-container {
    margin-top: 30px;
}

.cta-btn {
    background-color: #111;
    border: 3px solid #ff00aa;
    border-radius: 12px;
    color: white;
    padding: 15px 25px;
    text-align: center;
    cursor: pointer;
    font-size: 1rem;
    /* font-weight: bold; */
    font-family: 'Courier New', Courier, monospace;
    transition: all .2s ease-in;
}

.cta-btn:hover {
    color: #111;
    background-color: rgba(255, 0, 170, 0.6);
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 10px 0;
}

h5 {
    color: #ffffff;
    font-size: 13px;
    font-family: 'Courier New', Courier, monospace;
}

.abio {
    color: #ff00aa;
    text-decoration: underline;
    transition: all .2s ease-in;
}

.abio:hover {
    color: #3700ff;
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 21px;
    z-index: 100;
    margin-left: auto;
}

.bar {
    height: 3px;
    width: 100%;
    background-color: white;
    transition: all 0.3s ease;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .tosphone {
        margin-top: 50%;
    }
    
    .nav-container {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: #111;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: right 0.3s ease;
        z-index: 99;
        padding-top: 80px;
    }
    
    .nav-container.active {
        right: 0;
    }
    
    .header-container {
        padding: 15px;
        position: relative;
    }
    
    .logo {
        margin-bottom: 0;
    }
    
    .nav-btn {
        width: 80%;
        padding: 15px;
        font-size: 1.2rem;
    }
    
    .content-container {
        top: 30vh;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1rem;
    }
    
    .cta-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 480px) {
    .content-container {
        top: 25vh;
    }
    
    h1 {
        font-size: 1.5rem;
    }
    
    h2 {
        font-size: 0.9rem;
    }
    
    .nav-container {
        width: 80%;
    }
}