body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f8cdda, #1d2b64);
    color: #fff;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    max-width: 600px;
    box-shadow: 0 0 15px rgba(255, 192, 203, 0.7);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #ffb6c1;
}

.message {
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-style: italic;
}

.photos {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.photos img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 0 10px #ff69b4;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.photos img:hover {
    transform: scale(1.1);
}

button {
    background-color: #ff69b4;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #ff1493;
}

.secret-message {
    margin-top: 20px;
    font-size: 1.1rem;
    color: #ffb6c1;
    font-weight: bold;
}
