body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0D0D0D; /* Very dark charcoal, like app background */
    color: #E0E0E0;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    overflow: hidden; /* Prevent scrollbars from animation if it extends */
    position: relative; /* For pseudo-element background */
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, rgba(0, 221, 170, 0.03) 0%, rgba(13, 13, 13, 0) 50%, rgba(0, 221, 170, 0.02) 100%);
    animation: subtleBgAnimation 30s ease infinite alternate;
}

@keyframes subtleBgAnimation {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 100% 100%;
    }
}

.container {
    max-width: 560px; /* Slightly reduced max-width for a tighter look */
    padding: 40px;    /* Consistent padding */
    z-index: 1;
    background-color: #1A1A1A;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(0, 221, 170, 0.1), 0 0 10px rgba(0, 221, 170, 0.05); /* Subtle glow */
}

header {
    margin-bottom: 40px; /* Adjusted */
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.compass-logo-icon {
    font-size: 2.5em; /* Adjust size of the character itself */
    color: #00DDAA; /* Teal color for the compass needle/details */
    margin-right: 15px;
    line-height: 1;
    display: inline-flex; /* To apply sizing and centering */
    align-items: center;
    justify-content: center;
    width: 50px; /* Circle size */
    height: 50px; /* Circle size */
    background-color: #2C2C2C; /* Darker circle background for the compass */
    border-radius: 50%; /* Make it a circle */
    /* Optional: Add a subtle border if needed, like in the app */
    /* border: 1px solid #00DDAA; */
}

.logo h1 {
    font-size: 2.2em; /* Slightly adjusted size */
    margin: 0;
    color: #FFFFFF;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.subtitle {
    font-size: 1em;
    color: #A0A0A0;
    margin-top: 8px;
}

h2 { /* "Launching Soon" */
    font-size: 2em; /* Adjusted size */
    color: #EAEAEA; /* Slightly brighter */
    margin-top: 0;
    margin-bottom: 15px; /* Reduced to bring closer to CTA */
    font-weight: 500; /* Slightly less bold than CTA headline */
    letter-spacing: 0.5px;
}

.hero p { /* This was a general p, now less relevant as CTA has its own */
    font-size: 1em; /* Slightly adjusted size */
    line-height: 1.6;
    margin-bottom: 30px;
    color: #B0B0B0; /* Lighter grey for paragraph text */
}

/* .highlight-deal styles REMOVED */

.cta-section {
    margin-bottom: 35px; /* Adjusted */
    padding: 0; 
}

.cta-headline {
    font-size: 1.7em; /* Slightly larger */
    color: #00DDAA;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 15px; /* Increased spacing to subtext */
}

.cta-subtext {
    font-size: 1em;
    color: #C8C8C8; /* Brighter for more emphasis */
    line-height: 1.6;
    margin-bottom: 0; 
    font-weight: 400; /* Normal weight, but color gives emphasis */
}

#registration-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#registration-form input[type="email"] {
    background-color: #252525; /* Darker input background */
    color: #E0E0E0;
    border: 1px solid #444444; /* Slightly more visible border */
    padding: 15px;
    font-size: 1em;
    border-radius: 8px;
    text-align: center;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#registration-form input[type="email"]:focus {
    outline: none;
    border-color: #00DDAA;
    box-shadow: 0 0 10px rgba(0, 221, 170, 0.3);
}

#registration-form input[type="email"]::placeholder {
    color: #757575;
}

#registration-form button[type="submit"] {
    background-color: #00DDAA;
    color: #121212;
    border: none;
    padding: 15px;
    font-size: 1.1em;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.1s ease;
}

#registration-form button[type="submit"]:hover {
    background-color: #00C69B; /* Slightly adjusted hover */
}

#registration-form button[type="submit"]:active {
    transform: translateY(1px);
}

#form-message {
    margin-top: 20px;
    font-size: 0.9em;
    min-height: 1.2em;
}

footer {
    margin-top: 50px;
    font-size: 0.9em;
    color: #757575;
}

/* Responsive adjustments */
@media (min-width: 500px) {
    #registration-form {
        flex-direction: row;
    }
    #registration-form input[type="email"] {
        flex-grow: 1;
        text-align: left;
    }
    #registration-form button[type="submit"] {
        min-width: 120px;
    }
}

/* Additional Mobile Responsive Styles */
@media (max-width: 480px) {
    .container {
        padding: 25px 20px; /* Reduced padding for small screens */
        margin: 15px; /* Add some margin to prevent touching screen edges */
        max-width: 100%; /* Allow it to use more of the screen width */
    }

    .logo {
        flex-direction: column; /* Stack logo icon and text vertically */
        margin-bottom: 15px;
    }

    .compass-logo-icon {
        font-size: 2.2em; /* Slightly smaller logo icon */
        width: 45px;
        height: 45px;
        margin-right: 0; /* Remove right margin when stacked */
        margin-bottom: 8px; /* Add bottom margin when stacked */
    }

    .logo h1 {
        font-size: 1.8em; /* Reduced font size for title */
    }

    .subtitle {
        font-size: 0.9em;
    }

    h2 { /* "Launching Soon" */
        font-size: 1.6em; /* Reduced font size */
        margin-bottom: 10px;
    }

    .cta-headline {
        font-size: 1.4em; /* Reduced font size */
        margin-bottom: 10px;
    }

    .cta-subtext {
        font-size: 0.9em; /* Slightly smaller for balance */
    }

    #registration-form input[type="email"],
    #registration-form button[type="submit"] {
        font-size: 0.95em; /* Slightly smaller text in form elements */
        padding: 12px; /* Adjust padding for smaller tap targets if needed */
    }

    footer {
        font-size: 0.8em;
        margin-top: 30px;
    }
} 