* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

body {
    font-family: 'Roboto Mono', monospace;
    font-size: 14px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Comparison Slider */
.slider-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    pointer-events: none;
}

.slider-bg-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 100%;
    background-color: #000000;
    pointer-events: none;
}

.slider-bg-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    pointer-events: none;
    z-index: -1;
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 30%;
    height: 100%;
    width: 2px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slider-container:hover .slider-handle {
    opacity: 1;
}

.slider-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: #9ca3af;
}

.slider-circle {
    display: none;
}

.slider-bars {
    display: none;
}

.slider-bars span {
    display: none;
}

/* Content - Dual Text Layers */
.text-layer {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    max-width: none;
    margin: 0;
    padding: 80px 60px;
    pointer-events: none;
    width: 100%;
    min-height: 100vh;
}

.text-layer a {
    pointer-events: auto;
}

.content-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    min-height: calc(100vh - 160px);
    width: 100%;
}

/* White text for black background */
.text-white h1,
.text-white p,
.text-white .tagline,
.text-white .launch-date,
.text-white .contact-name,
.text-white .contact-email,
.text-white .waitlist-button {
    color: #ffffff;
}

/* Black text for white background */
.text-black h1,
.text-black p,
.text-black .tagline,
.text-black .launch-date,
.text-black .contact-name,
.text-black .contact-email,
.text-black .waitlist-button {
    color: #000000;
}

main {
    max-width: 650px;
    flex-shrink: 0;
}

.image-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: -80px;
    margin-left: 40px;
    gap: 30px;
}

.image-container {
    position: relative;
    display: flex;
    justify-content: center;
}

.invader-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    border: none;
    outline: none;
    box-shadow: none;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.image-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.launch-date {
    font-family: 'Roboto Mono', monospace;
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    letter-spacing: 0.2px;
}

.waitlist-button {
    font-family: 'Roboto Mono', monospace;
    font-size: 14px;
    font-weight: 400;
    padding: 12px 24px;
    background: transparent;
    border: 2px solid currentColor;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.2px;
    color: inherit;
    pointer-events: auto;
}

.waitlist-button:hover {
    background: currentColor;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.text-white .waitlist-button:hover {
    background: white;
    color: #000000;
}

.text-black .waitlist-button:hover {
    background: black;
    color: #ffffff;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
}

.contact-name,
.contact-email {
    font-family: 'Roboto Mono', monospace;
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    letter-spacing: 0.2px;
}

.contact-email a {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s ease;
    pointer-events: auto;
}

.contact-email a:hover {
    opacity: 0.8;
}

/* White image on black background */
.text-white .invader-image {
    filter: brightness(0) invert(1);
}

/* Red eyes overlay - only visible on white invader (black background) */
.text-white .image-container::before,
.text-white .image-container::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    background-color: #ff0000;
    border-radius: 0;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.9);
    z-index: 10;
}

/* Position left eye */
.text-white .image-container::before {
    top: 45%;
    left: 41.9%;
    transform: translate(-50%, -50%);
}

/* Position right eye */
.text-white .image-container::after {
    top: 45%;
    left: 57.7%;
    transform: translate(-50%, -50%);
}

h1 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

p {
    margin-bottom: 24px;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.tagline {
    font-weight: 500;
}

.contact {
    margin-top: 16px;
}

.contact a {
    color: #3aff17 !important;
    text-decoration: none;
    font-weight: 400;
    font-size: 13px;
    position: relative;
    background: linear-gradient(
        90deg,
        #3aff17 0%,
        #5dff4a 25%,
        #ffffff 50%,
        #5dff4a 75%,
        #3aff17 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

.contact a:hover {
    animation-duration: 1.5s;
}

@keyframes shimmer {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

/* Responsive Design */
/* Large screens - center image in right white section */
@media (min-width: 1401px) {
    .content-wrapper {
        justify-content: flex-start;
    }
    
    main {
        margin-right: auto;
    }
    
    .image-section {
        position: absolute;
        right: 0;
        width: 50%;
        margin-left: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0 40px;
    }
}

/* When text content gets too close to slider, make entire background black */
@media (max-width: 1400px) {
    .slider-bg-left {
        width: 100% !important;
    }
    
    .slider-handle {
        opacity: 0 !important;
        pointer-events: none;
    }
    
    /* Show only white text layer on black background */
    .text-black {
        display: none;
    }
    
    .text-white {
        clip-path: none !important;
    }
}

@media (max-width: 1024px) {
    .text-layer {
        padding: 60px 40px;
    }
    
    .content-wrapper {
        gap: 60px;
        align-items: center;
    }
    
    main {
        max-width: 550px;
    }
    
    .image-section {
        margin-left: 20px;
        align-items: center;
        justify-content: center;
    }
    
    .invader-image {
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .text-layer {
        padding: 40px 24px;
    }
    
    .content-wrapper {
        flex-direction: column;
        gap: 40px;
        min-height: auto;
        align-items: center;
    }
    
    main {
        max-width: 100%;
    }
    
    .image-section {
        margin-top: 0;
        margin-left: 0;
        width: 100%;
        gap: 20px;
        align-items: center;
        justify-content: center;
    }
    
    .image-container {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .invader-image {
        max-width: 250px;
        margin: 0 auto;
    }
    
    /* Make entire background black on mobile */
    .slider-bg-left {
        width: 100% !important;
    }
    
    .slider-handle {
        display: none;
    }
    
    /* Show only white text layer on black background */
    .text-black {
        display: none;
    }
    
    .text-white {
        clip-path: none !important;
    }
    
    /* Adjust red eye positions for smaller image */
    .text-white .image-container::before {
        width: 20px;
        height: 20px;
        top: 45%;
        left: 42%;
    }
    
    .text-white .image-container::after {
        width: 20px;
        height: 20px;
        top: 45%;
        left: 58%;
    }
    
    h1 {
        font-size: 22px;
        margin-bottom: 32px;
    }
    
    body {
        font-size: 14px;
    }
    
    p {
        margin-bottom: 20px;
    }
    
    .launch-date,
    .contact-name,
    .contact-email,
    .waitlist-button {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .text-layer {
        padding: 30px 20px;
    }
    
    .content-wrapper {
        gap: 30px;
        align-items: center;
    }
    
    .image-section {
        align-items: center;
        justify-content: center;
    }
    
    .invader-image {
        max-width: 200px;
        margin: 0 auto;
    }
    
    /* Further adjust red eye positions for smallest screens */
    .text-white .image-container::before {
        width: 16px;
        height: 16px;
        box-shadow: 0 0 15px rgba(255, 0, 0, 0.9);
    }
    
    .text-white .image-container::after {
        width: 16px;
        height: 16px;
        box-shadow: 0 0 15px rgba(255, 0, 0, 0.9);
    }
    
    h1 {
        font-size: 20px;
        margin-bottom: 24px;
    }
    
    body {
        font-size: 13px;
    }
    
    p {
        margin-bottom: 18px;
    }
    
    .launch-date,
    .contact-name,
    .contact-email {
        font-size: 12px;
    }
    
    .waitlist-button {
        font-size: 12px;
        padding: 10px 20px;
    }
    
    .image-info {
        gap: 15px;
    }
    
    .contact-info {
        margin-top: 5px;
    }
}

/* Copyright Footer */
.copyright {
    position: fixed;
    bottom: 20px;
    right: 30px;
    font-family: 'Roboto Mono', monospace;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.2px;
    z-index: 20;
    color: inherit;
}

.copyright a {
    color: inherit;
    text-decoration: none;
    pointer-events: auto;
    transition: opacity 0.2s ease;
}

.copyright a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

.copyright span {
    pointer-events: none;
}

.text-white .copyright {
    color: #ffffff;
}

.text-black .copyright {
    color: #000000;
}

/* Responsive footer */
@media (max-width: 1024px) {
    .copyright {
        font-size: 10px;
        right: 20px;
        bottom: 15px;
    }
}

@media (max-width: 768px) {
    .copyright {
        position: relative;
        bottom: auto;
        right: auto;
        text-align: center;
        padding: 20px;
        font-size: 10px;
        display: block;
        background: transparent;
    }
    
    .copyright span,
    .copyright a {
        display: inline-block;
        margin: 5px 8px;
    }
}

@media (max-width: 480px) {
    .copyright {
        font-size: 9px;
        padding: 15px 10px;
    }
    
    .copyright span {
        display: block;
        margin-bottom: 8px;
    }
    
    .copyright a {
        display: inline-block;
        margin: 5px 10px;
    }
}

/* Very small devices */
@media (max-width: 360px) {
    .text-layer {
        padding: 24px 16px;
    }
    
    h1 {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .invader-image {
        max-width: 160px;
    }
    
    .waitlist-button {
        padding: 8px 16px;
    }
    
    .copyright {
        font-size: 8px;
        padding: 10px;
    }
}
