* { margin:0; padding:0; box-sizing:border-box; }
body, html { height:100%; font-family: 'Arial', sans-serif; background: linear-gradient(135deg,#111,#333); display:flex; justify-content:center; align-items:center; color:#FFD700; }

/* Główna sekcja */
.coming-soon { text-align:center; }

/* Neonowy nagłówek */
.neon {
  font-size:3rem;
  color:#FFD700;
  text-shadow: 0 0 5px #FFD700, 0 0 10px #FFD700, 0 0 20px #FFD700, 0 0 40px #FFD700;
  animation: flicker 2s infinite alternate;
  margin-bottom: 20px;
}

@keyframes flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% { opacity:1; }
  20%, 22%, 24%, 55% { opacity:0.4; }
}

.coming-soon p { font-size:1.2rem; margin-bottom:40px; color:#fff; }

/* Loader */
.loader {
  border: 6px solid #333;
  border-top: 6px solid #FFD700;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  margin: auto;
  animation: spin 1s linear infinite, pulse 2s ease-in-out infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1) rotate(360deg); }
  50% { transform: scale(1.2) rotate(180deg); }
}

/* Responsywność */
@media(max-width:768px){
  .neon { font-size:2rem; }
  .loader { width:50px; height:50px; }
}
