* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Lato', sans-serif;
  background-color: #000;
  color: #000000;
}

.hero-section {
  background: url('https://shqiperi.org/tirana.png') no-repeat center center/cover;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.0);
  /* backdrop-filter removed */
  z-index: 1;
}

.content {
  position: relative;
  z-index: 2;
  padding: 20px;
  width: 100%;
}
.logo {
  width: 100px;
  margin-bottom: 20px;
}
.title {
  font-size: 2.6rem;
  margin-bottom: 10px;
  font-weight: bold;
}
.subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
}
#countdown {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 30px;
}
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  margin: 10px;
  transition: background 0.3s ease;
}
.btn-primary {
  background-color: #00AEEF;
  color: white;
  border: none;
}
.btn-primary:hover {
  background-color: #007fb1;
}
.btn-secondary {
  background-color: #444;
  color: white;
}
.btn-secondary:hover {
  background-color: #222;
}
/* Form Specific */
.form-content {
  max-width: 480px;
  margin: auto;
  background-color: rgba(255,255,255,0.05);
  padding: 40px 30px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  text-align: left;
}
.form-container label {
  display: block;
  margin-top: 15px;
  font-weight: 600;
}
.form-container input {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: none;
  margin-top: 5px;
  font-size: 15px;
  background-color: rgba(255,255,255,0.1);
  color: white;
}
.form-container input::placeholder {
  color: #ccc;
}
