@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  --color-dark:#293136;
  --color-light:#fdfdf9;
  --color-red:#D63D43;
  --color-blue:#063d8d;
  --color-green:#53b11e;
  --color-gray:#3b3d3b;
  --color-island:#252A2D;
  --color-brend:#9CE800;
  --color-black:#000;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: var(--color-light);
  background-color: var(--color-dark);
}

h1, h2, h3, h4, h5, h6 {
  font-family: Angkor, Arial, sans-serif;
  margin-bottom: 1rem;
  color: #fff;
}

a {
  text-decoration: none;
  color: var(--color-green);
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

a:not([class]) {
  text-decoration: underline;
}

a:hover {
  color: #fff;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.layout-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.content-zone {
  padding: 4rem 0;
}

.dark-theme-zone {
  background-color: #1a1a1a;
}

.content-zone img {
  border-radius: 5px;
}

.nested-area > :not(:last-child):not(.block-heading) {
  margin-bottom: 1rem;
}

.promo-banner {
  background-color: var(--color-red);
  padding: 2rem;
  border-radius: 8px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.banner-pic {
  max-width: 200px;
}

.banner-caption {
  font-weight: 700;
  font-size: 1.2rem;
  text-shadow: 0 0 9px #000;
}

.site-header {
  background-color: var(--color-black);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-wrapper {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-logo {
  max-width: 120px;
}

.nav-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.nav-entry {
  margin-left: 1.5rem;
}

.nav-anchor {
  color: #44992e;
  font-size: 18px;
  font-weight: 700;
}

.nav-anchor:hover {
  color: var(--color-green);
}

.hero-section {
  background: var(--color-dark) url(../uploads/boxing-hero-banner.webp) no-repeat center center;
  background-size: cover;
  position: relative;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.hero-wrapper {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #fff;
}

.review-block {
  background-color: var(--color-black);
  padding: 2rem;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.score-value {
  font-size: 2rem;
  font-weight: 700;
  background-color: var(--color-green);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 1.5rem;
}

.feedback-text {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.review-heading {
  font-size: 1.5rem;
  color: var(--color-green);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.review-subheading {
  color: var(--color-red);
  font-weight: 700;
  margin-bottom: 1rem;
}

.review-points {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.review-item {
  position: relative;
  padding-left: 1.5rem;
  color: var(--color-light);
}

.review-item::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-green);
}

.review-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}

.primary-cta {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.primary-button {
  background-color: var(--color-green);
  color: #fff;
  text-shadow: 0 0 5px #000;
}

.primary-button:hover {
  background-color: #5fcc23;
}

.secondary-button {
  background-color: var(--color-red);
  color: #fff;
}

.secondary-button:hover {
  background-color: #dd3339;
}

.cta-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 30px;
}

.cta-big {
  font-size: 1.2rem;
  padding: 1rem 2rem;
  text-transform: uppercase;
  background-color: var(--color-red);
  color: #fff;
}

.cta-big:hover {
  background-color: #dd3339;
}

.pulse-main-btn {
  -webkit-animation: pulse 2s infinite;
  animation: pulse 2s infinite;
}

.animated-secondary-cta {
  -webkit-animation: pulse2 2s infinite;
  animation: pulse2 2s infinite;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-box-shadow: 0 0 0 0 rgba(83, 177, 30, 0.7);
    box-shadow: 0 0 0 0 rgba(83, 177, 30, 0.7);
  }
  70% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-box-shadow: 0 0 0 10px rgba(83, 177, 30, 0);
    box-shadow: 0 0 0 10px rgba(83, 177, 30, 0);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-box-shadow: 0 0 0 0 rgba(83, 177, 30, 0);
    box-shadow: 0 0 0 0 rgba(83, 177, 30, 0);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-box-shadow: 0 0 0 0 rgba(83, 177, 30, 0.7);
    box-shadow: 0 0 0 0 rgba(83, 177, 30, 0.7);
  }
  70% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-box-shadow: 0 0 0 10px rgba(83, 177, 30, 0);
    box-shadow: 0 0 0 10px rgba(83, 177, 30, 0);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-box-shadow: 0 0 0 0 rgba(83, 177, 30, 0);
    box-shadow: 0 0 0 0 rgba(83, 177, 30, 0);
  }
}
@-webkit-keyframes pulse2 {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-box-shadow: 0 0 0 0 rgba(204, 43, 48, 0.7);
    box-shadow: 0 0 0 0 rgba(204, 43, 48, 0.7);
  }
  70% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-box-shadow: 0 0 0 10px rgba(83, 177, 30, 0);
    box-shadow: 0 0 0 10px rgba(83, 177, 30, 0);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-box-shadow: 0 0 0 0 rgba(83, 177, 30, 0);
    box-shadow: 0 0 0 0 rgba(83, 177, 30, 0);
  }
}
@keyframes pulse2 {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-box-shadow: 0 0 0 0 rgba(204, 43, 48, 0.7);
    box-shadow: 0 0 0 0 rgba(204, 43, 48, 0.7);
  }
  70% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-box-shadow: 0 0 0 10px rgba(83, 177, 30, 0);
    box-shadow: 0 0 0 10px rgba(83, 177, 30, 0);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-box-shadow: 0 0 0 0 rgba(83, 177, 30, 0);
    box-shadow: 0 0 0 0 rgba(83, 177, 30, 0);
  }
}
.block-heading {
  font-size: 1.8rem;
  color: var(--color-green);
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--color-green);
  padding-bottom: 0.5rem;
  display: inline-block;
}

.logo-image-xl {
  display: block;
  margin: 0 auto;
}

.sub-title {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 1rem;
}

.instruction-list {
  padding: 0.5rem 0 0.5rem 1.5rem;
}

.instruction-step {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1rem;
}

.instruction-step::before {
  content: "•";
  position: absolute;
  left: -1rem;
  color: var(--color-green);
}

.numbered-steps {
  padding: 0.5rem 0 0.5rem 1.5rem;
}

.numbered-steps li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1rem;
}

.numbered-steps li::marker {
  color: var(--color-green);
}

.site-interface {
  padding: 2rem 0;
  background-color: #1a1a1a;
}

.faq-section {
  padding: 2rem 0;
}

.faq-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-entry {
  background-color: #1a1a1a;
  border-radius: 5px;
  overflow: hidden;
}

.faq-q {
  padding: 1rem 40px 1rem;
  cursor: pointer;
  font-size: 1.2rem;
  background-color: #232323;
  position: relative;
  margin-bottom: 0;
}

.faq-q::after {
  content: "+";
  position: absolute;
  right: 1rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 1.5rem;
}

.faq-a {
  padding: 1rem;
}

.footer-block {
  background-color: #0c0c0c;
  padding: 2rem 0;
  margin-top: 3rem;
}

.footer-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.5rem;
}

.footer-logo {
  max-width: 150px;
}

.footer-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.footer-anchor {
  color: var(--color-light);
}

.footer-copyright {
  color: #b1adad;
  font-size: 0.9rem;
  text-align: center;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  .score-value {
    margin-bottom: 1rem;
  }
  .review-points {
    grid-template-columns: 1fr;
  }
  .review-actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.5rem;
  }
}
@media (max-width: 767.98px) {
  .promo-banner {
    grid-template-columns: 1fr;
    place-items: center;
  }
  .banner-caption {
    text-align: center;
  }
  .header-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (max-width: 479.98px) {
  .promo-banner .primary-cta {
    width: 100%;
  }
  .nav-items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 9px;
  }
  .review-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .review-block .feedback-text {
    width: 100%;
  }
  .review-block .review-actions {
    gap: 1rem;
    width: 100%;
  }
}