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

body {
    font-family: Arial, sans-serif;
    overflow: hidden;
    height: 100vh;
    background: #ffffff;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.background-animation svg {
    width: 100%;
    height: 100%;
}

.logo-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    max-width: 400px;
    width: 80%;
    height: auto;
}

.content-overlay {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.content-overlay h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.content-overlay p {
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .logo-overlay {
        max-width: 250px;
    }

    .content-overlay h1 {
        font-size: 2rem;
    }

    .content-overlay p {
        font-size: 1rem;
    }
}

/* Social Media Icons */
.social-media-icons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 20;
}

.social-media-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #990000;
    border-radius: 50%;
    padding: 8px;
}

.social-media-icons a:hover {
    transform: scale(1.1);
}

.social-media-icons img {
    width: 100%;
    height: 100%;
    filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
    .social-media-icons {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }

    .social-media-icons a {
        width: 30px;
        height: 30px;
    }
}
