* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #000;
    color: white;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-bg {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -2;
}

#bg-video {
    width: 100%; height: 100%;
    object-fit: cover;
}

.overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Затемнение видео для читаемости текста */
    z-index: -1;
}

.content {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 5px;
}

h1 { font-size: 4rem; margin-bottom: 10px; text-shadow: 0 0 20px rgba(255,255,255,0.5); }
p { font-size: 1rem; opacity: 0.7; margin-bottom: 30px; }

.links a {
    color: white;
    text-decoration: none;
    border: 1px solid white;
    padding: 10px 20px;
    margin: 0 10px;
    transition: 0.3s;
    font-size: 0.8rem;
}

.links a:hover {
    background: white;
    color: black;
}