/*** Light theme ***/
figure {
  all: unset;
}

body {
  background-color: #f8f9fa;
  color: #fff;
  font-family: "Segoe UI", sans-serif;
  font-size: 16px;
  height: 100dvh;
  line-height: 1.6;
}

@media (width <= 1024px) {
  body {
    font-size: 12px;
  }
}
@media (1024px <= width <= 1440px) {
  body {
    font-size: 14px;
  }
}
@media (1440px <= width <= 1920px) {
  body {
    font-size: 16px;
  }
}
@media (width >= 1921px) {
  body {
    font-size: 18px;
  }
}
@media (display-mode: fullscreen) {
  body {
    padding: 0;
    margin: 0;
  }
}
@media (resolution >= 2dppx) {
  body {
    -webkit-font-smoothing: antialiased;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
  }
}
/* Base styles */
.home {
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.header {
  background-color: #191a18;
  color: #ffffff;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header__logo-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 0 20px;
}

.header__logo {
  background-color: #c5a25c;
  color: #191a18;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
}

.header__title {
  font-size: 24px;
  font-weight: bold;
}

.search {
  display: flex;
  gap: 10px;
  margin: 10px 20px;
}

.search__input {
  padding: 10px 15px;
  border: none;
  border-radius: 4px;
  width: 250px;
}

.search__button {
  background-color: #c5a25c;
  color: #191a18;
  border: none;
  border-radius: 4px;
  padding: 10px 15px;
  cursor: pointer;
  font-weight: bold;
}

.search__button:hover {
  background-color: #e0d0b0;
}

/* Main Content Styles */
.main {
  padding: 30px 0;
}

.welcome {
  background-color: #c5a25c;
  color: #191a18;
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 30px;
}

.welcome__title {
  font-size: 28px;
  margin-bottom: 15px;
}

.welcome__text {
  margin-bottom: 0;
}

.section {
  margin-bottom: 40px;
}

.section__title {
  font-size: 24px;
  margin-bottom: 20px;
  color: #191a18;
  border-bottom: 2px solid #c5a25c;
  padding-bottom: 10px;
}

.resources {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.resource-card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.resource-card:hover {
  transform: translateY(-5px);
}

.resource-card__icon {
  font-size: 32px;
  margin-bottom: 15px;
}

.resource-card__title {
  font-size: 18px;
  margin-bottom: 10px;
  color: #191a18;
}

.resource-card__description {
  color: #666;
  margin-bottom: 15px;
  font-size: 14px;
}

.resource-card__link {
  display: inline-block;
  background-color: #c5a25c;
  color: #191a18;
  padding: 8px 15px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
}

.resource-card__link:hover {
  background-color: #e0d0b0;
}

/* Recent Section */
.section--recent {
  margin-bottom: 40px;
}

.recent-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.recent-item {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.recent-item__icon {
  font-size: 24px;
  margin-right: 15px;
}

.recent-item__details {
  flex: 1;
}

.recent-item__title {
  font-size: 16px;
  margin-bottom: 5px;
  color: #191a18;
}

.recent-item__date {
  font-size: 12px;
  color: #888;
}

.recent-item__button {
  background-color: #c5a25c;
  color: #191a18;
  border: none;
  border-radius: 4px;
  padding: 8px 15px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
}

.recent-item__button:hover {
  background-color: #e0d0b0;
}

/* Footer Styles */
.footer {
  background-color: #191a18;
  color: #ffffff;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
}

.footer__text {
  margin: 0;
}

.engine {
  background-color: #f8f9fa;
  color: #2d3436;
  display: grid;
  grid-template-rows: 5em auto 5em;
  height: 100%;
}

.engine__header {
  background-color: white;
  box-shadow: 0 0.125em 0.25em rgba(0, 0, 0, 0.1);
  padding: 1rem;
}

.engine__header-container {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.engine__header-logo {
  align-items: center;
  color: #2d3436;
  display: flex;
  gap: 1rem;
  text-decoration: none;
}

.engine__header-logo-img {
  height: 2.5em;
  width: 2.5em;
}

.engine__header-nav-list {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.engine__header-nav-link {
  color: #2d3436;
  padding: 0.5em 0;
  position: relative;
  text-decoration: none;
}
.engine__header-nav-link:hover::after {
  background-color: #c5a25c;
  bottom: 0;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  width: 100%;
}

.engine__main {
  width: auto;
}

.engine__downloads {
  display: grid;
  height: 100%;
  place-content: center;
}

.engine__downloads-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.engine__download-card {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease;
  width: 100%;
}
.engine__download-card:hover {
  transform: translateY(-0.3125rem);
}

.engine__download-card-icon {
  height: 5em;
  margin-bottom: 1.5em;
  width: 5em;
}

.engine__download-card-title {
  color: #c5a25c;
  font-size: 1.5em;
  margin-bottom: 1rem;
}

.engine__download-card-version {
  color: #a8a8a8;
  margin-bottom: 1.5em;
}

.engine__download-card-button {
  align-items: center;
  background-color: #c5a25c;
  border-radius: 0.5em;
  color: white;
  display: inline-flex;
  gap: 0.5em;
  padding: 0.75em 1.5em;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.engine__download-card-button:hover {
  background-color: #af8e4c;
}

.engine__download-card-button-icon {
  height: 1.25em;
  width: 1.25em;
}

.engine__footer {
  align-items: center;
  background-color: white;
  border-top: 0.0625rem solid rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  margin: 0.625em 0 0 0;
}

.engine__footer-container {
  text-align: center;
}

.engine__footer-text {
  color: #a8a8a8;
}

@media (width <= 1024px) {
  .engine__downloads-grid {
    align-items: center;
    flex-direction: column;
  }
}
.page-not-found {
  background-color: #152331;
  display: grid;
  height: 100%;
  place-content: center;
}

.page-not-found__wrap {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-not-found__img {
  animation: UpAndDown 3s infinite;
  width: 16em;
}

.page-not-found__title {
  font-size: 3em;
  margin: 0;
}

.page-not-found__subtitle {
  color: #e4e4e4;
  font-size: 1.5em;
  margin: 0;
}

.page-not-found__back-container {
  align-items: center;
  display: flex;
  gap: 0.625em;
}

.page-not-found__back {
  color: #96d8ff;
  text-decoration: none;
}
.page-not-found__back:hover {
  text-decoration: underline;
}

@keyframes UpAndDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-1rem);
  }
  100% {
    transform: translateY(0);
  }
}

/*# sourceMappingURL=style.css.map */
