/* Container der gesamten Introduction */
.introductionview-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: #000;
    color: #000;
    overflow: hidden;
}

/* Swiper-Einstellugen */
.introductionview-swiper {
    width: 100%;
    height: 100%;
}

/* Zentrierung des Contents innerhalb der Slides - jetzt mit festem Abstand oben */
.introductionview-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* Geändert von center auf flex-start */
    height: 100%;
    padding: 0 10%;
    /* Abstand von oben: Berücksichtigt Safe-Area (Notch) + festen Wert */
    padding-top: calc(env(safe-area-inset-top) + 80px); 
    box-sizing: border-box;
    text-align: center;
}

/* Titel-Styling */
.introductionview-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    /* margin-top: -40px; <-- Diese Zeile bitte entfernen, falls sie noch drin ist */
    color: #000;
}

.introductionview-title.hide-title {
    display: none;
}

/* Text-Styling */
.introductionview-text p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 15px;
    color: #000;
}

/* Buttons: Gemeinsames Pillen-Design mit Safe-Area Berücksichtigung */
.introductionview-closebtn,
.introductionview-nextbtn {
    position: absolute;
    z-index: 10000;
    padding: 8px 20px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    color: #ff0000;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: background 0.3s, opacity 0.3s;
}

.introductionview-closebtn:active,
.introductionview-nextbtn:active {
    background: rgba(255, 255, 255, 0.3);
}

/* Position Skip-Button (Oben Rechts - berücksichtigt Safe Area Top) */
.introductionview-closebtn {
    top: calc(env(safe-area-inset-top) + 20px);
    right: 20px;
}

/* Position Weiter-Button (Unten Rechts - berücksichtigt Safe Area Bottom) */
.introductionview-nextbtn {
    bottom: calc(env(safe-area-inset-bottom) + 12px);
    right: 20px;
}

/* Pagination (Punkte - ebenfalls Safe Area Bottom berücksichtigt) */
.introductionview-pagination {
    bottom: calc(env(safe-area-inset-bottom) + 35px) !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: auto !important;
}

.introductionview-pagination .swiper-pagination-bullet {
    background: rgba(0, 0, 0, 0.2);
    opacity: 1;
}

.introductionview-pagination .swiper-pagination-bullet-active {
    background: #000;
}

/* Bild-Styling innerhalb der Slides */
.intro-content-wrapper img {
    display: block;
    margin: 0 auto 20px auto;
    border-radius: 12px;
}
.introductionview-nextbtn::before {
    content: '';
    position: absolute;
    top: -10px;    /* Vergrößert die Trefferfläche nach oben */
    bottom: -10px; /* Vergrößert die Trefferfläche nach unten */
    left: -10px;   /* Vergrößert die Trefferfläche nach links */
    right: -10px;  /* Vergrößert die Trefferfläche nach rechts */
}
/* Gradienten für die einzelnen Slides */
#introslide-0 { background: linear-gradient(135deg, #ff4b2b 0%, #ff416c 100%); }
#introslide-1 { background: linear-gradient(135deg, #56ab2f 0%, #a8e063 100%); }
#introslide-2 { background: linear-gradient(135deg, #2193b0 0%, #6dd5ed 100%); }
#introslide-3 { background: linear-gradient(135deg, #4b6cb7 0%, #182848 100%); }