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

body {
    font-family: "JetBrains Mono", monospace;
    background-color: #f5f5f5;
    color: #1d1d1f;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
    display: flex;
    align-items: left;
    padding: 80px 40px;
}

.spacer {
    height: 140px;
}

.container {
    max-width: 600px;
    margin: 0 auto;
}

.content {
    text-align: left;
}

.content p {
    font-size: 14px;
    line-height: 1.4;
    color: #212121;
    margin-bottom: 24px;
    font-weight: 400;
}

.content h2 {
    font-size: 24px;
    font-weight: 1200;
    color: #202020;
}

.highlight {
    background-color: #ffe683;
    padding: 4 4px;
    color: #000000;
}

.textcolor {
    color: #000000;
    font-weight: 1000;
    opacity: 1;
}

.ramble{
text-align: center;
}

.ramble-hover {
    position: relative;
    cursor: default;
    display: inline-block;
}

body.ramble-active::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(245, 245, 245, 0.85);
    z-index: 5;
    pointer-events: none;
}

body.ramble-active .ramble-hover {
    position: relative;
    z-index: 10;
}

.typing-container {
    position: fixed;
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    pointer-events: none;
    white-space: nowrap;
    z-index: 9999;
    opacity: 1;
    transition: opacity 1s ease-out;
}

.typing-container.fade-out {
    opacity: 0;
}

.typing-cursor {
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.dots .dot {
    opacity: 0;
    animation: dot-appear 2.4s infinite;
}

.dot-1 { animation-delay: 0s !important; }
.dot-2 { animation-delay: 0.5s !important; }
.dot-3 { animation-delay: 1s !important; }

@keyframes dot-appear {
    0% { opacity: 0; }
    10%, 60% { opacity: 1; }
    80%, 100% { opacity: 0; }
}

.waitlist-form {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.waitlist-form input {
    font-family: "JetBrains Mono", monospace;
    font-size: 14px;
    padding: 12px 16px;
    border: 1px solid #999;
    border-radius: 60px;
    background-color: #f7f7f7;
    color: #333;
    width: 300px;
}

.waitlist-form input::placeholder {
    color: #999;
}

.waitlist-form input:hover {
    border-color: #999;
}

.waitlist-form input:focus {
    outline: none;
    border-color: #333;
}

.waitlist-form button {
    font-family: "JetBrains Mono", monospace;
    font-size: 14px;
    padding: 12px 20px;
    background-color: #f0f0f0;
    color: rgb(21, 21, 21);
    border: none;
    border-radius: 60px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.waitlist-form button:hover {
    background-color: #f7f2fc;
}

.waitlist-form button:disabled {
    background-color: #999;
    cursor: not-allowed;
}

.form-message {
    font-size: 14px;
    margin-top: 12px;
}

.platform {
    margin-top: 20px;
    font-size: 14px;
    color: #888;
}

footer {
    text-align: center;
    padding: 24px 40px;
    color: #888;
    font-size: 13px;
}

footer a {
    color: #888;
    text-decoration: none;
}

footer a:hover {
    color: #333;
}

/* Privacy Page Styles */
.privacy-container {
    text-align: left;
    max-width: 600px;
    font-family: "Inter", sans-serif;
}

.back-link {
    display: inline-block;
    color: #333;
    font-family: "JetBrains Mono", monospace;
    text-decoration: none;
    font-size: 15px;
    margin-bottom: 32px;
}

.back-link:hover {
    text-decoration: underline;
}

.privacy-container h1 {
    font-size: 36px;
    margin-bottom: 8px;
}

.last-updated {
    color: #888;
    font-size: 14px;
    margin-bottom: 40px;
}

.privacy-content section {
    margin-bottom: 32px;
}

.privacy-content h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1d1d1f;
}

.privacy-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #424245;
    margin-bottom: 12px;
}

.privacy-content code {
    display: block;
    background-color: #e8e8e8;
    padding: 12px 16px;
    border-radius: 8px;
    font-family: "SF Mono", Monaco, monospace;
    font-size: 14px;
    margin: 12px 0;
    color: #1d1d1f;
}

.privacy-content strong {
    color: #1d1d1f;
}

@media (max-width: 600px) {
    main {
        padding: 40px 20px;
    }

    .content h2 {
        margin-top: 40%;
        margin-bottom: 20%;
        font-size: 18px;
    }

    .content p {
        font-size: 14px;
        margin-bottom: 18px;
    }

    .spacer {
        height: 50px;
    }

    .waitlist-form {
        flex-direction: column;
        gap: 12px;
    }

    .waitlist-form input {
        width: 100%;
    }

    .waitlist-form button {
        width: 100%;
    }

    footer {
        padding: 20px;
    }

    .privacy-container h1 {
        font-size: 28px;
    }

    .privacy-content h2 {
        font-size: 18px;
    }

    .privacy-content p {
        font-size: 14px;
    }
}
