* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.video-background video {
    min-width: 100%;
    min-height: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.video-background video.loaded {
    opacity: 1;
}

.content {
    text-align: center;
    color: #fff;
    padding: 20px;
    border-radius: 15px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.center-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.logo {
    text-align: center;
}

.logo img {
    max-width: 700px;
    height: auto;
}

h1 {
    font-size: 1.8rem;
    /*text-transform: uppercase;*/
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: auto;
    margin-bottom: 2rem;
}

.social-link {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    font-size: 1.0rem;
    transition: transform 0.3s ease, color 0.3s ease;
    font-weight: 400;
}

.social-link i {
    font-size: 1.5rem;
}

.social-link.instagram i {
    background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.social-link:hover {
    transform: translateY(-2px);
    /* color: #007bff; */
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.5rem;
    }
    
    .logo img {
        max-width: 300px;
        margin-top: 27rem;
    }
    
    .social-link {
        font-size: 0.9rem;
    }
    
    .social-links {
        gap: 0.2rem;
    }
    
    .social-link i {
        font-size: 1.3rem;
    }

    .video-background video {
        height: 100vh;
        width: 100vw;
        object-fit: cover;
        position: fixed;
    }
}
