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

.prox-body {
  font-family: 'Ubuntu', sans-serif;
  background: #0d0d0d;
  color: #ffffff;
  text-align: center;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.prox-header {
  background: linear-gradient(270deg, #bfa14a, #a6a6a6, #bfa14a);
  background-size: 600% 600%;
  animation: backgroundShift 12s ease infinite;
  padding: 12vh 5vw;
  border-bottom: 0.2rem solid #bfa14a;
  box-shadow: 0 0.5rem 1rem rgba(191, 161, 74, 0.4);
  position: relative;
}

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

.prox-header__content {
  max-width: 60rem;
  margin: 0 auto;
}

.prox-title {
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 0 1rem rgba(0,0,0,0.6);
  line-height: 1.2;
}

.prox-main {
  flex: 1;
  padding: 8vh 5vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prox-intro {
  max-width: 45rem;
  margin: 0 auto;
}

.prox-intro__title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #bfa14a;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.prox-intro__title::before,
.prox-intro__title::after {
  content: "";
  display: inline-block;
  width: 2.5rem;
  height: 0.15rem;
  background: #bfa14a;
  margin: 0 0.8rem;
  vertical-align: middle;
}

.prox-intro__text {
  font-size: 1rem;
  color: #a6a6a6;
  line-height: 1.8;
}

.highlight {
  color: #bfa14a;
  font-weight: 600;
}

.prox-footer {
  padding: 2vh 0;
  border-top: 0.1rem solid #bfa14a;
  background: #0d0d0d;
}

.prox-footer__copyright {
  font-size: 0.8rem;
  color: #a6a6a6;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
}

@media screen and (max-width: 768px) {
  .prox-title {
    font-size: 2.8rem;
  }

  .prox-intro__title {
    font-size: 1.3rem;
  }

  .prox-intro__text {
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 482px) {
  .prox-header {
    padding: 10vh 5vw;
  }

  .prox-title {
    font-size: 2rem;
  }

  .prox-intro__title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }

  .prox-intro__title::before,
  .prox-intro__title::after {
    width: 1.5rem;
  }

  .prox-intro__text {
    font-size: 0.85rem;
    line-height: 1.6;
  }

  .prox-footer__copyright {
    font-size: 0.7rem;
  }
}
