@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;
}

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

.main-area {
  padding: 4rem 0;
}

.night-mode-area {
  background-color: #1a1a1a;
}

.main-area img {
  border-radius: 5px;
}

.subsection-zone > :not(:last-child):not(.section-heading) {
  margin-bottom: 1rem;
}

.highlight-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;
}

.highlight-image {
  max-width: 200px;
}

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

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

.topbar-container {
  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;
}

.topbar-brand {
  max-width: 120px;
}

.menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.menu-item {
  margin-left: 1.5rem;
}

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

.menu-link:hover {
  color: var(--color-green);
}

.intro-banner {
  background: var(--color-dark) url(../graphics-folder/fighter-highlight-promo.webp) no-repeat center center;
  background-size: cover;
  position: relative;
}

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

.intro-container {
  position: relative;
  z-index: 1;
}

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

.rating-wrapper {
  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;
}

.review-score {
  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;
}

.review-body {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

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

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

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

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

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

.feedback-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}

.main-button {
  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;
}

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

.action-main:hover {
  background-color: #5fcc23;
}

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

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

.action-shell {
  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;
}

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

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

.highlighted-primary-cta {
  -webkit-animation: pulse 2s infinite;
  animation: pulse 2s infinite;
}

.pulse-secondary-button {
  -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);
  }
}
.section-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;
}

.large-brand-icon {
  display: block;
  margin: 0 auto;
}

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

.how-section {
  padding: 0.5rem 0 0.5rem 1.5rem;
}

.guide-point {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1rem;
}

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

.sequential-guide {
  padding: 0.5rem 0 0.5rem 1.5rem;
}

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

.sequential-guide li::marker {
  color: var(--color-green);
}

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

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

.questions-collection {
  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;
}

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

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

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

.answer-content {
  padding: 1rem;
}

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

.closure-wrapper {
  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;
}

.closure-brand {
  max-width: 150px;
}

.nav-list-end {
  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;
}

.nav-link-end {
  color: var(--color-light);
}

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

@media (max-width: 768px) {
  .banner-heading {
    font-size: 2rem;
  }
  .review-score {
    margin-bottom: 1rem;
  }
  .highlight-list {
    grid-template-columns: 1fr;
  }
  .feedback-controls {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0.5rem;
  }
  .nav-list-end {
    -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) {
  .highlight-banner {
    grid-template-columns: 1fr;
    place-items: center;
  }
  .promo-text {
    text-align: center;
  }
  .topbar-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (max-width: 479.98px) {
  .highlight-banner .main-button {
    width: 100%;
  }
  .menu-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 9px;
  }
  .rating-wrapper {
    -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;
  }
  .rating-wrapper .review-body {
    width: 100%;
  }
  .rating-wrapper .feedback-controls {
    gap: 1rem;
    width: 100%;
  }
}