* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Space Grotesk' !important;
}

body,
html {
    height: 100%;
    overflow: hidden;
}

/* Background Video */
.bg-video {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: -2;
}

/* Dark Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: radial-gradient(circle at top, #0f2027b5, #000000a5);
    z-index: -1;
}

/* Content */
.content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    animation: fadeUp 1.5s ease forwards;
}

.logo {
    width: 200px;
    margin-bottom: 20px;
}

.content h1 {
    font-size: 72px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    font-weight: 900;
    margin-bottom: 10px;
}

.content p {
    font-size: 28px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    font-weight: 900;
}

/* Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 600px) {
    .content h1 {
        font-size: 2rem;
    }

    .logo {
        width: 100px;
    }
}