.knewave-regular {
    font-family: "Knewave", serif;
    font-weight: 400;
    font-style: normal;
}

.rubik-glitch-regular {
    font-family: "Rubik Glitch", serif;
    font-weight: 400;
    font-style: normal;
}

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

/* Body Styling */
body {
    background-color: #0a0a0a;
    color: #ffffff;
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    overflow: hidden;
}

/* Video Background Styles */
#background-video {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    object-fit: cover;
}

/* Dark Overlay */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 0;
}

/* Container Styling */
.container {
    position: relative;
    z-index: 1;
    max-width: 600px;
    padding: 20px;
}

/* Logo Styling */
.logo {
    font-size: 7rem;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 4px;
    line-height: 1.1;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px #fff;
    }

    to {
        text-shadow: 0 0 20px #fff, 0 0 30px #fff;
    }
}

/* Heading Styling */
h1 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Paragraph Styling */
p {
    font-size: 1rem;
    color: #b0b0b0;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Social Links Styling */
.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 2rem;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        font-size: 7rem;
    }

    h1 {
        font-size: 1.5rem;
    }

    p {
        font-size: 0.9rem;
    }

    .social-links a {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 7rem;
    }

    h1 {
        font-size: 1.3rem;
    }

    p {
        font-size: 0.8rem;
    }

    .social-links a {
        font-size: 1.5rem;
    }
}