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

body {
    font-family: 'DM Sans', sans-serif;
    color: #ffffff;
    background-color: #000;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Background video styles */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

#bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Deeply dimmed background */
    backdrop-filter: blur(2px); /* Subtle blur for premium feel */
}

/* Content styles */
.content {
    z-index: 10;
    text-align: center;
    padding: 2rem;
    animation: fadeIn 1.2s ease-out;
}

.name {
    font-size: 6rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
    background: linear-gradient(0deg, #ffffff55 0%, #ffffff00 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUpFade 0.8s forwards 0.2s;
}

.title {
    font-size: 1.25rem;
    font-weight: 400;
    color: #ffffff66;
    margin-bottom: 2.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUpFade 0.8s forwards 0.4s;
}

.highlight {
    color: #ffffff77;
    font-weight: 500;
    transition: color 0.3s ease;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUpFade 0.8s forwards 0.6s;
}

.social-links a {
    color: #ffffff88;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-links a:hover {
    color: #ffffff;
    transform: scale(1.1) translateY(-5px);
}

.social-links svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .name {
        font-size: 3rem;
    }
    
    .title {
        font-size: 1rem;
    }
    
    .social-links {
        gap: 1.5rem;
    }
}
