@font-face {
    font-family: 'din1451stdw1g_mittelschrift';
    src: url('assets/din1451stdw1g_mittelschrift.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

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

body {
    font-family: 'din1451stdw1g_mittelschrift', monospace;
    background-color: #000;
    min-height: 100vh;
    color: white;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
}

#bg-video-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

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

.main-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
}

.content-box {
    max-width: 1200px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    padding: 40px;
    border: 2px solid #ff751a;
}

h1 {
    color: #ff751a;
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    text-align: center;
    border-bottom: 2px solid rgba(255, 117, 26, 0.5);
    padding-bottom: 20px;
}

.message {
    line-height: 1.8;
    font-size: 1.1rem;
}

.message p {
    margin-bottom: 20px;
}

.message p:last-child {
    margin-bottom: 0;
}

.message strong {
    color: #ff751a;
}

.message a {
    color: #ff751a;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.message a:hover {
    color: #ffaa66;
}

.footer {
    text-align: center;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    position: relative;
    z-index: 2;
    font-size: 0.9rem;
}

.footer a {
    color: #ff751a;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .content-box {
        padding: 25px;
        margin: 20px;
    }

    h1 {
        font-size: 1.8rem;
    }

    .message {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .content-box {
        padding: 20px;
        margin: 10px;
    }

    h1 {
        font-size: 1.5rem;
    }
}
