/* 1. Google Fonts laden */
@import url('https://fonts.googleapis.com/css2?family=Exo:ital,wght@0,100..900;1,100..900&display=swap');

/* 2. Schriftart Exo global erzwingen */
.mcp-main-wrapper, 
.mcp-main-wrapper *,
html body .mcp-main-wrapper [class^="mcp-"] {
    font-family: 'Exo', sans-serif !important;
    box-sizing: border-box;
}

.mcp-main-wrapper {
    text-align: center;
    width: 100%;
    margin: 0 auto;
}

.mcp-countdown-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: clamp(15px, 4vw, 40px);
    padding: 10px 0 40px 0;
}

/* --- DATUM-STYLING (Layer-Trick) --- */
html body .mcp-event-date {
    font-weight: 900 !important;
    font-size: 3.25rem;
    color: #FFD900; 
    position: relative;             
    display: inline-block;          
    background-color: transparent;
    -webkit-text-stroke: 0;         
    line-height: 1.1;
    margin: 0 auto 15px auto !important; 
    z-index: 1;
}

html body .mcp-event-date::after {
    content: attr(data-text);       
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    color: #392e2c;                 
    -webkit-text-stroke: 14px #392e2c; 
    z-index: -1;                    
    white-space: nowrap;
}

/* --- COUNTDOWN ELEMENTE --- */
.mcp-item {
    display: flex;
    flex-direction: column-reverse;
    min-width: 100px;
}

.mcp-number {
    font-size: 5rem;         
    font-weight: 800;
    line-height: 0.85 !important;
    display: block;
}

.mcp-label {
    font-size: 1.4rem;              
    text-transform: uppercase;
    margin-bottom: 5px;
    display: block;
    font-weight: 700;
}

/* --- STATUS NACHRICHTEN --- */
.mcp-running-status,
.mcp-expired {
    color: #ffffff; 
    background-color: #382d2b3b;  
    backdrop-filter: blur(10px);  
    -webkit-backdrop-filter: blur(10px); 
    display: inline-block;          
    padding: 20px 40px;             
    border-radius: 20px;            
    margin: 20px auto;
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;
}

/* --- MOBILE ANPASSUNG --- */
@media (max-width: 480px) {
    html body .mcp-event-date {
    font-weight: 900 !important;
    font-size: 1.8rem;
    color: #FFD900; 
    position: relative;             
    display: inline-block;          
    background-color: transparent;
    -webkit-text-stroke: 0;         
    line-height: 1.1;
    margin: 0 auto 15px auto !important; 
    z-index: 1;
}

html body .mcp-event-date::after {
    content: attr(data-text);       
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    color: #231c1a;                 
    -webkit-text-stroke: 11px #231c1a; 
    z-index: -1;                    
    white-space: nowrap;
}

    /* Countdown Zahlen und Labels */
    .mcp-number { 
        font-size: 2.5rem; /* Zahlen etwas kleiner */
    }
    
    .mcp-label { 
        font-size: 0.8rem; /* Beschriftung kompakter */
    }

    .mcp-item { 
        flex: 0 0 42%; 
        min-width: 70px; 
        gap: 5px;
    }

    /* Status-Boxen (Live/Beendet) für Mobile */
    .mcp-running-status,
    .mcp-expired {
        font-size: 1.5rem;
        padding: 15px 25px;
        width: 90%; /* Verhindert, dass der Text am Rand klebt */
    }
}