
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    color: white;
    height: 100vh;
    overflow: hidden;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.video-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.connect-content h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.description {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-container {
    background-color: black;
    border-radius: 50px;
    padding: 1rem 2rem;
    display: inline-block;
    margin-bottom: 2rem;
}

.logo {
    height: 40px;
    width: auto;
    display: block;
}

.connect-main {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 80px);
    padding: 2rem;
}

.connect-content {
    text-align: center;
    max-width: 800px;
}

.text-xl {
    display: block;
    font-size: 1rem;
    line-height: 1.5rem;
    margin-bottom: 1rem;
}

.lg\:text-6xl {
    display: block;
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.get-started-button {
    background-color: rgb(212 160 255);
    color: black;
    padding: 1rem 2rem;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    font-weight: 500;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.terms {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.5;
}

.terms a {
    color: white;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .lg\:text-6xl {
        font-size: 2.5rem;
    }
    
    .description {
        font-size: 1rem;
    }
}
