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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #000000 0%, #1a0a1a 50%, #000000 100%);
    min-height: 100vh;
    overflow-x: hidden;
    color: #ffffff;
}

.container {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-particles::before,
.floating-particles::after {
    content: '❄';
    position: absolute;
    font-size: 20px;
    color: white;
    animation: snowfall 12s linear infinite;
    text-shadow: 0 0 10px white;
}

.floating-particles::before {
    left: 20%;
    animation-delay: 1s;
}

.floating-particles::after {
    left: 70%;
    animation-delay: 4s;
}

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

.floating-particles::after {
    top: 60%;
    right: 20%;
    animation-delay: 3s;
}

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

.main-content {
    text-align: center;
    z-index: 2;
    position: relative;
    animation: fadeInUp 2s ease-out;
    padding: 20px 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.image-container {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.main-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ff0080;
    box-shadow: 0 0 30px #ff0080, 0 0 60px #ff0040;
    animation: pulse 3s ease-in-out infinite;
    filter: brightness(1.1) contrast(1.1);
}

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

.glow-effect {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff0080, #ff0040, #ff4081, #ff6b9d);
    opacity: 0.7;
    z-index: -1;
    animation: rotate 4s linear infinite;
}

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

.name-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 40px;
    color: #ff0080;
    text-shadow: 0 0 20px #ff0080, 0 0 40px #ff0080, 0 0 60px #ff0080;
    animation: neonPulse 2s ease-in-out infinite alternate;
}

@keyframes neonPulse {
    0% { 
        text-shadow: 0 0 20px #ff0080, 0 0 40px #ff0080, 0 0 60px #ff0080;
    }
    100% { 
        text-shadow: 0 0 30px #ff0080, 0 0 60px #ff0080, 0 0 90px #ff0080, 0 0 120px #ff1493;
    }
}

@keyframes neon-flicker {
    0%, 100% { 
        text-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff, 0 0 30px #00ffff, 0 0 40px #00ffff;
    }
    50% { 
        text-shadow: 0 0 5px #00ffff, 0 0 10px #00ffff, 0 0 15px #00ffff, 0 0 20px #00ffff;
    }
}

@keyframes shimmer {
    from { filter: brightness(1); }
    to { filter: brightness(1.2); }
}

.poem-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 2px solid #ff0040;
    box-shadow: 0 0 30px #ff0040, inset 0 0 30px rgba(255, 0, 64, 0.1);
    animation: slideIn 2s ease-out 0.5s both;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.poem-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #ff6b9d;
    text-shadow: 0 0 10px #ff6b9d, 0 0 20px #ff6b9d;
    animation: typewriter 0.5s ease-out forwards;
    opacity: 0;
}

.poem-text p:nth-child(1) { animation-delay: 1s; }
.poem-text p:nth-child(2) { animation-delay: 1.2s; }
.poem-text p:nth-child(3) { animation-delay: 1.4s; }
.poem-text p:nth-child(4) { animation-delay: 1.6s; }
.poem-text p:nth-child(6) { animation-delay: 1.8s; }
.poem-text p:nth-child(7) { animation-delay: 2s; }
.poem-text p:nth-child(8) { animation-delay: 2.2s; }
.poem-text p:nth-child(9) { animation-delay: 2.4s; }

@keyframes typewriter {
    to {
        opacity: 1;
    }
}

.signature {
    font-style: italic;
    color: #ff4081;
    text-shadow: 0 0 10px #ff4081, 0 0 20px #ff4081;
    font-weight: bold;
    margin-top: 20px !important;
    animation-delay: 2.6s !important;
}



.snow-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(20, 0, 20, 0.8) 0%, rgba(40, 0, 20, 0.6) 50%, rgba(60, 0, 30, 0.4) 100%);
}

.snow-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><radialGradient id="cloud" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="white" stop-opacity="0.3"/><stop offset="100%" stop-color="white" stop-opacity="0"/></radialGradient></defs><circle cx="20" cy="30" r="15" fill="url(%23cloud)"/><circle cx="80" cy="70" r="20" fill="url(%23cloud)"/><circle cx="50" cy="20" r="12" fill="url(%23cloud)"/></svg>') repeat;
    animation: cloudMove 20s ease-in-out infinite;
    opacity: 0.3;
}

@keyframes cloudMove {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(10px) translateY(-5px); }
    50% { transform: translateX(-5px) translateY(10px); }
    75% { transform: translateX(5px) translateY(-10px); }
}

.snow-background::before,
.snow-background::after {
    content: '';
    position: absolute;
    top: -100px;
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    animation: snowfall 8s linear infinite;
}

.snow-background::before {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 6s;
}

.snow-background::after {
    left: 80%;
    animation-delay: 2s;
    animation-duration: 10s;
}

@keyframes snowfall {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}



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

.poem-text {
    animation: gentle-float 6s ease-in-out infinite;
}

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

.music-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 0, 128, 0.3);
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 0 20px #ff0080;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
    z-index: 1000;
    -webkit-tap-highlight-color: transparent;
}

.music-toggle:hover,
.music-toggle:active {
    transform: scale(1.1);
}

@media (hover: none) {
    .music-toggle:active {
        transform: scale(0.95);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    
    .name-title {
        font-size: 2.2rem;
        margin-bottom: 25px;
    }
    
    .poem-text p {
        font-size: 1.1rem;
        line-height: 1.6;
    }
    
    .main-image {
        width: 160px;
        height: 160px;
    }
    
    .poem-container {
        margin: 0 15px;
        padding: 25px 20px;
        max-width: 90%;
    }
    
    .music-toggle {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 20px;
    }
    
    .image-container {
        margin-bottom: 25px;
    }
}

@media (max-width: 480px) {
    .name-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .poem-text p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .main-image {
        width: 140px;
        height: 140px;
    }
    
    .poem-container {
        margin: 0 10px;
        padding: 20px 15px;
        max-width: 95%;
    }
    
    .music-toggle {
        width: 45px;
        height: 45px;
        bottom: 15px;
        right: 15px;
        font-size: 18px;
    }
}