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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #000000;
    color: #ffffff;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

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

.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}

.logo {
    position: fixed;
    top: 2rem;
    left: 2rem;
    font-size: 1.25rem;
    font-weight: 400;
    color: #ffffff;
    z-index: 2;
}

.container {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.text-block {
    max-width: 800px;
    width: 100%;
    animation: fadeIn 1s ease-in;
}

.text-content {
    font-size: 1.25rem;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.8;
    text-align: center;
    margin: 0;
    margin-bottom: 4rem;
}

.contact {
    font-size: 1.25rem;
    font-weight: 400;
    color: #ffffff;
    text-align: center;
    margin: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
    }
    
    .text-content {
        font-size: 1.1rem;
    }
    
    .contact {
        font-size: 1.1rem;
    }
    
    .logo {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .text-content {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .contact {
        font-size: 1rem;
    }
    
    .logo {
        font-size: 1rem;
    }
}

