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

body {
    font-family: 'Noto Sans Devanagari', 'Playfair Display', serif;
    background: linear-gradient(135deg, #1a0a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
    overflow: hidden;
    position: relative;
}

.video-container {
    width: 100vw;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Animated Background Particles */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particles::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 107, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 142, 142, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 200, 200, 0.2) 0%, transparent 40%);
    animation: particleFloat 20s ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.5; }
    50% { transform: translateY(-30px) scale(1.1); opacity: 0.8; }
}

/* Light Rays Effect */
.light-rays {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(255, 200, 150, 0.1) 30deg,
        transparent 60deg,
        rgba(255, 180, 180, 0.08) 90deg,
        transparent 120deg,
        rgba(255, 220, 200, 0.1) 150deg,
        transparent 180deg
    );
    animation: rotateRays 30s linear infinite;
    z-index: 2;
    pointer-events: none;
}

@keyframes rotateRays {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Bokeh Lights */
.bokeh-lights {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.bokeh-lights::before,
.bokeh-lights::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: bokehPulse 4s ease-in-out infinite;
}

.bokeh-lights::before {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 150, 150, 0.4) 0%, transparent 70%);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.bokeh-lights::after {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 200, 150, 0.3) 0%, transparent 70%);
    bottom: 20%;
    right: 15%;
    animation-delay: 2s;
}

@keyframes bokehPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

/* Main Content */
.content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 600px;
    padding: 20px;
}

/* Image Styling */
.image-wrapper {
    position: relative;
    margin-bottom: 40px;
    animation: imageFloat 6s ease-in-out infinite;
}

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

.image-frame {
    position: relative;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(255, 150, 150, 0.3),
        inset 0 0 60px rgba(255, 200, 200, 0.1);
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.1) contrast(1.05) saturate(1.1);
    transition: transform 0.5s ease;
}

.image-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: linear-gradient(45deg, 
        rgba(255, 150, 150, 0.4),
        rgba(255, 200, 150, 0.2),
        rgba(255, 150, 200, 0.3)
    );
    filter: blur(20px);
    animation: glowPulse 3s ease-in-out infinite;
    z-index: -1;
}

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

.image-border {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 3px solid transparent;
    background: linear-gradient(45deg, 
        rgba(255, 200, 150, 0.8),
        rgba(255, 150, 150, 0.8),
        rgba(255, 180, 200, 0.8)
    ) border-box;
    -webkit-mask: 
        linear-gradient(#fff 0 0) padding-box, 
        linear-gradient(#fff 0 0);
    mask: 
        linear-gradient(#fff 0 0) padding-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: borderRotate 8s linear infinite;
}

@keyframes borderRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Floating Hearts */
.floating-hearts {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.floating-hearts::before,
.floating-hearts::after {
    content: '♥';
    position: absolute;
    color: rgba(255, 150, 150, 0.6);
    font-size: 24px;
    animation: heartFloat 4s ease-in-out infinite;
}

.floating-hearts::before {
    top: -20px;
    left: 20%;
    animation-delay: 0s;
}

.floating-hearts::after {
    top: 20px;
    right: 20%;
    animation-delay: 2s;
    font-size: 18px;
}

@keyframes heartFloat {
    0%, 100% { 
        transform: translateY(0) scale(1); 
        opacity: 0.6; 
    }
    50% { 
        transform: translateY(-30px) scale(1.2); 
        opacity: 1; 
    }
}

/* Lyrics Styling */
.lyrics-container {
    text-align: center;
    margin-bottom: 30px;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lyrics-wrapper {
    position: relative;
}

.lyric-line {
    font-size: 1.8rem;
    font-weight: 600;
    color: #fff;
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(255, 150, 150, 0.5);
    margin: 10px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    width: 100%;
    left: 0;
    white-space: nowrap;
}

.lyric-line.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
}

.lyric-line::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 200, 150, 0.8), transparent);
    transition: width 2s ease;
}

.lyric-line.active::after {
    width: 80%;
}

/* Song Title */
.song-title {
    text-align: center;
    animation: titleFadeIn 2s ease-out;
}

.song-title h1 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffd700, #ff6b6b, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.song-title .subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    letter-spacing: 3px;
    text-transform: uppercase;
}

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

/* Rose Petals Animation */
.rose-petals {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 5;
    overflow: hidden;
}

.rose-petals::before,
.rose-petals::after {
    content: '🌹';
    position: absolute;
    font-size: 30px;
    opacity: 0;
    animation: petalFall 8s linear infinite;
}

.rose-petals::before {
    left: 10%;
    animation-delay: 0s;
}

.rose-petals::after {
    left: 80%;
    animation-delay: 4s;
    font-size: 25px;
}

@keyframes petalFall {
    0% {
        top: -50px;
        opacity: 0;
        transform: rotate(0deg) translateX(0);
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        top: 100vh;
        opacity: 0;
        transform: rotate(360deg) translateX(50px);
    }
}

/* Sparkles */
.sparkles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 6;
}

.sparkles::before,
.sparkles::after {
    content: '✨';
    position: absolute;
    font-size: 20px;
    animation: sparkleTwinkle 3s ease-in-out infinite;
}

.sparkles::before {
    top: 30%;
    left: 20%;
    animation-delay: 0s;
}

.sparkles::after {
    top: 60%;
    right: 25%;
    animation-delay: 1.5s;
    font-size: 16px;
}

@keyframes sparkleTwinkle {
    0%, 100% { opacity: 0; transform: scale(0.5) rotate(0deg); }
    50% { opacity: 1; transform: scale(1.2) rotate(180deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .image-frame {
        width: 220px;
        height: 220px;
    }
    
    .lyric-line {
        font-size: 1.4rem;
    }
    
    .song-title h1 {
        font-size: 2rem;
    }
}

/* Print/Recording Optimizations */
@media print {
    .video-container {
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
}