/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Password Overlay */
.password-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.password-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
    max-width: 400px;
    width: 90%;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.password-header {
    margin-bottom: 30px;
}

.password-header i {
    font-size: 3rem;
    color: #ff6b9d;
    margin-bottom: 15px;
    animation: heartbeat 2s ease-in-out infinite;
}

.password-header h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    color: #333;
    margin-bottom: 10px;
}

.password-header p {
    color: #666;
    font-size: 1rem;
}

.password-input-container {
    margin-bottom: 30px;
}

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

.password-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: transparent;
    transition: all 0.3s ease;
}

.password-dot.filled {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    transform: scale(1.1);
}

.password-error {
    color: #e74c3c;
    font-size: 0.9rem;
    min-height: 20px;
    margin-top: 10px;
}

.numeric-keypad {
    margin-bottom: 25px;
}

.keypad-row {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    justify-content: center;
}

.keypad-btn {
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 15px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.keypad-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.keypad-btn:active {
    transform: translateY(0);
}

.clear-btn, .delete-btn {
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    font-size: 1rem;
}

.delete-btn {
    font-size: 1.2rem;
}

.password-hint {
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
}

.password-hint p {
    margin: 0;
}

/* Hide main content when password overlay is active */
body.password-locked {
    overflow: hidden;
}

body.password-locked .main-content,
body.password-locked .header {
    filter: blur(5px);
    pointer-events: none;
}

/* Password animations */
@keyframes fadeOut {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0.9);
    }
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-5px);
    }
    75% {
        transform: translateX(5px);
    }
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Animated background particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: float-particle 6s ease-in-out infinite;
}

@keyframes float-particle {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1516589178581-6cd7833ae3b2?w=1920&h=1080&fit=crop') center/cover;
    opacity: 0.1;
    z-index: -1;
}

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

/* Header Styles */
.header {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
    color: white;
    text-align: center;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hearts" patternUnits="userSpaceOnUse" width="20" height="20"><path d="M10,6 Q10,0 15,6 Q20,0 20,6 Q20,10 10,16 Q0,10 0,6 Q0,0 5,6 Q10,0 10,6" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23hearts)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.main-title {
    font-family: 'Dancing Script', cursive;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% {
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3), 0 0 20px rgba(255,255,255,0.1);
    }
    100% {
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3), 0 0 30px rgba(255,255,255,0.3);
    }
}

.countdown-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    margin: 0 auto;
    max-width: 700px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
}

/* Couple Information */
.couple-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.person-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.person-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.person-image:hover {
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.person-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.person-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.love-heart {
    font-size: 2.5rem;
    color: #ff6b9d;
    animation: heartbeat 2s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(255, 107, 157, 0.5);
}

.countdown-container h2 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.countdown {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
}

.countdown-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.countdown-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 15px;
    min-width: 100px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-5px);
}

.number {
    display: block;
    font-size: 2.5rem;
    font-weight: 600;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.start-date {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

/* Main Content Styles */
.main-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    margin-top: -50px;
    border-radius: 50px 50px 0 0;
    position: relative;
    z-index: 2;
    padding: 80px 0 100px; /* Added bottom padding for music player */
}

.section-title {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 40px;
    color: #667eea;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

/* Story Section */
.story-section {
    text-align: center;
    margin-bottom: 80px;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    font-style: italic;
}

/* Gallery Section */
.gallery-section {
    margin-bottom: 80px;
    overflow: hidden;
}

.gallery-container {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
}

.gallery-grid {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    animation: scrollGallery 30s linear infinite;
    width: max-content;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    aspect-ratio: 1;
    min-width: 250px;
    flex-shrink: 0;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
    transform: translateY(0);
}

.gallery-item-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.gallery-item-date {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Gallery scroll animation */
@keyframes scrollGallery {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.gallery-grid:hover {
    animation-play-state: paused;
}



/* Gallery loading animation */
.gallery-item {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-item:nth-child(6) { animation-delay: 0.6s; }
.gallery-item:nth-child(7) { animation-delay: 0.7s; }
.gallery-item:nth-child(8) { animation-delay: 0.8s; }

/* Floating elements */
.floating-element {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.floating-heart {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.3);
    animation: float-heart 8s ease-in-out infinite;
}

@keyframes float-heart {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0;
    }
    50% {
        opacity: 1;
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Glowing effects */
.glow-effect {
    position: relative;
}

.glow-effect::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #667eea, #764ba2, #667eea);
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glow-effect:hover::before {
    opacity: 0.3;
}

/* Animated borders */
.animated-border {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.animated-border::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.animated-border:hover::before {
    left: 100%;
}

/* Floating Miss Me Button */
.floating-miss-btn {
    position: fixed;
    bottom: 100px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    color: white;
    border-radius: 50px;
    padding: 15px 20px;
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s ease;
    border: none;
    animation: float-miss 3s ease-in-out infinite;
}

.floating-miss-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 107, 157, 0.6);
}

.floating-miss-btn:active {
    transform: translateY(-2px) scale(1.02);
}

.miss-btn-content {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
}

.miss-btn-content i {
    font-size: 1.2rem;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes float-miss {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* Music Player - Spotify Style */
.music-player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(102, 126, 234, 0.2);
    padding: 15px 20px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.music-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.music-left {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.music-center {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 2;
    justify-content: center;
}

.music-right {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    justify-content: flex-end;
}

.music-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.music-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.music-btn.playing {
    animation: pulse 2s ease-in-out infinite;
}

.music-btn.auto-play-ready {
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(102, 126, 234, 0.6), 0 0 20px rgba(102, 126, 234, 0.3);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.music-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 200px;
}

.song-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
}

.song-subtitle {
    font-size: 0.8rem;
    color: #666;
    white-space: nowrap;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #666;
    min-width: 100px;
}

.volume-control input[type="range"] {
    flex: 1;
    height: 4px;
    border-radius: 2px;
    background: #ddd;
    outline: none;
    -webkit-appearance: none;
}

.volume-control input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(102, 126, 234, 0.3);
}

.volume-control input[type="range"]::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 6px rgba(102, 126, 234, 0.3);
}

/* Music player responsive */
@media (max-width: 768px) {
    .music-player {
        padding: 15px 20px;
    }
    
    .music-controls {
        gap: 15px;
        flex-direction: column;
        align-items: center;
    }
    
    .music-left {
        flex: none;
        order: 2;
        width: 100%;
        text-align: center;
    }
    
    .music-center {
        flex: none;
        order: 1;
        margin-bottom: 10px;
    }
    
    .music-right {
        flex: none;
        order: 3;
        width: 100%;
        justify-content: center;
    }
    
    .music-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .music-info {
        min-width: auto;
        display: block;
        width: 100%;
    }
    
    .song-title {
        font-size: 1rem;
        margin-bottom: 5px;
    }
    
    .song-subtitle {
        font-size: 0.9rem;
    }
    
    .volume-control {
        min-width: 50px;
        max-width: 100px;
    }
    
    .floating-miss-btn {
        bottom: 120px;
        right: 15px;
        padding: 12px 16px;
    }
    
    .miss-btn-content {
        font-size: 0.8rem;
        gap: 8px;
    }
    
    .miss-btn-content i {
        font-size: 1rem;
    }
}



/* Timeline Section */
.timeline-section {
    margin-bottom: 80px;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #667eea, #764ba2);
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-date {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 15px 25px;
    border-radius: 25px;
    text-align: center;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    min-width: 150px;
    white-space: nowrap;
}

.date {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
}

.time {
    display: block;
    font-size: 0.8rem;
    opacity: 0.9;
}

.timeline-content {
    width: 45%;
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.1);
    position: relative;
    overflow: hidden;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.memory-image {
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.memory-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.memory-img:hover {
    transform: scale(1.05);
}

.memory-text h3 {
    color: #667eea;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.memory-text p {
    color: #666;
    line-height: 1.6;
}

/* Quotes Section */
.quotes-section {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 80px 0;
    margin: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quotes-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hearts" patternUnits="userSpaceOnUse" width="30" height="30"><path d="M15,8 Q15,2 22,8 Q30,2 30,8 Q30,15 15,25 Q0,15 0,8 Q0,2 7,8 Q15,2 15,8" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23hearts)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

.quote-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.quote-icon {
    font-size: 3rem;
    margin-bottom: 30px;
    opacity: 0.8;
    animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.love-quote {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    line-height: 1.4;
    margin-bottom: 20px;
    font-style: italic;
}

.quote-author {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Call Section */
.call-section {
    margin-bottom: 80px;
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.call-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hearts" patternUnits="userSpaceOnUse" width="40" height="40"><path d="M20,12 Q20,6 28,12 Q36,6 36,12 Q36,20 20,32 Q4,20 4,12 Q4,6 12,12 Q20,6 20,12" fill="rgba(102,126,234,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23hearts)"/></svg>');
    animation: float 15s ease-in-out infinite;
}

.call-container {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.call-text {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
    font-style: italic;
    line-height: 1.6;
}

.call-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.call-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.call-btn:hover::before {
    left: 100%;
}

.call-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.call-btn:active {
    transform: translateY(-2px) scale(1.02);
}

.call-btn i {
    font-size: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

.call-note {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
}

/* Call button responsive */
@media (max-width: 768px) {
    .call-section {
        padding: 40px 0;
        margin: 40px 20px 60px;
        border-radius: 20px;
    }
    
    .call-btn {
        padding: 15px 30px;
        font-size: 1.1rem;
        gap: 10px;
    }
    
    .call-btn i {
        font-size: 1.3rem;
    }
    
    .call-text {
        font-size: 1.1rem;
    }
}

/* Dreams Section */
.dreams-section {
    margin-bottom: 80px;
}

.dreams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.dream-item {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 105, 180, 0.1);
}

.dream-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 105, 180, 0.2);
}

.dream-icon {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.dream-item:hover .dream-icon {
    transform: scale(1.1);
}

.dream-item h3 {
    color: #667eea;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.dream-item p {
    color: #666;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    text-align: center;
    padding: 30px 0;
    margin-top: 80px;
}

.footer-text {
    font-size: 1.1rem;
}

.heart-icon {
    color: #fff;
    animation: heartbeat 2s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .password-container {
        padding: 30px 20px;
        max-width: 350px;
    }
    
    .password-header h2 {
        font-size: 1.8rem;
    }
    
    .keypad-btn {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .couple-info {
        gap: 20px;
        margin-bottom: 25px;
    }
    
    .person-image {
        width: 60px;
        height: 60px;
    }
    
    .person-name {
        font-size: 1rem;
    }
    
    .love-heart {
        font-size: 2rem;
    }
    
    .countdown {
        gap: 10px;
    }
    
    .countdown-row {
        gap: 15px;
    }
    
    .countdown-item {
        min-width: 80px;
        padding: 15px;
    }
    
    .number {
        font-size: 2rem;
    }
    
    .gallery-grid {
        gap: 15px;
    }
    
    .gallery-item {
        min-width: 200px;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 40px;
        margin-bottom: 80px;
    }
    
    .timeline-date {
        position: relative;
        left: auto;
        transform: none;
        top: auto;
        margin-bottom: 20px;
        align-self: flex-start;
        font-size: 0.9rem;
        padding: 10px 20px;
        min-width: 120px;
    }
    
    .timeline-content {
        width: 100%;
        margin-top: 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .love-quote {
        font-size: 1.5rem;
    }
    
    .dreams-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .countdown-container {
        padding: 20px;
    }
    
    .countdown {
        gap: 5px;
    }
    
    .countdown-item {
        min-width: 70px;
        padding: 10px;
    }
    
    .number {
        font-size: 1.5rem;
    }
    
    .label {
        font-size: 0.8rem;
    }
    
    /* Extra small mobile music player */
    .music-player {
        padding: 12px 15px;
    }
    
    .music-controls {
        gap: 12px;
    }
    
    .music-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .song-title {
        font-size: 0.9rem;
    }
    
    .song-subtitle {
        font-size: 0.8rem;
    }
    
    .volume-control {
        min-width: 150px;
        max-width: 200px;
    }
    
    .floating-miss-btn {
        bottom: 110px;
        right: 10px;
        padding: 10px 14px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.timeline-item,
.dream-item,
.story-content {
    animation: fadeInUp 0.8s ease-out;
} 