* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Poppins, Arial, sans-serif;
}

body {
  background: radial-gradient(circle at top, #1a1a1a, #000);
  color: white;
  height: 100vh;
}

.container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card {
  background: #111;
  padding: 60px;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 0 60px rgba(255,0,85,0.4);
  animation: float 6s ease-in-out infinite;
}

.card.small {
  width: 320px;
}

h1 {
  color: #ff0055;
  letter-spacing: 2px;
}

h2 {
  margin: 15px 0;
}

p {
  opacity: 0.8;
  margin-bottom: 30px;
}

#countdown {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 30px;
}

#countdown div {
  background: #000;
  padding: 15px 20px;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(255,0,85,0.5);
}

#countdown span {
  font-size: 1.8rem;
  color: #ff0055;
}

small {
  display: block;
  font-size: 0.7rem;
}

input {
  width: 100%;
  padding: 12px;
  background: #000;
  border: none;
  color: white;
  border-radius: 10px;
  margin-bottom: 15px;
}

button {
  padding: 12px 30px;
  background: #ff0055;
  border: none;
  border-radius: 30px;
  color: white;
  cursor: pointer;
}

.error {
  color: #ff0055;
  font-size: 0.8rem;
}

@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 30px;
  background: #000;
  border: 1px solid #ff0055;
  color: #ff0055;
  text-decoration: none;
  transition: 0.3s;
}

.btn-secondary:hover {
  background: #ff0055;
  color: white;
}

/* ===== LOGIN BUTTON UPGRADE ===== */

.btn-primary {
  position: relative;
  background: linear-gradient(135deg, #ff0055, #ff4d88);
  box-shadow: 0 10px 30px rgba(255, 0, 85, 0.4);
  transition: all 0.35s ease;
  font-weight: 600;
  letter-spacing: 1px;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 40px rgba(255, 0, 85, 0.6);
}

.btn-primary:active {
  transform: scale(0.98);
}

/* ===== GLOBAL BUTTON FIX (a + button) ===== */

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px;
  border-radius: 30px;
  text-decoration: none;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 1px;
  border: none;
  outline: none;
}

/* PRIMARY */
.btn-primary {
  background: linear-gradient(135deg, #ff0055, #ff4d88);
  color: white;
  box-shadow: 0 10px 30px rgba(255, 0, 85, 0.45);
  transition: all 0.35s ease;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 45px rgba(255, 0, 85, 0.6);
}

.btn-primary:active {
  transform: scale(0.98);
}

/* SECONDARY */
.btn-secondary {
  margin-top: 15px;
  background: transparent;
  border: 1px solid #ff0055;
  color: #ff0055;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #ff0055;
  color: white;
  box-shadow: 0 10px 25px rgba(255, 0, 85, 0.4);
}

/* ===== ADMIN LINK BUTTON (FIX) ===== */

.admin-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px;
  margin-top: 20px;

  background: linear-gradient(135deg, #ff0055, #ff4d88);
  color: white;
  text-decoration: none;

  border-radius: 30px;
  font-weight: 600;
  letter-spacing: 1px;

  box-shadow: 0 10px 30px rgba(255, 0, 85, 0.45);
  transition: all 0.35s ease;
}

.admin-link:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 45px rgba(255, 0, 85, 0.6);
}

.admin-link:active {
  transform: scale(0.98);
}