/* Firefox Redirect Overlay - CSS */
/* Nur für Firefox-Browser anzeigen */

#firefox-redirect-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 59, 30, 0.9); /* Etwas dunkler als Mobile-Overlay */
    backdrop-filter: blur(10px); /* Stärkerer Blur für "Blockade-Gefühl" */
    display: none; /* Initial versteckt, wird per JS aktiviert */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
    color: #f0f0f0;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    overflow: hidden;
    z-index: 2000; /* Über allem anderen */
}

/* Firefox-Seal Icon */
.firefox-seal {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d32f2f, #f44336, #ff5722); /* Warnung-Rot */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    margin-bottom: 30px;
    box-shadow: 0 0 25px rgba(211, 47, 47, 0.8);
    animation: warning-pulse 2s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

@keyframes warning-pulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 25px rgba(211, 47, 47, 0.8);
    }
    50% { 
        transform: scale(1.1);
        box-shadow: 0 0 35px rgba(211, 47, 47, 1);
    }
}

/* Überschrift */
.firefox-title {
    font-size: 26px;
    color: #ffffff;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.9), 0 0 25px rgba(211, 47, 47, 0.6);
    margin-bottom: 25px;
    letter-spacing: 1px;
    font-weight: normal;
}

/* Beschreibungstext */
.firefox-description {
    font-size: 18px;
    line-height: 1.6;
    color: #ffffff;
    max-width: 600px;
    margin-bottom: 25px;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
}

/* Problem-Liste Container */
.firefox-problems {
    background: rgba(0, 0, 0, 0.4);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 25px;
    max-width: 500px;
}

/* Problem-Liste - mit weißer Schrift */
#firefox-redirect-overlay .firefox-problems .problem-list {
    font-size: 16px;
    color: #ffffff !important;
    line-height: 1.5;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
}

#firefox-redirect-overlay .firefox-problems .problem-list p {
    color: #ffffff !important;
    margin: 8px 0;
}

#firefox-redirect-overlay .firefox-problems .problem-list strong {
    color: #ffffff !important;
    font-size: 17px;
    margin-bottom: 10px;
    display: block;
}

/* Empfehlung */
.firefox-recommendation {
    background: rgba(58, 107, 58, 0.3);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(58, 107, 58, 0.5);
    max-width: 500px;
}

.firefox-recommendation p {
    font-size: 18px;
    color: #ffffff;
    line-height: 1.5;
    margin: 0;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
}

.firefox-recommendation strong {
    color: #ffffff;
    font-size: 19px;
}

/* Zusätzlicher dezenter Overlay-Effekt */
#firefox-redirect-overlay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(211, 47, 47, 0.1) 100%);
    z-index: -1;
}
