body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #ffecd2, #fcb69f);
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: #333;
}

.container {
    max-width: 800px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding: 20px;
    text-align: center;
    animation: fadeIn 2s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.header {
    margin-bottom: 20px;
}

.ganesh-symbol {
    font-size: 3em;
    margin-bottom: 10px;
    animation: fadeIn 2s ease-in-out 0.5s both;
}

.title {
    font-size: 2em;
    color: #d2691e;
    animation: fadeIn 2s ease-in-out 1s both;
}

.main-content {
    margin: 20px 0;
}

.invite-text, .names, .details, .time, .date {
    margin: 10px 0;
    animation: fadeIn 2s ease-in-out 1.5s both;
}

.names {
    font-size: 2.5em;
    color: #8b4513;
    font-weight: bold;
}

.location {
    margin-top: 30px;
    animation: fadeIn 2s ease-in-out 2s both;
}

.location h3 {
    color: #d2691e;
}

.map {
    margin-top: 10px;
    border-radius: 10px;
    overflow: hidden;
}

.footer {
    margin-top: 20px;
    font-size: 0.9em;
    color: #666;
    animation: fadeIn 2s ease-in-out 2.5s both;
}

@media (max-width: 600px) {
    .container {
        padding: 15px;
    }
    .names {
        font-size: 2em;
    }
    .map iframe {
        height: 200px;
    }
}