*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #fff;
  position: relative;
  overflow-x: hidden;
}

.gradient-bg {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #f6c53b, #f39c12, #e67e22, #e74c3c);
  background-size: 300% 300%;
  animation: gradientShift 18s ease infinite;
  z-index: -2;
}

.page-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 16px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.logo-header {
  text-align: center;
  background: transparent;
}

.logo {
  max-width: 420px;
  width: 80vw;
  height: auto;
  display: block;
  margin: 0 auto;
  background: none;
  border: none;
  border-radius: 24px;

  /* Blending + lighting tweaks */
  mix-blend-mode: multiply;
  filter:
    drop-shadow(0 8px 18px rgba(0, 0, 0, 0.45))
    brightness(1.05)
    saturate(1.1);

  /* Glow effect */
  box-shadow:
    0 0 25px rgba(255, 180, 60, 0.45),
    0 0 60px rgba(255, 120, 0, 0.25);
  transition: all 0.3s ease-in-out;
}

.logo:hover {
  transform: scale(1.03);
  filter:
    drop-shadow(0 10px 25px rgba(0, 0, 0, 0.5))
    brightness(1.1)
    saturate(1.15);
  box-shadow:
    0 0 35px rgba(255, 200, 80, 0.55),
    0 0 70px rgba(255, 100, 0, 0.3);
}

.tagline {
  margin-top: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.content-card {
  width: 100%;
  background: rgba(22, 16, 8, 0.9);
  border-radius: 24px;
  padding: 24px 20px 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.coming-soon h1 {
  font-size: 1.9rem;
  margin-bottom: 8px;
}

.launch-text {
  font-size: 1rem;
  line-height: 1.5;
}

.launch-date {
  font-size: 1.1rem;
  font-weight: 700;
  display: inline-block;
  margin-top: 4px;
}

/* Countdown styles */

.countdown-section {
  border-radius: 18px;
  padding: 14px 16px 16px;
  background: radial-gradient(circle at top, rgba(255, 193, 94, 0.18), transparent 55%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.countdown-section h2 {
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.countdown-subtitle {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 10px;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 8px;
}

.count-item {
  background: rgba(0, 0, 0, 0.38);
  border-radius: 16px;
  padding: 10px 8px;
  text-align: center;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.4);
}

.count-number {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.count-label {
  display: block;
  margin-top: 2px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.85;
}

.countdown-note {
  font-size: 0.85rem;
  opacity: 0.9;
}

.intro p {
  font-size: 0.98rem;
  line-height: 1.7;
}

.contact-section h2,
.social-section h2 {
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.contact-section p,
.social-section p {
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.contact-form {
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hidden {
  display: none;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-row label {
  font-size: 0.85rem;
  font-weight: 500;
}

.form-row input,
.form-row textarea {
  border-radius: 12px;
  border: none;
  padding: 10px 12px;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
}

.btn-primary {
  margin-top: 4px;
  border-radius: 999px;
  border: none;
  padding: 10px 20px;
  font-size: 0.98rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  background: linear-gradient(135deg, #f6c53b, #f39c12, #e67e22);
  color: #3b2209;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.4);
  transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.45);
  filter: brightness(1.03);
}

.btn-primary:active {
  transform: translateY(1px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.email-note {
  margin-top: 4px;
  font-size: 0.85rem;
}

.email-note a {
  color: #f9d66b;
  text-decoration: underline;
}

.social-section {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 14px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
  color: #fff;
  font-size: 0.9rem;
  transition: background 0.15s ease, transform 0.12s ease;
}

.social-links a i {
  font-size: 1.1rem;
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 6px;
  padding-top: 10px;
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.halal {
  font-weight: 600;
}

.small-print {
  opacity: 0.85;
}

a {
  color: inherit;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@media (min-width: 768px) {
  .page-wrapper {
    padding: 40px 24px 48px;
  }

  .content-card {
    padding: 28px 28px 22px;
  }

  .coming-soon h1 {
    font-size: 2.2rem;
  }

  .launch-text {
    font-size: 1.05rem;
  }

  .intro p {
    font-size: 1.02rem;
  }
}

@media (max-width: 640px) {
  .content-card {
    border-radius: 20px;
    padding: 20px 16px 18px;
  }

  .coming-soon h1 {
    font-size: 1.6rem;
  }

  .tagline {
    font-size: 0.95rem;
  }

  .countdown {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
