/* General Styles */
body {
    margin: 0;
    font-family: sans-serif;
    background: #000; /* Solid black background for space */
    color: #fff;
    display: flex;
    justify-content: center;
    min-height: 100vh; /* Ensure the body takes up at least the full viewport height */
    overflow-x: hidden; /* Allow vertical scrolling but hide horizontal overflow */
    flex-direction: column; /* Stack the preloader and container */
    position: relative; /* For positioning star layers */
}

/* Starfield Animations */
#stars, #stars2, #stars3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: repeat;
    background-size: cover; /* Ensure the starfield covers the viewport */
    z-index: -1; /* Place behind all content */
    animation: move-stars 100s linear infinite; /* Parallax effect */
    opacity: 0.1; /* Set initial opacity to make stars faintly visible */
}

#stars {
    background-image: url('./img/starfield.png'); /* Corrected path for small stars */
    opacity: 0.8;
    animation-duration: 100s; /* Slowest layer */
}

#stars2 {
    background-image: url('./img/starfield-2.png'); /* Corrected path for medium stars */
    opacity: 0.6;
    animation-duration: 50s; /* Medium speed */
}

#stars3 {
    background-image: url('./img/starfield-3.png'); /* Corrected path for large stars */
    opacity: 0.4;
    animation-duration: 25s; /* Fastest layer */
}

@keyframes move-stars {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-100%);
    }
}

/* Preloader Styles */
#preloader {
    position: absolute;
    top: -185px;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#preloader-text {
    font-size: 1em; /* Slightly larger text */
    margin-bottom: 20px; /* Reduced margin */
    font-family: 'Montserrat';
    color: #ffffff;
    text-shadow: 0 0 5px #5fd0eb, 0 0 3px #e95ad2, 0 0 6px #dd6ad9;
    white-space: nowrap;
    overflow: hidden;
    animation: typing 3s steps(30, end) infinite,
               blink-cursor 0.7s steps(2, start) infinite;
    border-right: 2px solid #ffffff;
    font-family: "Doto", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings:
      "ROND" 0;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-cursor {
    0% { border-right-color: #ffffff }
    50% { border-right-color: transparent }
    100% { border-right-color: #ffffff }
}

#preloader-loading-bar {
    width: 30%;
    height: 5px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: inset 0 2px 5px rgba(255, 255, 255, 0.05),
                0 0 10px rgba(255, 255, 255, 0.3);
}

#preloader-loading-bar-inner {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #5f7aeb, #9e5ae9, #9d6add, #5f7aeb); /* More vibrant gradient */
    border-radius: 0px;
    box-shadow: inset 0 -2px 5px rgba(0, 0, 0, 0.1),
                0 0 5px #5fd0eb, 0 0 10px #e95ad2, 0 0 15px #dd6ad9;
    animation: load 3s linear infinite; /* Loading animation */
}

@keyframes load {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* Main Container */
.container {
    text-align: center;
    padding: 20px 20px 280px 20px;
    display: none; /* Initially hidden */
    flex-grow: 1; /* Allow the container to take up remaining vertical space */
    flex-direction: column;
    justify-content: center; /* Center the content within the container */
    align-items: center;
    opacity: 0; /* Ensure it's invisible initially */
    transition: opacity 0.5s ease; /* Smooth fade-in effect */
    position: relative;
    overflow: visible; /* Allow scrolling within the container */
}

.hero {
    margin-bottom: 30px;
}

.main-title {
    font-size: 2.5em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.subtitle {
    font-size: 1.2em;
    margin-bottom: 15px;
    font-style: italic;
}

.subtext {
    font-size: 1em;
    margin-bottom: 20px;
}

.email-signup p {
    margin-bottom: 5px;
}

.email-signup form {
    display: flex;
    max-width: 300px;
    margin: 0 auto 10px;
}

.email-signup input[type="email"] {
    flex-grow: 1;
    padding: 10px;
    border: none;
    border-radius: 5px 0 0 5px;
    color: #333;
}

.email-signup button {
    background-color: #fff;
    color: #00f;
    border: none;
    padding: 10px 15px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-weight: bold;
}

.email-signup button:hover {
    background-color: #eee;
}

.visuals {
    margin-bottom: 30px;
    /* We'll style the individual visuals with JS or more CSS later */
}

#hookah-silhouette {
    /* Placeholder for the hookah image/SVG */
    font-size: 2em; /* Just to have something visible initially */
    color: #fff;
    margin-bottom: 15px;
}

#loading-bar {
    width: 80%;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 10px auto;
    border-radius: 5px;
    overflow: hidden; /* To contain the animated bar */
}

#loading-bar::before {
    content: '';
    display: block;
    height: 100%;
    width: 0%;
    background-color: #fff;
    border-radius: 5px;
}

#countdown {
    font-size: 1.5em;
    margin-top: 15px;
}

.social {
    text-align: center;
    padding: 15px 0;
}

.social a {
    color: #fff;
    text-decoration: none;
}

social a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .main-title {
        font-size: 2em;
    }
    .email-signup form {
        flex-direction: column;
        align-items: stretch;
    }
    .email-signup input[type="email"] {
        border-radius: 5px;
        margin-bottom: 10px;
    }
    .email-signup button {
        border-radius: 5px;
    }
}

.login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #000;
    color: #fff;
    text-align: center;
}

.login-container h1 {
    margin-bottom: 20px;
}

.login-container form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-container input[type="password"] {
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
    width: 200px;
}

.login-container button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #0ff;
    color: #000;
    font-weight: bold;
    cursor: pointer;
}

.login-container button:hover {
    background-color: #0cc;
}

.product-display {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
    min-height: 400px;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    outline: none;
}

.product-image {
    position: absolute;
    bottom: -96%;
    left: 56%;
    transform: translateX(-50%);
    width: auto;
    height: 580px;
    object-fit: contain;
    animation: slideInFromTop 1.5s ease-out;
}

@keyframes slideInFromTop {
    0% {
        transform: translate(-50%, -200%);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, 0);
        opacity: 1;
    }
}

/* Responsive adjustments for smaller screens */
@media (max-width: 1800px) {
    .product-image {
        height: 550px; /* Reduce height for medium screens */
        bottom: -90%; /* Adjust position to stay on the platform */
        left: 55%;
    }
    .hud {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        flex-direction: column;
        gap: 40px; /* Increase spacing between HUD elements */
        opacity: 1; /* Ensure HUD elements are visible */
        margin-right: -30px;
        margin-left: -30px;
        width: 33.33%;

    }
    
    .hud.left {
        left: 5%; /* Move the left HUD closer to the edge */
        z-index: 3;
    }
    
    .hud.right {
        right: 0;/* Move the right HUD closer to the edge */
        z-index: 3;
    }
    .hud-line {
        width: 2px;
        height: 80px; /* Adjust height for medium screens */
        background: linear-gradient(to bottom, #5fd0eb, transparent);
    }
}
@media (max-width: 1600px) {
    .product-image {
        height: 510px; /* Reduce height for medium screens */
        bottom: -79%; /* Adjust position to stay on the platform */
        left: 56%;
    }
    .hud {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        flex-direction: column;
        gap: 35px; /* Adjust spacing between HUD elements */
        opacity: 1; /* Ensure HUD elements are visible */
        margin-right: -50px;
        margin-left: -50px;
        width: 41.33%!important;
    }
    
    .hud.left {
        left: 5%; /* Move the left HUD closer to the edge */
        z-index: 3;
    }
    
    .hud.right {
        right: 5%; /* Move the right HUD closer to the edge */
        z-index: 3;
    }
    .hud-line {
        height: 70px; /* Adjust height for smaller screens */
    }
}
/* Responsive adjustments for smaller screens */
@media (max-width: 1400px) {
    .product-image {
        height: 473px; /* Reduce height for medium screens */
        bottom: -70%; /* Adjust position to stay on the platform */
        left: 56%;
    }
    .hud {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        flex-direction: column;
        gap: 30px; /* Adjust spacing between HUD elements */
        opacity: 1; /* Ensure HUD elements are visible */
        margin-right: -110px;
        margin-left: -110px;
        width: 48.33%!important;
    }
    
    .hud.left {
        left: 5%; /* Move the left HUD closer to the edge */
        z-index: 3;
    }
    
    .hud.right {
        right: 5%; /* Move the right HUD closer to the edge */
        z-index: 3;
    }
    .hud-line {
        height: 60px; /* Adjust height for smaller screens */
    }
}
@media (max-width: 1200px) {
    .product-image {
        height: 420px; /* Reduce height for medium screens */
        bottom: -57%; /* Adjust position to stay on the platform */
        left: 57%;
    }
    .hud {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        flex-direction: column;
        gap: 25px; /* Adjust spacing between HUD elements */
        opacity: 1; /* Ensure HUD elements are visible */
        margin-right: -110px;
        margin-left: -110px;
        width: 52.33%!important;
    }
    
    .hud.left {
        left: 5%; /* Move the left HUD closer to the edge */
        z-index: 3;
    }
    
    .hud.right {
        right: 5%; /* Move the right HUD closer to the edge */
        z-index: 3;
    }
    .hud-line {
        height: 50px; /* Adjust height for smaller screens */
    }
}
@media (max-width: 992px) {
    .product-image {
        height: 404px; /* Reduce height for medium screens */
        bottom: -53%; /* Adjust position to stay on the platform */
        left: 57%;
    }
    .hud {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        flex-direction: column;
        gap: 20px; /* Adjust spacing between HUD elements */
        opacity: 1; /* Ensure HUD elements are visible */
        margin-right: -150px;
        margin-left: -150px;
        width: 61.33%!important;
    }
    
    .hud.left {
        left: 5%; /* Move the left HUD closer to the edge */
        z-index: 3;
    }
    
    .hud.right {
        right: 5%; /* Move the right HUD closer to the edge */
        z-index: 3;
    }
    .hud-line {
        height: 40px; /* Adjust height for smaller screens */
    }
}
/* Responsive Adjustments */
@media (max-width: 768px) {

        .product-display {
        position: relative!important;
        display: flex!important;
        justify-content: center!important;
        align-items: center!important;
        margin-top: 100px!important;
        min-height: 400px!important;
        width: 100%!important;
        margin-left: auto!important;
        margin-right: auto!important;
        outline: none!important;
    }
    .button-85 {
        width: 80% !important;
        padding: 5px !important;
    }
    .vendor-button-container {
        text-align: center !important;
        margin: 6px 0 !important;
        position: absolute !important;
        top: 134px !important;
        z-index: 9999 !important;
        width: 100%!important;
    }
    .product-image {
        height: 403px !important;
        bottom: -53% !important;
        left: 59% !important;
    }
    .hud {
        position: absolute !important;
        top: 115% !important;
        transform: translateY(-50%) !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        opacity: 1 !important;
        margin-right: 0 !important;
        margin-left: 0 !important;
        width: 33% !important;
    }
    .hud.left {
        left: 0% !important;
        z-index: 3 !important;
    }
    .hud.right {
        right: 0% !important;
        z-index: 3 !important;
    }
    .hud-line {
        height: 40px !important;
    }
    .hud-element {
        position: relative !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        color: #fff !important;
        font-family: 'Montserrat', sans-serif !important;
        font-size: 0.9em !important;
        animation: fadeIn 1s ease-in-out !important;
    }
    .hud-box {
        width: 60px !important;
        height: 60px !important;
        border: 2px solid #5fd0eb !important;
        border-radius: 15px !important;
        margin-bottom: 10px !important;
        animation: pulse 2s infinite !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        backdrop-filter: blur(10px) !important;
        background: rgba(0, 0, 0, 0.5) !important;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3) !important;
    }
    .hud-box svg {
        width: 40px !important;
        height: 40px !important;
        stroke: #5fd0eb !important;
    }
    .hud-title {
        font-size: 1em !important;
        margin-bottom: 5px !important;
        text-transform: uppercase !important;
        font-family: "Goldman", sans-serif !important;
        font-weight: 700 !important;
        font-style: normal !important;
    }
    .hud-text {
        font-size: 2em !important;
        color: #e1e1e1 !important;
        font-family: "Chathura", sans-serif !important;
        font-weight: 600 !important;
        margin: 0 !important;
        line-height: 25px !important;
    }
    .scroll-down-arrows {
        display: flex !important;
    }
}
/* Responsive Adjustments */
@media (max-width: 480px) {
    .product-display {
        position: relative!important;
        display: flex!important;
        justify-content: center!important;
        align-items: center!important;
        margin-top: 100px!important;
        min-height: 400px!important;
        width: 100%!important;
        margin-left: auto!important;
        margin-right: auto!important;
        outline: none!important;
    }
    .button-85 {
        width: 80% !important;
        padding: 5px !important;
    }
    .vendor-button-container {
        text-align: center !important;
        margin: 6px 0 !important;
        position: absolute !important;
        top: 134px !important;
        z-index: 9999 !important;
        width: 120%!important;
    }
    .product-image {
        height: 290px !important;
        bottom: -25% !important;
        left: 57% !important;
    }
    .hud {
        position: absolute !important;
        top: 115% !important;
        transform: translateY(-50%) !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        opacity: 1 !important;
        margin-right: -10px !important;
        margin-left: -10px !important;
        width: 40% !important;
    }
    .hud.left {
        left: 0% !important;
        z-index: 3 !important;
    }
    .hud.right {
        right: 0% !important;
        z-index: 3 !important;
    }
    .hud-line {
        height: 40px !important;
    }
    .hud-element {
        position: relative !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        color: #fff !important;
        font-family: 'Montserrat', sans-serif !important;
        font-size: 0.9em !important;
        animation: fadeIn 1s ease-in-out !important;
    }
    .hud-box {
        width: 60px !important;
        height: 60px !important;
        border: 2px solid #5fd0eb !important;
        border-radius: 15px !important;
        margin-bottom: 10px !important;
        animation: pulse 2s infinite !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        backdrop-filter: blur(10px) !important;
        background: rgba(0, 0, 0, 0.5) !important;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3) !important;
    }
    .hud-box svg {
        width: 40px !important;
        height: 40px !important;
        stroke: #5fd0eb !important;
    }
    .hud-title {
        font-size: 1em !important;
        margin-bottom: 5px !important;
        text-transform: uppercase !important;
        font-family: "Goldman", sans-serif !important;
        font-weight: 700 !important;
        font-style: normal !important;
    }
    .hud-text {
        font-size: 2em !important;
        color: #e1e1e1 !important;
        font-family: "Chathura", sans-serif !important;
        font-weight: 600 !important;
        margin: 0 !important;
        line-height: 25px !important;
    }
    .scroll-down-arrows {
        display: flex !important;
    }
}
.hud {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 40px;
    opacity: 1;
    width: 33.33%;
}

.hud.left {
    left: 5%;
    z-index: 3;
}

.hud.right {
    right: 5%;
    z-index: 3;
}

.hud-element {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9em;
    animation: fadeIn 1s ease-in-out;
}

.hud-box {
    width: 80px;
    height: 80px;
    border: 2px solid #5fd0eb;
    border-radius: 15px;
    margin-bottom: 10px;
    animation: pulse 2s infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.hud-box svg {
    width: 40px;
    height: 40px;
    stroke: #5fd0eb;
}

.hud-title {
    font-size: 1.3em;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-family: "Goldman", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.hud-text {
    font-size: 2em;
    color: #e1e1e1;
    font-family: "Chathura", sans-serif;
    font-weight: 600;
    margin: 0;
    line-height: 25px;
}

.hud-line {
    position: absolute;
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, #5fd0eb, transparent);
    transform-origin: top;
    animation: growLine 1s ease-in-out;
    margin-top: 30px;
    z-index: -2;
}

.hud.left .hud-line {
    left: calc(100% + 10px); /* Adjust as needed */
    top: 10px; /* Adjust as needed */
    transform: rotate(-30deg); /* Adjust angle */
}

.hud.right .hud-line {
    right: calc(100% + 10px); /* Adjust as needed */
    top: 10px; /* Adjust as needed */
    transform: rotate(30deg); /* Adjust angle */
}

.hud-line::before,
.hud-line::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: #5fd0eb;
    border-radius: 50%;
    box-shadow: 0 0 10px #5fd0eb, 0 0 20px #5fd0eb;
}

.hud-line::before {
    top: 0;
    left: -3px;
}

.hud-line::after {
    bottom: -8px;
    left: -3px;
}

.product-text {
    text-align: center;
    font-family: "Russo One", sans-serif;
    margin-top: 475px;
    color: #fff;
    font-size: 1.5em;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeInText 1.5s ease-out 2s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%,
    100% {
        box-shadow: 0 0 10px #5fd0eb, 0 0 20px #5fd0eb;
    }
    50% {
        box-shadow: 0 0 20px #5fd0eb, 0 0 40px #5fd0eb;
    }
}

@keyframes growLine {
    from {
        height: 0;
    }
    to {
        height: 100px;
    }
}

@keyframes fadeInText {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

#planets {
    position: absolute;
    top: -70px;
    left: 0;
    width: 100%;
    height: 40%;
    z-index: 0;
    pointer-events: none;
}

.planet {
    position: absolute;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.5);
    transition: transform 1s ease-in-out, opacity 1s ease-in-out;
    box-shadow: 0 0 0px rgba(255, 255, 255, 0);
    animation: glowing-pulse 2s infinite alternate ease-in-out,
               levitate 4s infinite ease-in-out;
}

@keyframes glowing-pulse {
    0% {
        box-shadow: 0 0 0px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    }
}

@keyframes levitate {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.planet1 {
    width: 100px;
    height: 100px;
    background-image: url('./img/planet1.png');
    top: 30%;
    left: 20%;
}

.planet2 {
    width: 150px;
    height: 150px;
    background-image: url('./img/planet2.png');
    top: 40%;
    left: 70%;
}

.planet3 {
    width: 80px;
    height: 80px;
    background-image: url('./img/planet3.png');
    top: 70%;
    left: 50%;
}

.call-to-action {
    margin-top: 20px;
    text-align: center;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

.call-to-action p {
    font-size: .8em;
    margin-bottom: 15px;
    font-family: "Bruno Ace SC", sans-serif;
}

.call-to-action form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
}

.call-to-action input,
.call-to-action textarea {
    width: 80%;
    max-width: 400px;
    padding: 10px;
    border: 1px solid #5fd0eb;
    border-radius: 5px;
    background: #000;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

.call-to-action button {
    padding: 10px 20px;
    background-color: #5fd0eb;
    color: #000;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.call-to-action button:hover {
    background-color: #3fa1c9;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
    z-index: 10; /* Ensure the form is above other elements */
    position: relative; /* Maintain stacking context */
}

.contact-form input,
.contact-form textarea {
    width: 80%;
    max-width: 400px;
    padding: 10px;
    border: 1px solid #5fd0eb;
    border-radius: 5px;
    background: #000;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

.contact-form button {
    padding: 10px 20px;
    background-color: #5fd0eb;
    color: #000;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #3fa1c9;
}

.validation-message {
    color: #ff4d4d;
    font-size: 0.9em;
    font-family: 'Montserrat', sans-serif;
    text-align: left;
    width: 80%;
    max-width: 400px;
}

/* Faded Transparent Background */
.faded-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), #00000082, rgba(0, 0, 0, 0.8)),
                url(./img/background.png) no-repeat center center;
    background-size: cover;
    z-index: 0;
    pointer-events: none;
}

/* Transparent Header */
.transparent-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.transparent-header .logo img {
    height: 50px;
    width: auto;
}

.transparent-header nav {
    display: flex;
    align-items: center;
}

.transparent-header .nav-link {
    color: #fff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 1em;
    font-weight: bold;
    padding: 10px 15px;
    border: 2px solid #5fd0eb;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.transparent-header .nav-link:hover {
    background-color: #5fd0eb;
    color: #000;
}



/* General fix for overflow */
body {
    overflow-x: hidden;
}



.vendor-button-container {
    text-align: center;
    margin: 6px 0;
    position: absolute;
    top: 135px;
    z-index: 9999;
}

/* Ensure body and html allow scrolling */
html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
    scroll-behavior: smooth;
    min-height: 100%;
}

/* CSS */
.button-49,
.button-49:after {
    width: 150px;
    height: 76px;
    line-height: 78px;
    font-size: 20px;
    font-family: 'Bebas Neue', sans-serif;
    background: linear-gradient(45deg, transparent 5%, #FF013C 5%);
    border: 0;
    color: #fff;
    letter-spacing: 3px;
    box-shadow: 6px 0px 0px #00E6F6;
    outline: transparent;
    position: relative;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.button-49:after {
    --slice-0: inset(50% 50% 50% 50%);
    --slice-1: inset(80% -6px 0 0);
    --slice-2: inset(50% -6px 30% 0);
    --slice-3: inset(10% -6px 85% 0);
    --slice-4: inset(40% -6px 43% 0);
    --slice-5: inset(80% -6px 5% 0);
    content: 'ALTERNATE TEXT';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 3%, #00E6F6 3%, #00E6F6 5%, #FF013C 5%);
    text-shadow: -3px -3px 0px #F8F005, 3px 3px 0px #00E6F6;
    clip-path: var(--slice-0);
}

.button-49:hover:after {
    animation: 1s glitch;
    animation-timing-function: steps(2, end);
}

@keyframes glitch {
    0% {
        clip-path: var(--slice-1);
        transform: translate(-20px, -10px);
    }
    10% {
        clip-path: var(--slice-3);
        transform: translate(10px, 10px);
    }
    20% {
        clip-path: var(--slice-1);
        transform: translate(-10px, 10px);
    }
    30% {
        clip-path: var(--slice-3);
        transform: translate(0px, 5px);
    }
    40% {
        clip-path: var(--slice-2);
        transform: translate(-5px, 0px);
    }
    50% {
        clip-path: var(--slice-3);
        transform: translate(5px, 0px);
    }
    60% {
        clip-path: var(--slice-4);
        transform: translate(5px, 10px);
    }
    70% {
        clip-path: var(--slice-2);
        transform: translate(-10px, 10px);
    }
    80% {
        clip-path: var(--slice-5);
        transform: translate(20px, -10px);
    }
    90% {
        clip-path: var(--slice-1);
        transform: translate(-10px, 0px);
    }
    100% {
        clip-path: var(--slice-1);
        transform: translate(0);
    }
}



/* Button-85 */
/* CSS */
.button-85 {
    padding: 0.6em 2em;
    border: none;
    outline: none;
    color: rgb(255, 255, 255);
    background: #2d2d2d;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
    font-family: "Michroma", sans-serif;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 2px;
    font-size: 11px;
}

.button-85:before {
    content: "";
    background: linear-gradient(
        45deg,
        #ff00b7,
        #d900ff,
        #00ffe5,
        #00ffe1,
        #007bff,
        #002bff,
        #7a00ff,
        #ff00c8,
        #aa00ff
    );
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    -webkit-filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing-button-85 20s linear infinite;
    transition: opacity 0.3s ease-in-out;
    border-radius: 10px;
}

@keyframes glowing-button-85 {
    0% {
        background-position: 0 0;
    }
    50% {
        background-position: 400% 0;
    }
    100% {
        background-position: 0 0;
    }
}

.button-85:after {
    z-index: -1;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #222;
    left: 0;
    top: 0;
    border-radius: 10px;
}

/* Desktop Styles */
.hud.left .hud-line {
    left: calc(100% + -119px);
    top: 10px;
    transform: rotate(-90deg); /* Adjust angle */
}

.hud.right .hud-line {
    right: calc(100% + -118px);
    top: 10px;
    transform: rotate(90deg); /* Adjust angle */
}

/* Ensure no overlapping elements block the form */
.faded-background,
#stars,
#stars2,
#stars3,
#planets {
    pointer-events: none; /* Prevent these elements from blocking interaction */
}

.coming-soon-container {
    text-align: center;
    margin-top: -13px;
}

.coming-soon-text {
    font-size: 1.8rem;
color: #fff;
text-transform: uppercase;
font-family: "Bruno Ace SC", sans-serif;
}

.scroll-down-arrows {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    z-index: 10;
}

.scroll-down-arrows .arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid #5fd0eb;
    border-bottom: 2px solid #5fd0eb;
    transform: rotate(45deg);
    animation: arrow-bounce 1.5s infinite;
    opacity: 0.8;
}

.scroll-down-arrows .arrow:nth-child(2) {
    animation-delay: 0.2s;
}

.scroll-down-arrows .arrow:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes arrow-bounce {
    0%, 100% {
        transform: translateY(0) rotate(45deg);
        opacity: 0.8;
    }
    50% {
        transform: translateY(10px) rotate(45deg);
        opacity: 1;
    }
}

/* Hide arrows by default */
.scroll-down-arrows {
    display: none;
}

/* Show arrows on screens 768px and smaller */
@media (max-width: 768px) {
    .planet1 {
        width: 100px;
        height: 100px;
        background-image: url('./img/planet1.png');
        top: 43%!important;
        left: 4%!important;
    }
    
    .planet2 {
        width: 150px;
        height: 150px;
        background-image: url('./img/planet2.png');
        top: 40%!important;
        left: 70%!important;
    }
    
    .planet3 {
        width: 80px;
        height: 80px;
        background-image: url('./img/planet3.png');
        top: 70%!important;
        left: 50%!important;
    }
    #planets {
        position: absolute;
        top: -70px!important;
        left: 0;
        width: 100%!important;
        height: 40%!important;
        z-index: 0;
        pointer-events: none;
    }
    
    .planet {
        position: absolute;
        background-size: cover;
        background-repeat: no-repeat;
        border-radius: 50%;
        opacity: 0;
        transform: scale(0.5);
        transition: transform 1s ease-in-out, opacity 1s ease-in-out;
        box-shadow: 0 0 0px rgba(255, 255, 255, 0);
        animation: glowing-pulse 2s infinite alternate ease-in-out,
                   levitate 4s infinite ease-in-out;
    }
    .scroll-down-arrows {
        display: flex !important;
        height: 291px;
        position: absolute;
        top: 651px;
        bottom: -44px;
    }
    .container {
        padding: 20px 20px 40px 20px!important;
    }
}

/* Adjustments for screens 480px and smaller */
@media (max-width: 480px) {
    .planet1 {
        width: 100px;
        height: 100px;
        background-image: url('./img/planet1.png');
        top: 30%!important;
        left: -1%!important;
    }
    
    .planet2 {
        width: 150px;
        height: 150px;
        background-image: url('./img/planet2.png');
        top: 40%!important;
        left: 87%!important;
    }
    
    .planet3 {
        width: 80px;
        height: 80px;
        background-image: url('./img/planet3.png');
        top: 54%!important;
        left: 51%!important;
    }
    #planets {
        position: absolute;
        top: 11px!important;
        left: 0;
        width: 100%!important;
        height: 40%!important;
        z-index: 0;
        pointer-events: none;
    }
    
    .planet {
        position: absolute;
        background-size: cover;
        background-repeat: no-repeat;
        border-radius: 50%;
        opacity: 0;
        transform: scale(0.5);
        transition: transform 1s ease-in-out, opacity 1s ease-in-out;
        box-shadow: 0 0 0px rgba(255, 255, 255, 0);
        animation: glowing-pulse 2s infinite alternate ease-in-out,
                   levitate 4s infinite ease-in-out;
    }
    .scroll-down-arrows {
        display: flex !important;
        height: 291px;
        position: absolute;
        top: 525px;
        bottom: -44px;
    }
}