    body {
        margin: 0;
        background: #0f0f0f;
        display: flex;
        justify-content: center;
        align-items: center; /* ---> Zentriert alles vertikal */
        height: 100vh;
        font-family: Arial, sans-serif;
    }

    .container {
        display: flex;
        gap: 20px;
        justify-content: center; /* ---> Zentriert Elemente im Container */
        align-items: center;
        flex-wrap: wrap;
    }

    /* --- Videofenster (1280x720) --- */
    .video-wrapper {
        width: 1280px;
        height: 720px;
        padding: 0px;
        border-radius: 2px;
        background: rgba(20, 20, 20, 0.7);
        box-shadow: 0 0 15px rgba(0,0,0,0.5);
        display: flex;
        justify-content: center;
        align-items: center;
    }

    video {
        width: 100%;
        height: 100%;
        border-radius: 2px;
        background: black;
    }

    /* --- Chatfenster --- */
    .chat-wrapper {
        width: 300px;
        height: 720px;
        padding: 0px;
        border-radius: 2px;
        background: rgba(20, 20, 20, 0.7);
        box-shadow: 0 0 15px rgba(0,0,0,0.5);
        display: flex;
        flex-direction: column;
    }

    .chat-title {
        width: 100%;
        padding: 8px 0;
        text-align: center;
        font-size: 18px;
        font-weight: bold;
        color: #ffffff;
        background: #0b0b0c;
        border-radius: 8px;
        margin-bottom: 10px;
        box-shadow: 0 0 8px rgba(0,0,0,0.4);
    }

    iframe {
        width: 100%;
        height: 100%;
        border: none;
        border-radius: 8px;
    }
	
	footer {
		font-family: "open sans", sans-serif;
		position: fixed;
		left: 0;
		bottom: 0;
		width: 100%;
		background-color: rgba(0, 0, 0, 0.45);
		color: white;
		text-align: center;
		font-size: 15px;
		padding: 3px 12px;
	}

    /* Smartphone Ansicht */
    @media (max-width: 1400px) {
        .video-wrapper {
            width: 100%;
            height: auto;
            aspect-ratio: 16 / 9;
        }

        .chat-wrapper {
            width: 100%;
            height: 500px;
        }

        body {
            height: auto;
            padding: 20px;
            align-items: flex-start;
        }
    }