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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #fce8f3 0%, #f0e7fd 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

header {
    text-align: center;
}

.bagg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url('360_F_681438274_Jn0hKanie9OYLvUcS1CSHfGYikBwnrSQ.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

  

.title {
    font-size: 3.5rem;
    color: #fc3edc;
    margin-bottom: 0.5rem;
    animation: bounce 2s infinite;
}

.subtitle {
        color: #666;
    font-style: italic;
}
.pic{
    position: relative;
    left: 30%;
    bottom: 50%;
    box-shadow: #666;
}

/* Countdown Styles */
.countdown {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.countdown-item {
    background: white;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.countdown-item span:first-child {
    font-size: 2rem;
    font-weight: bold;
    color: #FF63B5;
}

.countdown-item span:last-child {
    font-size: 0.8rem;
    color: #666;
}

/* Card Styles */
.card {
    max-width: 600px;
    margin: 0 auto 3rem;
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card-header {
    background: linear-gradient(to right, #FF63B5, #9C27B0);
    color: white;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
}

.card-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.card-content.open {
    max-height: 1000px;
}


.message {
    padding: 2rem;
    text-align: center;
}

.message h2 {
    color: #FF63B5;
    margin-bottom: 1rem;
}

.message p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.signature {
    font-style: italic;
    color: #FF63B5;
}

/* Gallery Styles */
.gallery {
    margin-bottom: 3rem;
}

.gallery h2 {
    text-align: center;
    color: #FF63B5;
    margin-bottom: 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(10px, 5fr));
    gap: 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 500px;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Music Player Styles */
.music-player {
    max-width: 400px;
    margin: 0 auto 3rem;
    background: linear-gradient(to right, #FF63B5, #9C27B0);
    padding: 1.5rem;
    border-radius: 1rem;
    color: white;
}

.player-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.controls button {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    margin-left: 1rem;
}

.progress-bar {
    background: rgba(255, 255, 255, 0.3);
    height: 4px;
    border-radius: 2px;
    overflow: hidden;
}

.progress {
    width: 0%;
    height: 100%;
    background: white;
    transition: width 0.1s linear;
}





/* Responsive Design */
@media (max-width: 768px) {
    .pic{
 left: 1%;

    }

    .title {
        font-size: 2.5rem;
    }

    .countdown {
        flex-wrap: wrap;
    }

    .countdown-item {
        min-width: 60px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}