/* Podstawowy reset stylów i ustawienia globalne */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    
    background-image: url('https://images.unsplash.com/photo-1534796636912-3b95b3ab5986?q=80&w=2071&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    background-color: #000;
    position: relative; /* Potrzebne do pozycjonowania overlay */
}

/* NOWOŚĆ: Warstwa przyciemniająca tło */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.45); /* Czarny z 40% opacity */
    z-index: 1; /* Warstwa jest nad tłem */
}

/* Canvas, na którym będzie dym */
#smoke-canvas {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2; /* Canvas jest nad warstwą przyciemniającą */
}

/* Główna treść strony */
.content {
    position: relative;
    z-index: 3; /* Treść jest na samej górze */
    color: white;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    text-shadow: 0px 4px 15px rgba(0, 0, 0, 0.8);
    pointer-events: none;
}

/* Style dla tekstu i zegara (bez zmian) */
h1 {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

#live-clock {
    font-size: 1.5rem;
    font-weight: 300;
    font-family: 'Courier New', Courier, monospace;
    opacity: 0.9;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }
    #live-clock {
        font-size: 1.1rem;
    }
}