@import url('https://fonts.googleapis.com/css2?family=Chalkboard+SE&family=Inter:wght@400;700&display=swap');

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Inter', sans-serif;
    background-color: #f0f0f0;
}

/* Der pinke Header von vorhin - als Köder */
.hero-preview {
    padding: 40px 20px;
    background: white;
    border-bottom: 8px solid #ff477e;
    font-family: 'Chalkboard SE', 'Comic Sans MS', cursive;
    text-align: center;
    filter: blur(2px); /* Schon leicht ausgegraut */
    opacity: 0.5;
}

/* Der "Geschlossen" Layer */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.message-box {
    max-width: 500px;
    padding: 40px;
    background: white;
    border: 2px solid #333;
    box-shadow: 20px 20px 0 rgba(0,0,0,0.1);
    text-align: center;
}

.stamp {
    display: inline-block;
    border: 4px solid #cc0000;
    color: #cc0000;
    padding: 10px 20px;
    font-weight: 800;
    text-transform: uppercase;
    transform: rotate(-10deg);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.5;
}