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

body, html {
    height: 100%;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #000;
}

.hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000; /* Fallback background */
}

#bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* This makes it behave like a background image */
    z-index: 0;
    pointer-events: none; /* Allows clicks to pass through to links */
}

.overlay {
    position: relative;
    z-index: 10; /* Ensures content is definitely above video */
    text-align: center;
}

.main-logo {
    width: 300px; /* Adjust size as needed */
    height: auto;
    margin-bottom: 2rem;
}

/* ... keep previous reset and hero styles ... */

.social-links {
    display: flex;
    flex-direction: column; 
    align-items: center;
    gap: 15px; 
    margin-top: 10px;
}

.social-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    transition: opacity 0.3s ease; /* Transition only the opacity */
}

.social-links a:hover {
    opacity: 0.6; /* Simple darkening effect */
}

/* Responsive Scaling for Mobile */
@media (max-width: 480px) {
    .main-logo {
        width: 220px; /* Smaller logo for mobile */
    }
    
    .social-links a {
        font-size: 0.8rem;
        letter-spacing: 1.5px;
    }
}
