* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #071a3d;
  font-family: Arial, Helvetica, sans-serif;
}

.sticky-call {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #071a3d;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  font-weight: 900;
  border-bottom: 4px solid #d71920;
}

.sticky-call a {
  background: #d71920;
  color: white;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
}

.poster-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  background: #071a3d;
}

.poster {
  width: 100%;
  max-width: 1400px;
  display: block;
}

.mobile-call {
  background: linear-gradient(135deg, #d71920, #071a3d);
  color: white;
  text-align: center;
  padding: 30px 18px 40px;
}

.mobile-call h1 {
  font-size: 38px;
  margin: 0 0 8px;
}

.mobile-call p {
  font-size: 18px;
  margin: 0 0 20px;
}

.mobile-call a {
  display: inline-block;
  margin: 6px;
  background: white;
  color: #071a3d;
  padding: 14px 22px;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 700px) {
  .sticky-call {
    flex-direction: column;
    text-align: center;
  }
}
