/* Allgemeines Styling */
body {
    background: url("") no-repeat center center fixed;
    background-size: cover;
    font-family: 'Press Start 2P', cursive;
    color: white;
    text-align: center;
    margin: 0;
    padding: 20px;
}

/* Überschriften */
h1, h2 {
    color: white;
    margin-top: 30px;
    font-size: 24px; /* größer */
}

/* Absatz-Text */
p {
    font-size: 16px; /* deutlich größer */
    line-height: 1.5;
}

/* Boxen mit Glow */
.box {
    background-color: rgba(0, 0, 0, 0.85);
    padding: 20px;
    margin: 20px auto;
    width: 85%;
    border-radius: 0;
    color: white;
    line-height: 1.5;
    box-shadow: 0 0 20px rgba(128, 128, 128, 1); /* Grau */
    text-align: left;
    position: relative;
}

/* Bild-Box: Bild max-width 100% */
.image-box .main-image {
    max-width: 100%;
    height: auto;
    margin: 10px auto;
    display: block;
    box-shadow: 0 0 20px rgba(128, 128, 128, 1); /* Grau */
}

/* Hauptbild */
.main-image {
    max-width: 100%;
    height: auto;
    margin: 10px auto;
    display: block;
    box-shadow: 0 0 20px rgba(128, 128, 128, 1); /* Grau */
}

/* Links */
a {
    color: #ffffff;
    text-decoration: underline;
    transition: color 0.2s ease;
    font-size: 16px; /* größer */
}

a:hover {
    color: magenta;
}

/* Video Container */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    margin: 20px auto;
}

/* iFrame */
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    box-shadow: 0 0 10px magenta;
}

/* Zurück-Button */
.back-button {
    display: inline-block;
    padding: 12px 24px;
    background: magenta;
    color: black;
    font-size: 16px; /* größer */
    border-radius: 4px;
    text-decoration: none;
    box-shadow: 0 0 10px white;
    transition: all 0.3s ease;
}

.back-button:hover {
    background: white;
    color: magenta;
    box-shadow: 0 0 20px magenta;
}

/* Info-Button */
.info-button {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: #800080;
    color: white;
    border: none;
    border-radius: 50%;
    width: 35px;  /* etwas größer */
    height: 35px; /* etwas größer */
    font-weight: bold;
    font-size: 20px; /* größer */
    cursor: pointer;
    box-shadow: 0 0 8px rgba(128, 0, 128, 0.7);
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
    z-index: 10;
}

.info-button:hover {
    background: #b366ff;
    box-shadow: 0 0 12px #b366ff, 0 0 20px #d299ff;
    transform: scale(1.1);
}

/* Popup */
.info-popup {
    position: fixed;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.9);
    color: white;
    padding: 25px 35px;
    width: 90%;
    max-width: 450px;
    border-radius: 8px;
    box-shadow: 0 0 15px magenta;
    display: none;
    z-index: 1000;
    text-align: left;
    font-size: 16px; /* größer */
    line-height: 1.5;
}

/* Sichtbar */
.info-popup.active {
    display: block;
}

/* Schließen-Button */
.close-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 30px; /* größer */
    color: white;
    cursor: pointer;
}

/* Responsive */
@media screen and (max-width: 600px) {
    body {
        padding: 10px;
    }

    .box {
        width: 95%;
        padding: 15px;
    }

    .main-image {
        max-width: 100%;
    }

    p, h2 {
        font-size: 14px;
    }

    .back-button {
        font-size: 14px;
        padding: 10px 20px;
    }

    .info-button {
        width: 30px;
        height: 30px;
        font-size: 18px;
    }

    .info-popup {
        width: 95%;
        padding: 20px 25px;
        font-size: 14px;
    }
}
