@import url('https://fonts.googleapis.com/css2?family=Argentum+Sans:wght@400;600;800&display=swap');

* { box-sizing: border-box; }

img {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    pointer-events: none;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    margin: 0;
    background: #000;
    color: white;
    font-family: 'Argentum Sans', sans-serif;
    overflow: hidden;
}

@media (prefers-reduced-motion: no-preference) {
    .fade-wrapper { animation: fadeIn 2s ease-in; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-top: -150px;
}

.logo {
    width: 550px;
    margin-bottom: 60px;
    filter: drop-shadow(0px 10px 20px rgba(0, 0, 0, 0.5));
    max-width: 90vw;
}

.liquid-glass {
    position: relative;
    display: inline-block;
    padding: 25px 80px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
    outline: none;
}

.liquid-glass:focus-visible {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.6);
}

.liquid-glass:hover {
    background: rgba(0, 0, 0, 0.5);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
}

.liquid-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: 0.7s;
    border-radius: inherit;
}

.liquid-glass:hover::before {
    left: 150%;
}

@media (hover: none) {
    body { cursor: auto; }
    .liquid-glass { cursor: pointer; }
}