body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(180deg, #ffe6f0, #ffd1dc);
    text-align: center;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 700px;
    margin: auto;
    padding: 40px 20px;
}

h1 {
    color: #d63384;
    font-size: 2.5em;
}

.subtitle {
    margin-bottom: 30px;
}

.gift {
    background: white;
    border-radius: 20px;
    padding: 20px;
    margin: 20px 0;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: transform 0.2s;
}

.gift:hover {
    transform: scale(1.02);
}

.gift-title {
    font-size: 1.3em;
    font-weight: bold;
    color: #d63384;
}

.gift-content {
    display: none;
    margin-top: 15px;
    font-size: 1.1em;
}

.gift.open .gift-content {
    display: block;
}

.back {
    display: inline-block;
    margin-top: 30px;
    text-decoration: none;
    color: #d63384;
    font-weight: bold;
}

.hearts {
    pointer-events: none;
}


/* Herzen */
.hearts span {
    position: fixed;
    bottom: -20px;
    font-size: 18px;
    animation: float 6s linear infinite;
    opacity: 0.8;
}

@keyframes float {
    from { transform: translateY(0); }
    to { transform: translateY(-110vh); }
}

/* Handy */
@media (max-width: 600px) {
    h1 { font-size: 2em; }
}
