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

@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@900&display=swap');

body {
    font-family: 'Ubuntu', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, sans-serif;
    background-color: #F4F1E7;
    color: #191C1C;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 10px 20px;
    min-height: 100vh;
}

header {
    text-align: center;
    margin-bottom: 20px;
    padding-top: 0px;
}

.logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0px;
}

.logo-image {
    max-height: 160px;
    width: auto;
    display: block;
}

.logo h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: #191C1C;
    margin: 0;
    margin-top: -8px;
    letter-spacing: -0.01em;
}

.video-section {
    text-align: center;
    margin-bottom: 50px;
    margin-top: -10px;
    background-color: rgba(25, 28, 28, 0.05);
    border-radius: 8px;
    padding: 10px;
    overflow: visible;
}

.video-section video {
    border-radius: 6px;
    width: 100%;
    height: auto;
    box-shadow: 0 4px 12px rgba(25, 28, 28, 0.1);
    transform: scale(1.15);
}


.hero {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    padding: 40px 0;
}


.hero h2 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 32px;
    letter-spacing: -0.04em;
    line-height: 1.05;
    color: #191C1C;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 32px;
    text-shadow: 0 1px 3px rgba(25, 28, 28, 0.1);
}

.hero p {
    font-size: 1.3rem;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.4;
}

.signup {
    text-align: center;
    max-width: 600px;
    margin: 30px auto 0;
}

.signup h3 {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 30px;
    opacity: 0.9;
}

#waitlist-form {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

#email {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(25, 28, 28, 0.2);
    background-color: #FFFFFF;
    color: #191C1C;
    font-size: 1rem;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.2s ease;
}

#email:focus {
    border-color: #191C1C;
}

#email::placeholder {
    color: rgba(25, 28, 28, 0.5);
}

button {
    padding: 12px 24px;
    background-color: #191C1C;
    color: #F4F1E7;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    transform: translateY(0);
}

button:hover {
    background-color: #2a2f2f;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(25, 28, 28, 0.15);
}

button:active {
    background-color: #0f1212;
}

.form-message {
    font-size: 0.9rem;
    opacity: 0.8;
    min-height: 20px;
}

.form-message.success {
    color: #28a745;
}

.form-message.error {
    color: #dc3545;
}


.discord-section {
    margin-top: 25px;
    text-align: center;
}

.discord-text {
    font-size: 1.1rem;
    color: rgba(25, 28, 28, 0.7);
    margin-bottom: 15px;
    font-weight: 400;
}

.discord-inline {
    color: #5865F2 !important;
    text-decoration: none !important;
    font-weight: 500;
    border-bottom: 1px solid #5865F2;
    transition: all 0.2s ease;
}

.discord-inline:hover {
    color: #4752C4;
    border-bottom-color: #4752C4;
}


.disclaimer {
    font-size: 0.85rem;
    opacity: 0.6;
    margin-top: 0;
    font-style: italic;
}

footer {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 20px;
}

.privacy-link {
    font-size: 0.8rem;
    color: rgba(25, 28, 28, 0.5);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.2s ease;
}

.privacy-link:hover {
    color: rgba(25, 28, 28, 0.7);
    border-bottom-color: rgba(25, 28, 28, 0.3);
}

.privacy-policy {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 40px 0;
}

.privacy-policy h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #191C1C;
}

.privacy-policy p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.8;
}

.privacy-policy a {
    color: #5865F2;
    text-decoration: none;
    border-bottom: 1px solid #5865F2;
}

.privacy-policy a:hover {
    color: #4752C4;
    border-bottom-color: #4752C4;
}

.back-link {
    display: inline-block;
    margin-top: 40px;
    font-size: 0.95rem;
    color: rgba(25, 28, 28, 0.6);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.2s ease;
}

.back-link:hover {
    color: rgba(25, 28, 28, 0.8);
    border-bottom-color: rgba(25, 28, 28, 0.3);
}

@media (max-width: 768px) {
    .container {
        padding: 10px 20px;
    }
    
    .logo h1 {
        font-size: 2rem;
    }
    
    .logo-image {
        max-height: 120px;
    }
    
    .hero h2 {
        font-size: 2.5rem;
        line-height: 1.1;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    #waitlist-form {
        flex-direction: column;
        gap: 15px;
    }
    
    #email {
        width: 100%;
    }
    
    button {
        width: 100%;
        padding: 14px 24px;
    }
    
    .discord-text {
        font-size: 1rem;
    }
    
    .video-section {
        padding: 15px;
        margin-bottom: 40px;
    }
    
    .video-section video {
        transform: scale(1.1);
    }
    
    .signup {
        max-width: 100%;
    }
}