* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Trebuchet MS", "Arial Black", Arial, sans-serif;
  min-height: 100vh;
  min-height: 100dvh;
  color: #fff8ef;
  background-color: #090008;
  background-image:
    linear-gradient(rgba(10, 0, 8, 0.2), rgba(10, 0, 8, 0.2)),
    url("shatta-cover.png?v=4");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 38%;
}

.overlay {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 24px;
  background:
    radial-gradient(circle at top, rgba(255, 133, 42, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(8, 0, 10, 0.2) 0%, rgba(8, 0, 10, 0.48) 52%, rgba(8, 0, 10, 0.78) 100%);
}

.hero {
  width: min(100%, 980px);
  text-align: center;
  padding: 18px 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.52));
  backdrop-filter: blur(4px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
}

.subline {
  margin: 0;
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: rgba(255, 248, 239, 0.84);
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.55);
}

@media (max-width: 640px) {
  body {
    background-image:
      linear-gradient(rgba(10, 0, 8, 0.16), rgba(10, 0, 8, 0.16)),
      url("mobile-hero.jpg?v=4");
    background-position: center top;
  }

  .overlay {
    padding: 14px;
  }

  .hero {
    padding: 16px 14px;
    border-radius: 18px;
  }
}
