﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: 'Arial', sans-serif;
    background-image: url('Snowy.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow-y: auto;
}


#snow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}


.container {
    position: relative;
    z-index: 2;
    padding: 60px 20px;
}


.card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    max-width: 400px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease;
}


.card:hover {
    transform: translateY(-5px);
}

.logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid #667eea;
    position: relative;
    animation: electricPulse 2s infinite;
}

.logo::before,
.logo::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, #fff, #ffff00, transparent);
    animation: lightning 1.5s infinite;
    opacity: 0;
}

.logo::before {
    top: -40px;
    left: 50%;
    transform: translateX(-50%) rotate(-15deg);
    animation-delay: 0.3s;
}

.logo::after {
    bottom: -40px;
    right: 10%;
    transform: rotate(15deg);
}

@keyframes electricPulse {
    0%, 100% {
        box-shadow: 
            0 0 20px rgba(102, 126, 234, 0.6),
            0 0 40px rgba(102, 126, 234, 0.4);
        filter: brightness(1);
    }
    50% {
        box-shadow: 
            0 0 30px rgba(255, 255, 0, 1),
            0 0 60px rgba(255, 255, 0, 0.8);
        filter: brightness(1.3);
    }
}

@keyframes lightning {
    0%, 90%, 100% {
        opacity: 0;
    }
    93%, 97% {
        opacity: 1;
    }
}
@keyframes purplePulse {
    0%, 100% {
        box-shadow: 
            0 0 20px rgba(138, 43, 226, 0.8),
            0 0 40px rgba(138, 43, 226, 0.6);
        filter: brightness(1.2);
        border-color: #8a2be2;
    }
    50% {
        box-shadow: 
            0 0 30px rgba(186, 85, 211, 1),
            0 0 60px rgba(186, 85, 211, 0.8);
        filter: brightness(1.5);
        border-color: #ba55d3;
    }
}

.logo.playing {
    animation: purplePulse 1s infinite;
}

h1 {
    color: #333;
    margin-bottom: 30px;
    font-size: 32px;
}


.info {
    text-align: left;
    margin-bottom: 30px;
}


.info p {
    margin: 15px 0;
    color: #555;
    font-size: 16px;
    line-height: 1.6;
}


.music-player {
    margin: 30px 0;
    padding: 20px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 15px;
}


.music-player h3 {
    color: #667eea;
    margin-bottom: 15px;
}


#audio {
    width: 100%;
    margin-bottom: 15px;
}


.playlist {
    display: flex;
    flex-direction: column;
    gap: 10px;
}


.song-btn {
    background: #667eea;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}


.song-btn:hover {
    background: #764ba2;
    transform: scale(1.05);
}


.website-link {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    transition: all 0.3s ease;
}


.website-link:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}
.fade-title {
    animation: fadeInOut 4s infinite;
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}







