@import url(https://porn-app.com/css/fonts.css);


/* Globales Setup für die Sektionen */
:root {
    --primary: #007aff;
    --gold: #ffcc00;
    --bg-dark: #0a0a0a;
    --bg-card: #161618;
    --text-main: #ffffff;
    --text-muted: #a1a1a6;
    --swiper-pagination-color: #ffffff; /* Farbe des aktiven Bullets */
    --swiper-pagination-bullet-inactive-color: #ffffff; /* Farbe der inaktiven Bullets */
    --swiper-pagination-bullet-inactive-opacity: 0.5; /* Transparenz der inaktiven */
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    margin-top:20px;
}

/* TYPOGRAPHY */
.hero-title {
    font-size: clamp(1.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-title span {
    color: var(--primary);
}

.section-tag {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 700;
}

.section-tag.gold {
    color: var(--gold);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

/* SECTIONS */
.hero-section {
    padding: 100px 0 60px;
    background: radial-gradient(circle at 20% 30%, #1d1d21 0%, #0a0a0a 100%);
}

.feature-section {
    padding: 80px 0;
}

.alt-bg {
    background-color: #0f0f11;
}

/* GRID & FLEX */
.hero-grid, .feature-row {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.hero-content, .feature-text {
    flex: 1;
    min-width: 320px;
}

.hero-visual, .feature-image {
    flex: 0 0 320px;
    display: flex;
    justify-content: center;
}

/* COMPONENTS */
.badge {
    background: rgba(0, 122, 255, 0.15);
    color: var(--primary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.hero-lead {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-outline {
    border: 1px solid #333;
    color: white;
}

.btn-gold {
    background: var(--gold);
    color: black;
    box-shadow: 0 0 20px rgba(255, 204, 0, 0.3);
}

.btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* PHONE FRAME */
.phone-frame {
    width: 100%;
    max-width: 320px;

    aspect-ratio: 9 / 19.5;
    position: relative;
    border-radius: 32px;
    border: 4px solid #1a1a1a;
    background: #000;
    padding: 8px;

    box-shadow:
        0 0 0 1px #444,
        0 20px 40px rgba(0, 0, 0, 0.4),
        inset 0 0 2px rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

/* Punch-Hole Kamera (Typisch Android) */
.phone-frame::before {
    content: "";
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: #080808;
    border-radius: 50%;
    z-index: 10;
    border: 1px solid #222;
    /* Subtiler Linseneffekt */
    box-shadow: inset 1px 1px 2px rgba(255, 255, 255, 0.1);
}

/* Android Buttons (Lautstärke & Power meist auf einer Seite) */
.phone-frame::after {
    content: "";
    position: absolute;
    right: -6px; /* Buttons rechts bei Android */
    top: 120px;
    width: 3px;
    height: 35px; /* Power Button */
    background: #333;
    border-radius: 0 2px 2px 0;
    /* Lautstärkewippe als Schatten */
    box-shadow: 0 60px 0 #333, 0 80px 0 #333;
}
.phone-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px; /* Etwas kleiner als der äußere Rahmen */
}
.pro-glow {
    border-color: #2c2c2e;
    box-shadow: 0 0 30px rgba(0, 51, 255, 0.36);
}

/* LISTS */
.f-item {
    margin-bottom: 15px;
    padding-left: 20px;
    border-left: 2px solid var(--primary);
    color: var(--text-muted);
}

.pro-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    /* Zentriert den Block auf Mobile, hält Text links */
    display: inline-block;
    text-align: left;
}

.pro-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* Das Icon bleibt immer exakt links vom Text */
.pro-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
    font-weight: 900;
    font-size: 1.2rem;
}
.feature-list{
    margin-top:20px;
}

.pro-list li strong {
    display: block; /* Titel über der Beschreibung */
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 2px;
}

video{
    border-radius: 20px;
}

/* MOBILE FIX */
@media (max-width: 900px) {
    .pro-section {
        text-align: center; /* Zentriert die Überschrift und den Listen-Block */
    }

    .pro-list {
        margin: 20px auto; /* Zentriert den gesamten Block */
    }
}

.site-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 20px;
}

.site-grid span {
    background: rgba(255, 255, 255, 0.03); /* Hauchdünnes Weiß auf Schwarz */
    padding: 12px 15px;
    border-radius: 12px; /* Etwas runder wirkt moderner */
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.08); /* Feine Kante */
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hover-Effekt: Das Icon/die Seite leuchtet leicht blau auf */
.site-grid span:hover {
    background: rgba(0, 122, 255, 0.1);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}
.pricing {
    font-size: 1.5rem;
    margin: 30px 0;
    font-weight: 700;
}

.pricing span {
    color: var(--gold);
    font-size: 2.2rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .hero-grid, .feature-row, .feature-row.reverse {
        flex-direction: column;
        text-align: center;
    }

    .hero-content, .feature-text {
        min-width: 100%;
    }

    .f-item {
        border-left: none;
        border-bottom: 1px solid #222;
        padding-bottom: 10px;
    }
}


.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.download-area {
    padding: 100px 0;
    /* Ein sehr subtiler Glow-Effekt im Hintergrund */
    background: radial-gradient(circle at center, #111114 0%, #0a0a0a 100%);
}

.download-card {
    position: relative;
    padding: 60px 40px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    /* Wir entfernen den grauen Kasten und nutzen nur einen feinen Rahmen + Glow */
    border: 1px solid rgba(0, 122, 255, 0.2);
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    overflow: hidden;
}

/* Ein leuchtender Akzent oben an der Karte */
.download-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 5px;
    letter-spacing: -1px;
}

.release-date {
    color: var(--primary); /* Datum in Blau hervorheben */
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
    display: block;
}

/* CHANGELOG - Jetzt viel cleaner als Grid */
.changelog {
    background: transparent;
    margin: 40px auto;
    max-width: 600px;
    text-align: left;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
}

.changelog h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-align: center;
}

#update_ul {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Zwei Spalten für die Updates auf Desktop */
    gap: 15px;
    list-style: none;
    padding: 0;
}

#update_ul li {
    color: #fff;
    font-size: 0.95rem;
    padding-left: 25px;
    position: relative;
    line-height: 1.3;
}

#update_ul li::before {
    content: "✓"; /* Checkmark statt Punkt wirkt positiver */
    color: var(--primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* CTA BUTTONS */
.cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.btn-outline-white {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3); /* Leicht transparentes Weiß */
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background: #ffffff;
    color: #000000; /* Text wird schwarz beim Hover für harten Kontrast */
    border-color: #ffffff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Optionale Anpassung für den "Gold-Button" daneben, damit sie gleich groß sind */
.cta-group .btn {
    margin: 5px;
    min-width: 160px; /* Einheitliche Breite für ein symmetrisches Bild */
    text-align: center;
}

.btn-large {
    padding: 20px 45px;
    font-size: 1.2rem;
    border-radius: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 30px rgba(0, 122, 255, 0.3);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    #update_ul {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-group {
        flex-direction: column;
    }

    .download-card {
        padding: 40px 20px;
    }
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(0, 122, 255, 0.3);
}

/* SLIDER SECTION */
.slider-section {
    background-color: var(--bg-dark);
    padding-top: 40px;
}

.slider-wrapper {
    margin-top: 40px;
    /* Falls dein Slider-Content noch Padding braucht */
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .download-card {
        padding: 25px 15px;
    }

    .cta-group {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .btn {
        width: 100%;
        box-sizing: border-box;
    }
}


.hero-stats {
    margin: 30px 0;
    display: flex;
    justify-content: flex-start; /* Auf Mobile später zentrieren */
}

.stat-item {
    display: flex;
    align-items: baseline; /* Damit Zahl und Text auf einer Linie stehen */
    gap: 12px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.03); /* Ganz dezenter Hintergrund */
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px); /* Glas-Effekt */
}

.counter {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -1px;
    /* Subtiler Glow für die Zahl */
    text-shadow: 0 0 20px rgba(0, 122, 255, 0.3);
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary); /* Blau aus deinem Root-CSS */
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Anpassung */
@media (max-width: 900px) {
    .hero-stats {
        justify-content: center;
    }

    .counter {
        font-size: 2.2rem;
    }
}

/* BRAZZERS AD */
.brazzers_ad {
    margin: 40px 0;
    border-radius: 20px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

/* Subtiler Glow-Effekt beim Hover */
.brazzers_ad:hover {
    border-color: #007aff;
}

.ad_slide {
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Kleiner Hinweis-Text über der Ad */
.ad_slide::before {
    content: "Featured Partner";
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #555;
    margin-bottom: 15px;
    font-weight: 700;
}

.ad_slidecontent {
    width: 100%;
    text-align: center;
}

/* Falls die Ad ein Bild/Banner ist */
.ad_slidecontent img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    margin-bottom: 15px;
}

/* Der Link-Text: Jetzt als cleaner Button */
.ad_slide_link {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 24px;
    background: #242426; /* Dunkel, aber abgehoben vom Card-BG */
    border: 1px solid #333;
    border-radius: 10px;
    transition: all 0.2s ease;
    width: 100%; /* Button über die ganze Breite der Ad */
    box-sizing: border-box;
}

.ad_slide_link:hover {
    background: #007aff; /* Dein Primary Blue nur beim Hover */
    border-color: #007aff;
    transform: translateY(-1px);
}

/* Verhindert, dass Scripte das Layout sprengen */
.ad_slidecontent iframe {
    max-width: 100% !important;
    border-radius: 12px;
}


/* DOWNLOAD BUTTON */

#downloadnow {
    position: fixed;
    bottom: 20px; /* Abstand von unten */
    left: 50%;

    transform: translateX(-50%); /* Perfekt zentriert */
    z-index: 9999; /* Immer ganz oben auf der Seite */

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--primary); /* Dein Blau aus dem Root-CSS */
    color: #fff;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;

    box-shadow: 0 10px 25px rgba(0, 122, 255, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    white-space: nowrap; /* Kein Zeilenumbruch im Button */
}

#downloadicon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* Hover-Effekt: Der Button hebt sich leicht ab */
#downloadnow:hover {
    transform: translateX(-50%) translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 122, 255, 0.6);
    background-color: #006ae6;
}

/* Auf sehr kleinen Handys etwas kompakter */
@media (max-width: 480px) {
    #downloadnow {
        bottom: 15px;
        padding: 12px 20px;
        font-size: 1rem;
    }
}

/* FOOTER */


.footer-section {
    background-color: #050505; /* Noch ein Stück dunkler als die Sektionen */
    padding: 60px 20px;
    border-top: 1px solid #1a1a1a;
    text-align: center;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-link:hover {
    color: var(--primary); /* Dein Blau-Ton */
    transform: translateY(-2px);
}

.copyright {
    color: #444;
    font-size: 0.8rem;
    margin-top: 20px;
    border-top: 1px solid #111;
    padding-top: 20px;
    display: inline-block;
}

/* Mobile Optimierung */
@media (max-width: 600px) {
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    .footer-section {
        padding: 40px 20px;
    }
}

.phone-slider-wrapper {
    width: 100%;
    margin: 0 auto;
    position: relative;
    max-width: 1000px; /* Damit der Slider auf Desktop nicht die ganze Breite sprengt */
}

.swiper {
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    /* ÄNDERUNG: Hintergrund auf transparent oder dunkel setzen */
    background: transparent;
}

.swiper-slide {
    display: flex;
    flex-direction: column;
    height: auto;
    border-radius: 20px;
    overflow: hidden;
}

.slide-image-container {
    width: 95%;
}

.slide-image-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.slide-description {
    padding: 25px 20px;
    text-align: center;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: transparent;
}

.slide-description p {
    margin: 0;
    font-size:0.9rem;
    line-height: 1.5;
    color: #eee;
}

.slider-section {
    padding: 60px 0;
    overflow: hidden;
}

.swiper-slide {
    opacity: 0.3; /* Sehr blass */
    transform: scale(0.85); /* Etwas kleiner */
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); /* Smoother Übergang */
    filter: blur(2px); /* Optional: Leicht unscharf machen */
}
.swiper-pagination-bullet{
    background:white;
}
/* NUR das aktive Slide hervorheben */
.swiper-slide-active {
    opacity: 1 !important;
    transform: scale(1.00) !important; /* Sogar ein Stück größer als normal */
    filter: blur(0); /* Scharf stellen */
    z-index: 10; /* Sicherstellen, dass es über den anderen liegt */
}

/* Den Text unter inaktiven Bildern komplett ausblenden */
.swiper-slide:not(.swiper-slide-active) .slide-description {
    opacity: 0;
    transform: translateY(10px);
    transition: 0.3s;
}

.swiper-slide-active .slide-description {
    opacity: 1;
    transform: translateY(0);
    transition: 0.5s delay 0.2s; /* Text erscheint kurz nach dem Bild */
}

/* Das Handy-Bild im Slider stylen */
.slide-image-container img {
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 4px solid #1a1a1a;
}

.navopen {
    color: white;
}

.pro-label {
    color: #d4af37; /* Gold */
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
}

/* Pfeile: Weiß machen, damit man sie auf dunklem Grund sieht */
.swiper-button-next, .swiper-button-prev {
    top: 40%;
    color: #fff !important;
}

/* Position der Pfeile */
.swiper-button-next {
    right: 10px;
}

.swiper-button-prev {
    left: 10px;
}

/* Desktop-Anpassung: Pfeile weiter nach außen schieben, wenn Platz ist */
@media (min-width: 1100px) {
    .swiper-button-next {
        right: -60px;
    }

    .swiper-button-prev {
        left: -60px;
    }
}

@media (max-width: 500px) {
    .swiper-button-next, .swiper-button-prev {
        display: none;
    }
}

.tg-button {
    display: inline-flex;
    align-items: center;
    background-color: #24A1DE; /* Das offizielle Telegram-Blau */
    color: white;
    padding: 10px 20px;
    border-radius: 50px; /* Abgerundete Ecken */
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.tg-button:hover {
    background-color: #1d82b3; /* Etwas dunkler beim Hover */
}

.tg-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    fill: currentColor; /* Das Icon übernimmt die Textfarbe (weiß) */
}


/* Spezifisches Styling für die iOS-Sektion */
.ios-section {
    margin-top:50px;
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    max-width: 800px;
    backdrop-filter: blur(10px);
}

.ios-section h2 {
    color: white;
    font-size: 1.8rem;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.ios-section p {
    color: #f8fafc;
    font-size: 1.1rem;
    margin: 10px 0;
}

.ios-section b {
    color: var(--accent);
}

.ios-section a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.2s;
}

.ios-section a:hover {
    opacity: 0.8;
}

/* Die Buttons innerhalb der iOS-Sektion */
.ios-btn-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
}

.ios-section .button {
    background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
    color: #050a4c; /* Dunkler Text auf hellem Button für bessere Lesbarkeit */
    padding: 12px 25px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.95rem;
    box-shadow: 0 10px 20px rgba(251, 191, 36, 0.2);
    border: none;
    transition: all 0.3s ease;
}

.ios-section .button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(251, 191, 36, 0.3);
    filter: brightness(1.1);
}

.emulator-link {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-top: 10px;
}
