* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Dancing Script', cursive;
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    max-width: 800px;
    width: 100%;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    padding: 40px;
    text-align: center;
}

header h1 {
    font-size: 3rem;
    color: #e91e63;
    margin-bottom: 10px;
    font-weight: 700;
}

header p {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 40px;
}

.photos {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.photo-frame {
    aspect-ratio: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.photo-frame:hover {
    transform: scale(1.05);
}

.photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e91e63, #f06292);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.photo-placeholder p {
    font-size: 1rem;
    margin-top: 10px;
    opacity: 0.8;
}

.message {
    background: linear-gradient(135deg, #ffeef8, #fce4ec);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #f8bbd9;
}

.message p {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.signature {
    font-weight: 600;
    color: #e91e63;
    font-size: 1.5rem;
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 20px;
    }
    
    header h1 {
        font-size: 2rem;
    }
    
    header p {
        font-size: 1.2rem;
    }
    
    .photos {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 1024px) {
    .photos {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .photos .photo-frame:last-child {
        grid-column: 1 / -1;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .message p {
        font-size: 1.1rem;
    }
}