* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.container {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem;
    max-width: 800px;
    width: 100%;
}

.content {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 40px;
    padding: 5rem 4rem;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset,
        0 0 100px rgba(255, 255, 255, 0.1);
    animation: fadeInUp 1s ease-out;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 2;
}

.content > * {
    position: relative;
    z-index: 10;
}

.content::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
    border-radius: 40px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.content:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.3) inset,
        0 0 120px rgba(255, 255, 255, 0.15);
}

.content:hover::before {
    opacity: 1;
}

.sparkle-container {
    position: relative;
    height: 80px;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    isolation: isolate;
}

.sparkle-icon {
    position: absolute;
    font-size: 4rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) drop-shadow(0 0 8px rgba(255, 192, 203, 0.6));
    animation: sparkle 2s ease-in-out infinite;
    z-index: 15;
    display: inline-block;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.sparkle-1 {
    animation-delay: 0s;
    transform: translateX(-45px) rotate(-15deg);
}

.sparkle-2 {
    animation-delay: 0.3s;
    font-size: 5rem;
    z-index: 2;
}

.sparkle-3 {
    animation-delay: 0.6s;
    transform: translateX(45px) rotate(15deg);
}

.title {
    font-size: 3.8rem;
    font-weight: 800;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    text-shadow: 
        0 2px 20px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(255, 255, 255, 0.6),
        2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
    position: relative;
    z-index: 15;
    filter: none !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.title-text {
    position: relative;
    display: inline-block;
    z-index: 15;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

.title-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: underline 2s ease-in-out infinite;
}

.sparkle-left,
.sparkle-right {
    font-size: 3rem;
    animation: sparkle 2s ease-in-out infinite;
    display: inline-block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) drop-shadow(0 0 6px rgba(255, 192, 203, 0.6));
    transition: transform 0.3s ease;
    position: relative;
    z-index: 15;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.sparkle-left:hover,
.sparkle-right:hover {
    transform: scale(1.3) rotate(180deg);
}

.sparkle-right {
    animation-delay: 0.5s;
}

.divider {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    margin: 2rem auto;
    animation: expand 1.5s ease-out;
}

.message {
    font-size: 1.6rem;
    color: #ffffff;
    margin-bottom: 1.2rem;
    font-weight: 400;
    animation: fadeIn 1.5s ease-out;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4), 0 0 10px rgba(255, 255, 255, 0.3);
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

.sub-message {
    font-size: 1.3rem;
    color: #ffffff;
    font-weight: 300;
    animation: fadeIn 2s ease-out;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4), 0 0 10px rgba(255, 255, 255, 0.3);
    letter-spacing: 0.3px;
    position: relative;
    z-index: 1;
}

.heart {
    display: inline-block;
    animation: heartbeat 1.5s ease-in-out infinite;
    font-size: 1.8rem;
    filter: drop-shadow(0 0 8px rgba(255, 192, 203, 0.8));
    margin-left: 0.3rem;
}

/* Background Animation */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    animation: float 20s infinite ease-in-out;
    filter: blur(40px);
}

.circle-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.circle-2 {
    width: 300px;
    height: 300px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.circle-3 {
    width: 350px;
    height: 350px;
    bottom: 10%;
    left: 50%;
    animation-delay: 4s;
}

.circle-4 {
    width: 250px;
    height: 250px;
    top: 30%;
    right: 30%;
    animation-delay: 6s;
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: particleFloat 15s infinite ease-in-out;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.particle:nth-child(1) {
    left: 20%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.particle:nth-child(2) {
    left: 40%;
    animation-delay: 2s;
    animation-duration: 18s;
}

.particle:nth-child(3) {
    left: 60%;
    animation-delay: 4s;
    animation-duration: 15s;
}

.particle:nth-child(4) {
    left: 80%;
    animation-delay: 1s;
    animation-duration: 14s;
}

.particle:nth-child(5) {
    left: 15%;
    animation-delay: 3s;
    animation-duration: 16s;
}

.particle:nth-child(6) {
    left: 70%;
    animation-delay: 5s;
    animation-duration: 13s;
}

.particle:nth-child(7) {
    left: 35%;
    animation-delay: 2.5s;
    animation-duration: 17s;
}

.particle:nth-child(8) {
    left: 85%;
    animation-delay: 4.5s;
    animation-duration: 19s;
}

/* Animations */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes sparkle {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
        filter: drop-shadow(0 0 8px rgba(255, 192, 203, 0.6)) brightness(1);
    }
    50% {
        transform: scale(1.2) rotate(10deg);
        opacity: 1;
        filter: drop-shadow(0 0 12px rgba(255, 192, 203, 0.8)) brightness(1.1);
    }
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.3);
    }
    50% {
        transform: scale(1);
    }
    75% {
        transform: scale(1.2);
    }
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    33% {
        transform: translate(50px, -50px) rotate(120deg) scale(1.1);
    }
    66% {
        transform: translate(-30px, 30px) rotate(240deg) scale(0.9);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes underline {
    0%, 100% {
        opacity: 0;
        transform: scaleX(0);
    }
    50% {
        opacity: 1;
        transform: scaleX(1);
    }
}

@keyframes expand {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 100px;
        opacity: 1;
    }
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(100px) rotate(360deg);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .content {
        padding: 3.5rem 2.5rem;
        border-radius: 30px;
    }
    
    .title {
        font-size: 2.8rem;
    }
    
    .sparkle-left,
    .sparkle-right {
        font-size: 2.2rem;
    }
    
    .message {
        font-size: 1.3rem;
    }
    
    .sub-message {
        font-size: 1.1rem;
    }
    
    .sparkle-icon {
        font-size: 3.5rem;
    }
    
    .sparkle-2 {
        font-size: 4rem;
    }
    
    .sparkle-container {
        height: 70px;
    }
    
    .circle-1,
    .circle-2,
    .circle-3,
    .circle-4 {
        filter: blur(30px);
    }
}

@media (max-width: 480px) {
    .content {
        padding: 2.5rem 2rem;
        border-radius: 25px;
    }
    
    .title {
        font-size: 2.2rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .sparkle-left,
    .sparkle-right {
        font-size: 1.8rem;
    }
    
    .message {
        font-size: 1.15rem;
    }
    
    .sub-message {
        font-size: 1rem;
    }
    
    .sparkle-icon {
        font-size: 3rem;
    }
    
    .sparkle-2 {
        font-size: 3.5rem;
    }
    
    .sparkle-container {
        height: 60px;
        margin-bottom: 1.5rem;
    }
    
    .divider {
        width: 80px;
        margin: 1.5rem auto;
    }
}


