body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(180deg, #ffe6ee, #f6a9b7);
    color: #fff;
    text-align: center;
    overflow-x: hidden;
}

/* Obere kleine Infos */
.top-info {
    margin-top: 20px;
    font-size: 0.9em;
    opacity: 0.85;
}

.top-info a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.top-info a:hover {
    text-decoration: underline;
}

/* Haupttitel */
h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.6em;
    margin-top: 80px;
    margin-bottom: 20px;
}

/* Liebestext Box */
.love-text {
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(8px);
    padding: 25px;
    border-radius: 25px;
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.7;
    font-size: 1.05em;
}

/* Countdown */
#countdown {
    font-size: 1.3em;
    margin-bottom: 40px;
}

/* Links */
.clean-link {
    display: inline-block;
    margin: 10px;
    font-weight: 500;
}

.confetti {
    position: fixed;
    top: -10px;
    width: 8px;
    height: 14px;
    opacity: 0.9;
    animation: fall 4s linear forwards;
    z-index: 999;
}

@keyframes fall {
    to {
        transform: translateY(110vh) rotate(360deg);
        opacity: 0;
    }
}


/* Herzen dürfen NICHT klicken blockieren */
.hearts {
    pointer-events: none;
}
