body {
    background-color: #f0f0f0;
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
}

.header {
    background-color: #4CAF50;
    color: white;
    text-align: center;
    padding: 10px 0;
}

.main-content {
    padding: 15px;
}

.button {
    background-color: #008CBA;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #005f73;
}

.animation {
    animation-duration: 0.5s;
    animation-fill-mode: both;
}

@media (max-width: 600px) {
    .header {
        font-size: 1.5em;
    }

    .main-content {
        font-size: 1em;
    }

    .button {
        width: 100%;
        padding: 15px;
    }
}

/* Mobile CSS Variables */
:root {
    /* Background */
    --bg-video-loop: 1;
    --bg-video-speed: 1;
    
    /* Space */
    --space-start-x: -50%;
    --space-start-y: 20%;
    --space-end-x: 120%;
    --space-end-y: 30%;
    --space-size: 25%;
    --space-delay: 0s;
    --space-duration: 6s;
    --space-z-index: 10;
    
    /* Parasuite */
    --parasuite-start-x: 120%;
    --parasuite-start-y: 45%;
    --parasuite-end-x: -50%;
    --parasuite-end-y: 45%;
    --parasuite-size: 40%;
    --parasuite-delay: 4s;
    --parasuite-duration: 5s;
    --parasuite-z-index: 10;
    
    /* Text1 */
    --text1-start-x: 100%;
    --text1-start-y: 80%;
    --text1-end-x: 50%;
    --text1-end-y: 66%;
    --text1-delay: 8s;
    --text1-duration: 3s;
    --text1-font-size: 3%;
    --text1-color: red;
    --text1-font-family: Arial, sans-serif;
    --text1-align: right;
    --text1-z-index: 20;
    
    /* Text2 */
    --text2-start-x: -20%;
    --text2-start-y: 89%;
    --text2-end-x: 80%;
    --text2-end-y: 89%;
    --text2-delay: 6s;
    --text2-duration: 2s;
    --text2-font-size: 3%;
    --text2-color: rgb(0, 102, 255);
    --text2-font-family: Arial, sans-serif;
    --text2-align: right;
    --text2-z-index: 20;
    
    /* Background Box */
    --box-x: 50%;
    --box-y: 84%;
    --box-width: 89%;
    --box-height: 19%;
    --box-radius: 10px;
    --box-delay: 1s;
    --box-duration: 17s;
    --box-opacity-start: 0;
    --box-opacity-end: 0.5;
    --box-color: rgb(204, 234, 215);
    --box-z-index: 15;
}

/* Mobile spezifische Styles - entfernt, da JavaScript die Animation steuert */
.mobile-mode #space {
    position: absolute;
    width: auto;
    object-fit: contain;
}

.mobile-mode #parasuite {
    position: absolute;
    width: auto;
    object-fit: contain;
}

.mobile-mode #text1 {
    position: absolute;
    white-space: nowrap;
}

.mobile-mode #text2 {
    position: absolute;
    white-space: nowrap;
}

.mobile-mode #background-box {
    position: absolute;
}