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

html, body {
  width: 100%;
  height: 100%;
  font-family: Arial, Helvetica, sans-serif;
  background: #0b1220;
}

body {
  min-height: 100vh;
}

.hero {
  position: relative;
  min-height: 100vh;
  background-image: url('background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 15, 35, 0.30) 0%, rgba(5, 15, 35, 0.70) 100%),
    radial-gradient(circle at center, rgba(255,255,255,0.08), rgba(0,0,0,0.25));
}

.content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #ffffff;
  padding: 32px;
  width: min(90%, 760px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 24px;
  background: rgba(8, 18, 38, 0.45);
  backdrop-filter: blur(8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.30);
}

.badge {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(41, 182, 246, 0.18);
  border: 1px solid rgba(255,255,255,0.25);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1;
  margin-bottom: 16px;
  text-shadow: 0 6px 24px rgba(0,0,0,0.35);
}

p {
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  line-height: 1.5;
  max-width: 620px;
  margin: 0 auto;
  color: rgba(255,255,255,0.95);
}

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

  .badge {
    font-size: 0.8rem;
  }
}
