/* Hintergrund mit Techno-Vibe */
body {
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364); /* Dark-Mode Blau/Grau */
    font-family: "Courier New", Courier, monospace;
    color: #00ffcc;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Container */
.container {
    padding: 20px;
}

/* Content-Box mit Terminal-Look */
.content-box {
    display: flex;
    background-color: #111;
    border: 3px solid #00ffcc;
    box-shadow: 0 0 20px #00ffcc88;
    border-radius: 8px;
    padding: 20px;
    max-width: 850px;
    width: 100%;
}

/* Linke Seite – Video */
.left {
    flex: 1;
    margin-right: 20px;
    text-align: center;
}

.left iframe {
    width: 100%;
    height: 200px;
    border: 2px solid #00ffcc;
    background-color: #000;
}

.left a {
    display: inline-block;
    margin-top: 10px;
    background-color: #222;
    padding: 5px 10px;
    border: 1px solid #00ffcc;
    color: #00ffcc;
    text-decoration: none;
    font-weight: bold;
}

.left a:hover {
    background-color: #00ffcc;
    color: #000;
}

/* Rechte Seite – About Me */
.right {
    flex: 1;
    background-color: #1a1a1a;
    padding: 15px;
    border: 1px dashed #00ffcc;
}

.right h1 {
    font-size: 1.6em;
    color: #00ffcc;
    border-bottom: 1px solid #00ffcc;
    margin-bottom: 10px;
    margin-top: 0px;
}

.right p {
    color: #cccccc;
    line-height: 1.4;
    margin-bottom: 10px;
}

.patreon-button {
    display: inline-block;
    background-color: #ff424d;
    color: #fff;
    padding: 6px 12px;
    border: 2px solid #fff;
    font-weight: bold;
    text-decoration: none;
    margin-top: 10px;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 0 8px #ff424d88;
}

.patreon-button:hover {
    background-color: #fff;
    color: #ff424d;
    border-color: #ff424d;
    box-shadow: 0 0 12px #ff424d;
}




/* ladescreen: */
