@font-face {
    font-family: 'Space Mono';
    src: url('SpaceMono-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Mono', monospace;
    background: linear-gradient(135deg, #333333 0%, #333333 30%, #000000 100%);
    min-height: 100vh;
    overflow: hidden;
    position: relative;
}

.logo-img{
    height: 100px;
    width: auto; filter: 
    brightness(0) invert(1);
}

.slideshow-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
    width: 100vw;
    height: 100vw;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@keyframes pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.05);
    }
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: particle-float 15s linear infinite;
}

.particle:nth-child(odd) {
    animation-duration: 20s;
    background: rgba(255, 255, 255, 0.3);
}

@keyframes particle-float {
    from {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    to {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

.main-text {
    font-size: 24px;
    text-align: center;
}

.subtitle {
    font-size: 24px;
    text-align: center;
}

.waitlist-form {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 500;
    display: flex;
    flex-direction: column; /* Stack vertically */
    gap: 15px;
    align-items: center;
}

.email-input {
    padding: 15px 20px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-family: 'Space Mono', monospace;
    font-size: 14px;
    outline: none;
    width: 80vw;
    backdrop-filter: blur(10px);
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.email-input:focus {
    border-color: #FFD700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.waitlist-btn {
    width: 80vw;
    padding: 15px 30px;
    border: none;
    border-radius: 15px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    font-family: 'Space Mono', monospace;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.waitlist-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

.waitlist-btn:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

.waitlist-form form {
    display: flex;
    flex-direction: column; /* Stack input and button */
    gap: 15px;
    align-items: center;
}

.center-stage {
    margin: 0;
    position: absolute;
    top: 40%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 1000;
    color: #ffffff;
    font-family: 'Space Mono', monospace;
    font-size: 48px;
}

.bottom-text {
    text-align: center;
    width: 100vw;
    margin: 0;
    position: absolute;
    bottom: 1%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 1000;
    color: #ffffff;
    font-family: 'Space Mono', monospace;
    font-size: 4px;
}

.status-message {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 10px 20px;
    border-radius: 8px;
    color: white;
    font-family: 'Space Mono', monospace;
    font-size: 14px;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.status-message.success {
    background: rgba(0, 255, 0, 0.8);
}

.status-message.error {
    background: rgba(255, 0, 0, 0.8);
}

.status-message.show {
    opacity: 1;
}

.bottom-stage {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  padding: 1rem;
  font-size: 12px;
  z-index: 1000;
}

.slide_img_1{
    position: fixed;
    top: 55%; 
    width: 100vw; 
    object-fit: none;
}

.slide_img_2{
    position: fixed;
    top: 10%;
    left: 0;
    width: 100vw; 
    object-fit: none;
}

.slide_img_3{
    position: fixed;
    bottom: 80%;
    right: 0;
    width: 70vw;
    object-fit: none;
}