body {
    background-color: #0D0D0D;
    color: #E0E0E0;
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
}
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
    max-width: 1000px;
    margin: 0 auto;
}
header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}
.logo {
    height: 90px;
}
.intro {
    max-width: 700px;
    text-align: left;
    margin-bottom: 40px;
}
.features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.feature {
    background-color: #1A1A1A;
    padding: 15px;
    border-radius: 8px;
    width: 200px;
}
.waitlist {
    background-color: #141414;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
}
.waitlist form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}
.waitlist input {
    padding: 10px;
    border: none;
    border-radius: 5px;
}
.waitlist button {
    background-color: #FF6A00;
    border: none;
    color: white;
    padding: 12px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}
.waitlist button:hover {
    background-color: #ff8533;
}
.small-text {
    font-size: 12px;
    color: #aaa;
    margin-top: 15px;
}
.launch-date {
    margin-top: 10px;
    font-size: 14px;
    color: #ccc;
}
