body {
    font-family: 'Arial', sans-serif;
    background-color: #0d0d0d;
    color: #f0f0f0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    text-align: center;
    overflow: hidden;
    letter-spacing: 1px;
}

.domain-title {
    /* Zmieniono z 5em na 10vw dla skalowania */
    font-size: 10vw; 
    font-weight: 900;
    color: #C53A90;
    text-shadow:
        0 0 10px #C53A90,
        0 0 20px #8A2BE2,
        0 0 40px rgba(138, 43, 226, 0.4);
    margin-bottom: 20px;
    animation: flicker 1.5s infinite alternate;
}

.message {
    margin-top: 20px;
    /* Zmieniono z 1.4em na 3vw dla skalowania */
    font-size: 3vw; 
    text-transform: uppercase;
    color: #8A2BE2;
    letter-spacing: 4px;
    padding: 10px 20px;
    border: 2px solid #8A2BE2;
    border-radius: 5px;
    box-shadow:
        0 0 5px #8A2BE2,
        0 0 15px #8A2BE2;
    transition: box-shadow 0.1s ease-in-out;
}

.message-text {
    color: #C53A90;
    text-shadow: 0 0 4px #C53A90;
    font-weight: bold;
}

@keyframes flicker {
    0% { opacity: 0.98; }
    5% { opacity: 0.85; }
    10% { opacity: 1; }
    12% { opacity: 0.9; }
    15% { opacity: 1; }
    20% { opacity: 0.7; }
    22% { opacity: 1; }
    25% { opacity: 0.9; }
    30% { opacity: 1; }
    50% { opacity: 1; }
    55% { opacity: 0.92; }
    60% { opacity: 1; }
    90% { opacity: 1; }
    95% { opacity: 0.88; }
    100% { opacity: 1; }
}

#stars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1; 
}

#stars-container span {
    position: absolute;
    background: #C53A90;
    border-radius: 50%;
    box-shadow: 0 0 5px 1px #8A2BE2; 
    opacity: 0; 
    
    animation-name: star-flight;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes star-flight {
    0% {
        transform: translateY(150vh) scale(0.1); 
        opacity: 0;
    }
    5% {
        opacity: 1;
    }
    90% {
        transform: translateY(-50vh) scale(0.8); 
        opacity: 0.8;
    }
    100% {
        transform: translateY(-200vh) scale(1.2); 
        opacity: 0;
    }
}