:root {
    --primary-bg: #000;
    --text-white: #ffffff;
    --font-main: 'Outfit', sans-serif;
    --overlay-color: rgba(0, 0, 0, 0.4);
}

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

body,
html {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    font-family: var(--font-main);
    background-color: transparent;
}

.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: var(--primary-bg);
}

.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-color);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: -1;
}

.main-header {
    position: absolute;
    top: 2rem;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 10;
}

.title {
    color: #fff;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInDown 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: color 1s ease;
    /* Smooth theme switch */
}

@keyframes fadeInDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: 100vh;
    padding: 8rem 2rem 2rem 2rem;
}

.cards-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    width: 100%;
}

.info-card {
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    /* Glassmorphism effect */
    -webkit-backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 8px;
    width: 100%;
    /* Ensure both cards are the same width */
    max-width: 600px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

.info-card p {
    color: #000;
    font-size: 1.5rem;
    line-height: 1.6;
    font-weight: 300;
    transition: color 0.5s ease;
}

/* Theme overrides removed - all text is now black */

.social-card {
    padding: 1.5rem 3rem;
    animation-delay: 0.6s;
}

.social-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.social-links a {
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    opacity: 0.7;
    color: inherit;
    /* Ensure they scale with theme */
}

.social-links a:hover {
    opacity: 1;
    transform: scale(1.1);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .main-header {
        top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .main-header {
        top: 1rem;
    }
}