@font-face {
    font-family: 'Dune Rise';
    src: url('public/fonts/Dune_Rise.otf') format('opentype');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

body {
    color: white;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    background-color: black;
}

.background video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0.5;
    mix-blend-mode: normal;
}

header {
    width: 100%;
    padding: 2rem;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3;
}

.logo {
    max-width: 200px;
    margin-left: 0rem;
}

.logo img {
    width: 100%;
    height: auto;
}

main {
    position: relative;
    z-index: 2;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

@keyframes glow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.7),
                     0 0 40px rgba(255, 255, 255, 0.3),
                     0 0 60px rgba(255, 255, 255, 0.2);
        opacity: 0.8;
    }
    50% {
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.9),
                     0 0 60px rgba(255, 255, 255, 0.4),
                     0 0 80px rgba(255, 255, 255, 0.3);
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

h1 {
    font-family: 'Dune Rise', sans-serif;
    font-size: 3rem;
    letter-spacing: 1em;
    line-height: 2;
    font-weight: normal;
    text-align: center;
    padding: 0 2rem;
    max-width: 100%;
    animation: glow 3s ease-in-out infinite,
               float 6s ease-in-out infinite;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.5rem;
    }
    
    .logo {
        max-width: 120px;
        margin-left: 1rem;
    }
}
