/* Basis-Styling für die gesamte Seite */
body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Roboto', sans-serif;
    overflow: hidden;
    background: radial-gradient(circle at top left, #1d1d1d, #111111);
    color: white;
    position: relative;
}

/* Animierter Hintergrund mit 3D-Punkten */
.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

/* Hintergrundanimation - viele schwebende Punkte */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.floating-shapes div {
    position: absolute;
    width: 15px;
    height: 15px;
    background: #00c3ff;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(3, 172, 250, 0.7);
    animation: float 8s infinite ease-in-out;
    opacity: 0.6;
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-100px) translateX(50px);
    }
    100% {
        transform: translateY(0) translateX(0);
    }
}

/* Zufällige Startpositionen und mehr Punkte */
.floating-shapes div:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-duration: 7s;
}

.floating-shapes div:nth-child(2) {
    top: 20%;
    left: 70%;
    animation-duration: 9s;
}

.floating-shapes div:nth-child(3) {
    top: 50%;
    left: 30%;
    animation-duration: 10s;
}

.floating-shapes div:nth-child(4) {
    top: 80%;
    left: 50%;
    animation-duration: 6s;
}

.floating-shapes div:nth-child(5) {
    top: 60%;
    left: 80%;
    animation-duration: 8s;
}

.floating-shapes div:nth-child(6) {
    top: 40%;
    left: 20%;
    animation-duration: 11s;
}

.floating-shapes div:nth-child(7) {
    top: 30%;
    left: 90%;
    animation-duration: 12s;
}

.floating-shapes div:nth-child(8) {
    top: 70%;
    left: 40%;
    animation-duration: 7s;
}

.floating-shapes div:nth-child(9) {
    top: 90%;
    left: 60%;
    animation-duration: 10s;
}

.floating-shapes div:nth-child(10) {
    top: 80%;
    left: 90%;
    animation-duration: 9s;
}

/* Styling für den Hauptinhalt */
.container {
    text-align: center;
    z-index: 1;
}

h1 {
    font-size: 3rem;
    color: #b44cff;
    margin-bottom: 20px;
}

p {
    font-size: 1.2rem;
    color: #4cf3ff;
    margin-bottom: 40px;
}

/* Download-Buttons Styling */
.download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.download-buttons a {
    text-decoration: none;
    background: #333;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s, background-color 0.3s;
    box-shadow: 0px 10px 30px rgba(3, 226, 255, 0.7);
}

.download-buttons a:hover {
    transform: scale(1.1);
}

.apple-download {
    background-color: #0070c9;
}

.google-download {
    background-color: #34a853;
}

.apple-download img, .google-download img {
    width: 30px;
}

/* Optional: Weiß gefärbte Logos */
.apple-download img {
    filter: brightness(0) invert(1); /* Weißes Apple-Logo */
}

.google-download img {
    filter: brightness(0) invert(1); /* Weißes Google Play-Logo */
}

/* Header Styling */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
}

.logo-image {
    height: 40px;
    width: auto;
    margin-right: 10px;
    padding-left: 10px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #b44cff;
    display: flex;
    justify-content: left;
}

#logotext {
    padding-top: 5px;
}

/* Styling für den Zurück-Button */
.back-button {
    margin-top: 30px;
}

.back-button button {
    background-color: #444;
    color: white;
    font-size: 1.2rem;
    padding: 12px 25px;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    box-shadow: 0px 10px 20px rgba(3, 226, 255, 0.6);
}

.back-button button:hover {
    background-color: #5c5c5c;
    transform: scale(1.05);
}
