/* -------------------- GLOBAL RESET -------------------- */
html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

:root {
  --primary-color: #f4c430;
  --text-color: #333;
}

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: #000;
}

/* -------------------- BLURRED BACKGROUND -------------------- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url('images/bg.jpg') center / cover no-repeat;
  filter: blur(6px);
  transform: scale(1.05);
  z-index: -2;
}

/* LIGHT OVERLAY */
body::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: -1;
}

/* -------------------- CONTAINER -------------------- */
.container {
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  max-width: 820px;
  width: 90%;
  padding: 45px 35px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  animation: fadeIn 1.4s ease;
}

/* -------------------- HEADINGS -------------------- */
.main-heading {
  font-size: 2.6rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.brand-name {
  font-size: 2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 18px;
}

.brand-name span {
  color: var(--primary-color);
}

.subtitle {
  font-size: 1.1rem;
  color: #dddddd;
  margin-bottom: 28px;
}

/* -------------------- LOADER -------------------- */
.loader {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
}

.loader span {
  width: 12px;
  height: 12px;
  background: var(--primary-color);
  border-radius: 50%;
  animation: bounce 1.4s infinite ease-in-out both;
}

.loader span:nth-child(1) { animation-delay: -0.32s; }
.loader span:nth-child(2) { animation-delay: -0.16s; }

/* -------------------- CONTACT -------------------- */
.contact p {
  font-size: 0.95rem;
  margin: 6px 0;
  color: #e0e0e0;
}

.contact a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

.contact a:hover {
  text-decoration: underline;
}

/* -------------------- LOGO -------------------- */
.logo-badge {
  background: #ffffff;
  display: inline-block;
  padding: 12px 18px;
  border-radius: 10px;
  margin-bottom: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.logo-badge img {
  max-width: 220px;
  width: 100%;
  height: auto;
  display: block;
}

.logo img {
  filter: drop-shadow(0 0 4px #fff) drop-shadow(0 0 8px #fff);
}

/* -------------------- ANIMATIONS -------------------- */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 80%, 100% { transform: scale(0); }
  40% { transform: scale(1); }
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

/* -------------------- RESPONSIVE -------------------- */
@media (max-width: 600px) {
  .main-heading {
    font-size: 1.9rem;
  }

  .brand-name {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.8rem;
  }

  .logo-badge img {
    max-width: 180px;
  }

  .container {
    padding: 30px 20px;
  }
}
