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

body {
    font-family: 'Georgia', serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
}

.container {
    text-align: center;
    max-width: 800px;
    padding: 40px 20px;
    background: rgba(30, 30, 30, 0.9);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    margin: 20px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.birthday-title {
    font-size: 4.2rem;
    color: #ff6b9d;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.name {
    font-size: 2.5rem;
    color: #c9a9dd;
    margin-bottom: 30px;
    font-style: italic;
}

.message {
    font-size: 1.3rem;
    color: #e1e1e1;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.balloons {
    position: absolute;
    bottom: -150px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3rem;
    animation: float-up 8s ease-in infinite;
}

.confetti {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
}

.confetti-piece {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #ff6b6b;
    animation: confetti-fall 6s linear infinite;
}

.confetti-piece:nth-child(2) { background: #4ecdc4; animation-delay: 0.5s; left: 5%; }
.confetti-piece:nth-child(3) { background: #45b7d1; animation-delay: 1s; left: 15%; }
.confetti-piece:nth-child(4) { background: #96ceb4; animation-delay: 1.5s; left: 25%; }
.confetti-piece:nth-child(5) { background: #ffeaa7; animation-delay: 2s; left: 35%; }
.confetti-piece:nth-child(6) { background: #dda0dd; animation-delay: 0.3s; left: 45%; }
.confetti-piece:nth-child(7) { background: #98d8c8; animation-delay: 0.8s; left: 55%; }
.confetti-piece:nth-child(8) { background: #f7dc6f; animation-delay: 1.3s; left: 65%; }
.confetti-piece:nth-child(9) { background: #bb8fce; animation-delay: 1.8s; left: 75%; }
.confetti-piece:nth-child(10) { background: #85c1e9; animation-delay: 2.3s; left: 85%; }
.confetti-piece:nth-child(11) { background: #ff9ff3; animation-delay: 0.7s; left: 95%; }
.confetti-piece:nth-child(12) { background: #54a0ff; animation-delay: 1.2s; left: 12%; }
.confetti-piece:nth-child(13) { background: #5f27cd; animation-delay: 1.7s; left: 22%; }
.confetti-piece:nth-child(14) { background: #00d2d3; animation-delay: 2.2s; left: 32%; }
.confetti-piece:nth-child(15) { background: #ff6348; animation-delay: 0.4s; left: 42%; }
.confetti-piece:nth-child(16) { background: #2ed573; animation-delay: 0.9s; left: 52%; }
.confetti-piece:nth-child(17) { background: #ffa502; animation-delay: 1.4s; left: 62%; }
.confetti-piece:nth-child(18) { background: #ff4757; animation-delay: 1.9s; left: 72%; }
.confetti-piece:nth-child(19) { background: #3742fa; animation-delay: 0.6s; left: 82%; }
.confetti-piece:nth-child(20) { background: #2f3542; animation-delay: 1.1s; left: 92%; }

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px auto;
    max-width: 600px;
}

.photo-frame {
    width: 180px;
    height: 180px;
    border: 6px solid #444;
    border-radius: 10px;
    background: linear-gradient(45deg, #2d2d2d, #1a1a1a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: #ccc;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.photo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
}

.special-message {
    background: linear-gradient(45deg, #4a4a8a 0%, #6b4a8a 100%);
    color: white;
    padding: 25px;
    border-radius: 15px;
    margin-top: 30px;
    font-size: 1.1rem;
    line-height: 1.6;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.navigation-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.nav-link {
    background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.nav-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    background: linear-gradient(45deg, #764ba2 0%, #667eea 100%);
}

.countdown-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.countdown-timer {
    background: linear-gradient(45deg, #ff6b9d, #c9a9dd);
    color: white;
    padding: 15px;
    border-radius: 15px;
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.countdown-timer.birthday-today {
    background: linear-gradient(45deg, #ff9a9e, #fecfef);
    animation: celebration 2s ease-in-out infinite;
}

.countdown-timer.anniversary-today {
    background: linear-gradient(45deg, #ffd700, #ffb347);
    animation: celebration 2s ease-in-out infinite;
}

#together-timer {
    background: linear-gradient(45deg, #ff9a9e, #fad0c4);
}

.firework {
    position: fixed;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 999;
}

.firework-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 998;
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes float-up {
    0% { 
        transform: translateX(-50%) translateY(0px);
    }
    100% { 
        transform: translateX(-50%) translateY(-200vh);
    }
}

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

@keyframes confetti-fall {
    0% { transform: translateY(-120vh) rotate(0deg); }
    100% { transform: translateY(150vh) rotate(720deg); }
}

@media (max-width: 1024px) {
    .albums-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
    
    .album-cover {
        width: 140px;
        height: 140px;
    }
    
    .album-title {
        width: 140px;
        min-height: 40px;
    }
}

@media (max-width: 768px) {
    .birthday-title { font-size: 3.2rem; }
    .name { font-size: 2rem; }
    .message { font-size: 1.1rem; }
    .container { padding: 30px 15px; }
    .photo-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        max-width: 400px;
    }
    .photo-frame { 
        width: 150px; 
        height: 150px;
        border: 4px solid #444;
    }
    .albums-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .album-cover {
        width: 100px;
        height: 100px;
        border: 4px solid #444;
        margin-bottom: 12px;
    }
    
    .album-title {
        width: 100px;
        font-size: 0.75rem;
        min-height: 35px;
    }
    .countdown-timer {
        font-size: 0.9rem;
        padding: 12px;
    }
    .navigation-links {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    .nav-link {
        width: 250px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .albums-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .album-cover {
        width: 120px;
        height: 120px;
        border: 4px solid #444;
        margin-bottom: 12px;
    }
    
    .album-title {
        width: 120px;
        min-height: 35px;
    }
}

.places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.place-card {
    background: linear-gradient(45deg, rgba(255, 107, 157, 0.1), rgba(201, 169, 221, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
    text-align: left;
}

.place-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    background: linear-gradient(45deg, rgba(255, 107, 157, 0.2), rgba(201, 169, 221, 0.2));
}

.place-card h3 {
    color: #ff6b9d;
    font-size: 1.3rem;
    margin-bottom: 10px;
    border-bottom: 2px solid rgba(255, 107, 157, 0.3);
    padding-bottom: 5px;
}

.place-card .date {
    color: #c9a9dd;
    font-style: italic;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.place-card .description {
    color: #e1e1e1;
    line-height: 1.5;
    margin-bottom: 15px;
}

.place-card .rating {
    font-size: 1.2rem;
    text-align: center;
}

.stats-section {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.stat-box {
    background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    min-width: 150px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.stat-box h3 {
    margin-bottom: 10px;
    font-size: 1rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    margin: 0;
}

@media (max-width: 768px) {
    .places-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stats-section {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .stat-box {
        width: 80%;
        max-width: 250px;
    }
    
    .place-card {
        padding: 15px;
    }
    
    .place-card h3 {
        font-size: 1.1rem;
    }
}

.title {
    font-size: 4.2rem;
    color: #ff6b9d;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Movies and Shows page styles */
.movies-shows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.movie-show-card {
    background: linear-gradient(45deg, rgba(255, 107, 157, 0.1), rgba(201, 169, 221, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
    text-align: left;
}

.movie-show-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    background: linear-gradient(45deg, rgba(255, 107, 157, 0.2), rgba(201, 169, 221, 0.2));
}

.movie-show-card h3 {
    color: #ff6b9d;
    font-size: 1.3rem;
    margin-bottom: 10px;
    border-bottom: 2px solid rgba(255, 107, 157, 0.3);
    padding-bottom: 5px;
}

.movie-show-card .type {
    color: #c9a9dd;
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.movie-show-card .status {
    color: #85c1e9;
    font-style: italic;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.movie-show-card .date {
    color: #c9a9dd;
    font-style: italic;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.movie-show-card .description {
    color: #e1e1e1;
    line-height: 1.5;
    margin-bottom: 15px;
}

/* Mobile responsiveness for movies and shows page */
@media (max-width: 768px) {
    .movies-shows-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .movie-show-card {
        padding: 15px;
    }
    
    .movie-show-card h3 {
        font-size: 1.1rem;
    }
}