/* --- Body i tło neon --- */
body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle at center, #0a0a0a 0%, #000000 100%);
    color: #df2c94;
    font-family: "Anonymous Pro", monospace;
    overflow: hidden;
}

/* Efekt glow w tle */
body::before {
    content: "";
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(223,44,149,0.25), rgba(0,0,0,0));
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(120px);
    z-index: -1;
}

/* --- Tytuły neonowe --- */
h1 {
    font-size: 42px;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 0 15px #df2c94, 0 0 30px #df2c94;
}

/* --- Licznik neonowy --- */
#countdown {
    font-size: 58px;
    font-weight: 700;
    text-shadow: 0 0 25px #df2c94, 0 0 50px #df2c94;
    animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
    0% { text-shadow: 0 0 20px #df2c94; }
    50% { text-shadow: 0 0 40px #df2c94; }
    100% { text-shadow: 0 0 20px #df2c94; }
}

/* --- Sekcja po premierze --- */
#content {
    margin-top: 40px;
    font-size: 22px;
    opacity: 0;
    animation: fadeIn 1.5s forwards ease-out;
    text-align: center;
    text-shadow: 0 0 15px #df2c94;
}

@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* --- Linki neonowe --- */
#content a {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background: rgba(223,44,149,0.2);
    border: 1px solid rgba(223,44,149,0.6);
    border-radius: 8px;
    color: #df2c94;
    font-size: 20px;
    text-decoration: none;
    transition: 0.3s;
    text-shadow: 0 0 10px #df2c94;
}

#content a:hover {
    background: rgba(223,44,149,0.4);
    transform: scale(1.07);
    box-shadow: 0 0 25px #df2c94;
}

/* --- Neonowy Pop-up --- */
.popup-window {
    position: fixed;
    background: rgba(10,10,20,0.95);
    border: 2px solid #df2c94;
    border-radius: 12px;
    box-shadow: 0 0 40px rgba(223,44,149,0.8);
    z-index: 9999;
    width: 320px;
    overflow: hidden;
    animation: popupIn 0.5s ease-out;
    font-family: "Anonymous Pro", monospace;
}

/* Animacja wejścia pop-up */
@keyframes popupIn {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

/* Pasek nagłówka */
.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(90deg, #0a0a0a, #111122);
    padding: 8px 12px;
    font-weight: bold;
    font-size: 14px;
    text-shadow: 0 0 8px #df2c94;
}

/* Przycisk X pop-up */
.popup-header .close {
    background: transparent;
    border: none;
    color: #ff5555;
    font-size: 18px;
    cursor: pointer;
    transition: transform 0.2s;
}

.popup-header .close:hover {
    transform: scale(1.2);
}

/* Wideo w pop-up */
.popup-window video {
    display: block;
    width: 100%;
    height: auto;
    border-bottom: 2px solid #df2c94;
    box-shadow: 0 0 15px #df2c94;
}

/* Przycisk Włącz dźwięk */
#unmuteBtn {
    display: block;
    width: 90%;
    margin: 10px auto 15px auto;
    padding: 10px;
    background: linear-gradient(90deg, #df2c94, #af2174);
    border: 1px solid #df2c94;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    text-align: center;
    text-shadow: 0 0 5px #df2c94;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}

#unmuteBtn:hover {
    background: linear-gradient(90deg, #af2174, #df2c94);
    transform: scale(1.05);
    box-shadow: 0 0 25px #df2c94;
}

/* Kontener okładki */
.album-cover {
    width: 300px;          /* szerokość okładki */
    height: 300px;         /* wysokość okładki */
    margin: 20px auto;     /* wyśrodkowanie i odstęp od góry/dol */
    border: 3px solid #df2c94; /* neonowa ramka */
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(223,44,149,0.7);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.album-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* dopasowanie obrazu do kontenera */
    display: block;
}

/* Efekt hover */
.album-cover:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(223,44,149,0.9);
}