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

html {
    background: linear-gradient(135deg, #000000 0%, #1a1a2e 40%);
    min-height: 100vh;
}

body {
    background: linear-gradient(135deg, #000000 0%, #1a1a2e 40%);
    background-color: #000000;
    color: #FFFFFF;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 20px;
    position: relative;
}

body::after {
    content: '';
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url('hero.svg');
    background-size: contain;
    background-position: bottom center;
    background-repeat: no-repeat;
    opacity: 0.1;
    z-index: -1;
    pointer-events: none;
}

.container {
    text-align: left;
    max-width: 800px;
    width: 100%;
    border-radius: 12px;
    padding: 40px 20px;
    margin-left: 0;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #FFFFFF;
}

.statement {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    color: #FFFFFF;
}

.statement:last-of-type {
    margin-bottom: 2rem;
}

.statement a.join-link {
    color: #FFFFFF;
    text-decoration: underline;
    transition: opacity 0.2s ease;
}

.statement a.join-link:hover {
    opacity: 0.7;
}

.links {
    display: flex;
    justify-content: flex-start;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.links a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    transition: opacity 0.2s ease;
}

.links a:hover {
    opacity: 0.7;
}

@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }
    
    .statement {
        font-size: 1rem;
    }
    
    .links {
        flex-direction: column;
        gap: 1rem;
    }
}
