@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
  font-family: "Poppins", sans-serif;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  background: #0b0b1a url("/images/background1.png") no-repeat center center fixed;
  background-size: cover; /* mbulon krejt ekranin në mënyrë të pastër */
}

/* Mbulesë e lehtë për kontrast më të mirë */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35); /* errësim i butë, pa blur */
  z-index: 0;
}

/* Karta me efekt “glass” në qendër */
.center-card {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px); /* vetëm karta është blur */
  border-radius: 25px;
  text-align: center;
  padding: 60px 50px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 8px 50px rgba(0,0,0,0.5);
  animation: fadeIn 1.5s ease forwards;
}

/* Animim për shfaqje të butë */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Logo PastiQ */
.logo {
  font-size: 3.8rem;
  font-weight: 700;
  background: linear-gradient(90deg, #ff9a3c, #ffd36e, #ff577f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 25px;
  letter-spacing: 2px;
}

/* Mesazhet që ndërron JS */
.message {
  font-size: 1.3rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  min-height: 60px;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.fade-in { opacity: 1; }
.fade-out { opacity: 0; }

/* Butoni “Let’s Go” */
.btn {
  background: linear-gradient(135deg, #ff9a3c, #ff577f);
  border: none;
  padding: 14px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  border-radius: 50px;
  cursor: pointer;
  margin-top: 40px;
  box-shadow: 0 6px 20px rgba(255, 87, 127, 0.4);
  transition: all 0.3s ease;
}
.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 87, 127, 0.6);
}

/* ========================
   📱 RESPONSIVE
   ======================== */
@media (max-width: 900px) {
  .center-card {
    padding: 50px 35px;
    background: rgba(20, 20, 30, 0.6);
  }
  .logo { font-size: 3.2rem; }
  .message { font-size: 1.1rem; }
}

@media (max-width: 600px) {
  .center-card {
    width: 88%;
    padding: 40px 25px;
  }
  .logo { font-size: 2.8rem; }
  .message { font-size: 1rem; }
}
