@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800&display=swap");
:root {
  --font-nunito: "Nunito", sans-serif;
  --body-background: linear-gradient(120deg, #000 0%, #3E1A56 100%);
}

body {
  font-family: var(--font-nunito);
  background: var(--body-background);
  margin: 0;
  color: #fff;
}

.wiki-hero {
  text-align: center;
  padding-top: 80px;
  padding-bottom: 30px;
}

.wiki-hero-title {
  display: block;
  width: 80%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  height: auto;
}

.wiki-grid-wrapper {
  padding-left: 200px;
  padding-right: 200px;
  padding-bottom: 60px;
}
@media (max-width: 1400px) {
  .wiki-grid-wrapper {
    padding-left: 100px;
    padding-right: 100px;
  }
}
@media (max-width: 992px) {
  .wiki-grid-wrapper {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 767px) {
  .wiki-grid-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.wiki-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, 271px);
  gap: 35px;
  justify-content: center;
  align-items: start;
}

.wiki-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  width: 271px;
  transition: transform 0.2s ease-out;
}
.wiki-card:hover {
  transform: translateY(-5px) scale(1.03);
}

.wiki-card__image {
  width: 271px;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.wiki-card__image-placeholder--simple {
  width: 271px;
  height: 268px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #bbb;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  padding: 10px;
  box-sizing: border-box;
  border-radius: 10px;
  border: 1px dashed #666;
}

.wiki-card__title {
  font-size: 22px;
  font-weight: 700;
  color: #FFFFFF;
  text-align: center;
  padding: 15px 10px 10px 10px;
  width: 100%;
  box-sizing: border-box;
}

.wiki-grid__empty-message,
.wiki-grid__error-message {
  text-align: center;
  padding: 20px;
  color: #aaa;
  font-style: italic;
  grid-column: 1/-1;
}

.wiki-grid__error-message {
  color: #ff6b6b;
  font-weight: 600;
}

.wiki-article-page {
  padding-top: 80px;
  padding-bottom: 60px;
  color: #e0e0e0;
  font-family: var(--font-nunito, sans-serif);
  line-height: 1.7;
}

.wiki-article-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.article-header {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 40px;
}

.article-header__icon {
  width: 120px;
  height: 120px;
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0;
}

.article-header__titles {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.article-header__main-title {
  height: 60px;
  width: auto;
  margin-bottom: 5px;
}

.article-header__subtitle {
  font-size: 38px;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
}

.article-content p {
  margin-bottom: 1.2em;
  font-size: 17px;
  color: #d0d0d0;
}
.article-content h2 {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 8px;
}

.crafting-image-block {
  text-align: center;
  margin: 30px 0;
}

.crafting-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
.smithing-table-examples {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  gap: 20px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.smithing-image {
  max-width: 48%;
  min-width: 280px;
  height: auto;
  border-radius: 6px;
  -o-object-fit: contain;
     object-fit: contain;
}

.upgrade-recipes {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin: 30px 0;
}

.recipe-image {
  max-width: 70%;
  min-width: 300px;
  height: auto;
  border-radius: 6px;
}

/* Головний контейнер (без змін) */
.info-block-with-image {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  margin: 40px 0;
  background-color: rgba(0, 0, 0, 0.1);
  padding: 20px;
  border-radius: 10px;
}

/* (НОВІ СТИЛІ) Контейнер для колонки з зображеннями */
.info-block__image-column {
  display: flex;
  flex-direction: column; /* Ставить зображення одне під одним */
  gap: 20px; /* Відстань між зображеннями */
}

/* Стилі для самих зображень (без змін) */
.info-block__image {
  width: 190px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 8px;
  flex-shrink: 0;
}

/* Адаптивність для мобільних (без змін) */
@media (max-width: 767px) {
  .info-block-with-image {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.info-block-with-image {
  display: flex;
  /* Замінили flex-start на center */
  align-items: center;
  gap: 25px;
  margin: 40px 0;
  background-color: rgba(0, 0, 0, 0.1);
  padding: 20px;
  border-radius: 10px;
}

.warning-text {
  font-weight: 600;
  color: #ffc107;
  text-align: center;
  margin-top: 30px;
  font-size: 18px;
  border: 1px solid #ffc107;
  padding: 10px;
  border-radius: 5px;
  background-color: rgba(255, 193, 7, 0.1);
}

@media (max-width: 767px) {
  .article-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }
  .article-header__icon {
    width: 100px;
    height: 100px;
  }
  .article-header__titles {
    align-items: center;
  }
  .article-header__main-title {
    height: 50px;
  }
  .article-header__subtitle {
    font-size: 30px;
  }
  .article-content p {
    font-size: 16px;
  }
  .article-content h2 {
    font-size: 24px;
  }
  .smithing-image {
    max-width: 100%;
    min-width: unset;
  }
  .recipe-image {
    max-width: 90%;
    min-width: unset;
  }
}
.wiki-article-page {
  padding-top: 90px;
  padding-bottom: 60px;
  color: var(--wiki-text-light, #e0e0e0);
  line-height: 1.7;
  font-family: var(--font-nunito, sans-serif);
}

.wiki-article-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.article-header {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 45px;
}

.article-header__icon {
  width: 130px;
  height: 130px;
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0;
}

.article-header__titles {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.article-header__main-title {
  height: 70px;
  width: auto;
  margin-bottom: 8px;
}

.article-header__subtitle {
  font-size: 42px;
  font-weight: 800;
  color: var(--wiki-text-primary, #ffffff);
  margin: 0;
  line-height: 1.1;
}

.article-content p {
  margin-bottom: 1.3em;
  font-size: 17px;
  color: var(--wiki-text-light, #d0d0d0);
}
.article-content h2 {
  font-size: 30px;
  font-weight: 700;
  color: var(--wiki-text-primary, #ffffff);
  margin-top: 45px;
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding-bottom: 10px;
}

.image-gallery--two-columns {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  gap: 20px;
  margin: 25px 0;
  flex-wrap: wrap;
}

.gallery-image {
  max-width: 48%;
  min-width: 280px;
  height: auto;
  border-radius: 6px;
  -o-object-fit: contain;
     object-fit: contain;
}

.caption-text {
  text-align: center;
  font-size: 0.9em;
  color: #aaa;
  margin-top: -10px;
  margin-bottom: 25px;
}

.custom-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.3em;
}
.custom-list li {
  padding-left: 25px;
  position: relative;
  margin-bottom: 0.5em;
  font-size: 17px;
}
.custom-list .list-marker {
  position: absolute;
  left: 0;
  top: 0.3em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}
.custom-list .list-marker.red {
  background-color: #e74c3c;
}
.custom-list .list-marker.purple {
  background-color: #9b59b6;
}
.custom-list .list-marker.blue {
  background-color: #3498db;
}
.custom-list .list-marker.orange {
  background-color: #f39c12;
}
.custom-list .list-bullet {
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--wiki-text-light, #e0e0e0);
}
.custom-list--stats li {
  padding-left: 0;
}

.content-with-image--right,
.content-with-image--left {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin: 30px 0;
}
.content-with-image--right .text-block,
.content-with-image--left .text-block {
  flex-grow: 1;
}
.content-with-image--right .content-image,
.content-with-image--left .content-image {
  max-width: 250px;
  height: auto;
  border-radius: 8px;
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0;
}

.content-with-image--right .content-image {
  order: 1;
}
.content-with-image--right .text-block {
  order: 2;
}

.content-with-image--left .content-image {
  order: 1;
}
.content-with-image--left .text-block {
  order: 2;
}
.content-with-image--left .content-image--small-left {
  max-width: 250px;
}

.content-image--baits {
  max-width: 300px;
}

.full-width-image,
.full-width-image--medium {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 25px auto;
  border-radius: 6px;
}

.full-width-image--medium {
  max-width: 75%;
}

.centered-text {
  text-align: center;
  font-style: italic;
  color: #bbb;
  margin-top: 10px;
}

@media (max-width: 767px) {
  .article-header__icon {
    width: 100px;
    height: 100px;
  }
  .article-header__main-title {
    height: 55px;
  }
  .article-header__subtitle {
    font-size: 32px;
  }
  .article-content p, .custom-list li {
    font-size: 16px;
  }
  .article-content h2 {
    font-size: 26px;
  }
  .gallery-image {
    max-width: 100%;
    min-width: unset;
  }
  .image-gallery--two-columns {
    gap: 15px;
  }
  .content-with-image--right,
  .content-with-image--left {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .content-with-image--right .content-image,
  .content-with-image--left .content-image {
    order: 1 !important;
    max-width: 90%;
    margin-bottom: 20px;
  }
  .content-with-image--right .text-block,
  .content-with-image--left .text-block {
    order: 2 !important;
    width: 100%;
  }
  .content-with-image--right .content-image--small-left, .content-with-image--right .content-image--baits,
  .content-with-image--left .content-image--small-left,
  .content-with-image--left .content-image--baits {
    max-width: 80%;
  }
  .custom-list li {
    padding-left: 20px;
    text-align: left;
  }
  .custom-list .list-marker, .custom-list .list-bullet {
    top: 0.4em;
  }
  .full-width-image--medium {
    max-width: 95%;
  }
}
@media (max-width: 480px) {
  .article-header__subtitle {
    font-size: 28px;
  }
  .article-content h2 {
    font-size: 22px;
  }
  .article-content p, .custom-list li {
    font-size: 15px;
  }
}
.wiki-article-page {
  padding-top: 90px;
  padding-bottom: 60px;
  color: var(--wiki-text-light, #e0e0e0);
  line-height: 1.7;
  font-family: var(--font-nunito, sans-serif);
}

.wiki-article-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.article-header { /* ... як у попередньому прикладі ... */ }

.article-header__icon { /* ... як у попередньому прикладі ... */ }

.article-header__titles { /* ... як у попередньому прикладі ... */ }

.article-header__main-title { /* ... як у попередньому прикладі ... */ }

.article-header__subtitle { /* ... як у попередньому прикладі ... */ }

.article-content p {
  margin-bottom: 1.3em;
  font-size: 18px;
  color: var(--wiki-text-light, #d0d0d0);
}

.image-gallery--two-columns {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin: 25px 0 35px 0;
  flex-wrap: wrap;
}

.gallery-image {
  max-width: calc(50% - 10px);
  min-width: 280px;
  height: auto;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: rgba(0, 0, 0, 0.1);
}

.content-with-image--left {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 35px 0;
}
.content-with-image--left .content-image {
  max-width: 280px;
  height: auto;
  border-radius: 8px;
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0;
}
.content-with-image--left .text-block {
  flex-grow: 1;
}

.anvil-upgrade-example {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin: 35px 0;
  justify-content: center;
  flex-wrap: wrap;
}

.anvil-gui-image {
  max-width: 400px;
  height: auto;
  border-radius: 4px;
  -o-object-fit: contain;
     object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.enchanted-books-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.enchanted-book-image {
  max-width: 280px;
  height: auto;
  border-radius: 4px;
  -o-object-fit: contain;
     object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.inline-icon {
  height: 1.2em;
  width: auto;
  vertical-align: -0.25em;
  margin: 0 3px 0 5px;
}

@media (max-width: 767px) {
  .article-header__icon {
    width: 100px;
    height: 100px;
  }
  .article-header__main-title {
    height: 55px;
  }
  .article-header__subtitle {
    font-size: 32px;
  }
  .article-content p {
    font-size: 16px;
  }
  .gallery-image {
    max-width: 100%;
    min-width: unset;
  }
  .image-gallery--two-columns {
    gap: 15px;
  }
  .content-with-image--left {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .content-with-image--left .content-image {
    max-width: 80%;
    margin-bottom: 15px;
  }
  .content-with-image--left .text-block {
    width: 100%;
  }
  .anvil-upgrade-example {
    flex-direction: column;
    align-items: center;
  }
  .anvil-gui-image, .enchanted-book-image {
    max-width: 90%;
  }
}
@media (max-width: 480px) {
  .article-header__subtitle {
    font-size: 28px;
  }
  .article-content p {
    font-size: 15px;
  }
}
.crafting-comparison {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  gap: 20px;
  margin: 30px 0 35px 0;
  flex-wrap: wrap;
}

.crafting-example {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-basis: calc(50% - 10px);
  min-width: 280px;
}

.crafting-image {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
  background-color: var(--wiki-image-bg-overlay);
  padding: 3px;
  margin-bottom: 5px;
}

.caption-text--craft {
  font-size: 0.9em;
  color: var(--wiki-text-light, #d0d0d0);
  font-weight: 600;
}

.custom-list--bulleted {
  list-style: disc;
  padding-left: 25px;
  margin-left: 15px;
  margin-bottom: 1.3em;
}
.custom-list--bulleted li {
  padding-left: 0;
  margin-bottom: 0.7em;
  font-size: 18px;
  line-height: 1.6;
}
.custom-list--bulleted li::marker {
  color: var(--wiki-text-light, #e0e0e0);
  font-size: 1.1em;
}

.anvil-upgrade-showcase {
  display: flex;
  align-items: flex-start;
  margin: 30px 0 35px 0;
  justify-content: center;
  flex-wrap: wrap;
}

.anvil-stats-image {
  max-width: 470px;
  width: 100%;
  min-width: 410px;
  height: auto;
}

.anvil-gui-image {
  max-width: 400px;
  width: 55%;
  min-width: 280px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 767px) {
  .article-header__icon {
    width: 100px;
    height: 100px;
    padding: 8px;
    background-color: #48a059;
  }
  .article-header__subtitle {
    font-size: 32px;
  }
  .article-content p, .custom-list--bulleted li {
    font-size: 16px;
  }
  .crafting-comparison {
    gap: 15px;
  }
  .crafting-example {
    flex-basis: 100%;
    min-width: unset;
  }
  .crafting-image {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
  .anvil-upgrade-showcase {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  .anvil-stats-image, .anvil-gui-image {
    width: 90%;
    max-width: 400px;
    min-width: unset;
  }
}
@media (max-width: 480px) {
  .article-header__subtitle {
    font-size: 28px;
  }
  .article-content p, .custom-list--bulleted li {
    font-size: 15px;
  }
}
.wiki-commands-page {
  padding-top: 90px;
  padding-bottom: 60px;
  color: var(--commands-text-body, #e0e0e0);
  font-family: var(--font-nunito, sans-serif);
  min-height: calc(100vh - 150px);
}

.wiki-commands-container {
  max-width: 950px;
  margin: 0 auto;
  padding: 0 20px;
}

.commands-header {
  margin-bottom: 30px;
  padding-top: 20px;
}

.commands-main-title {
  font-size: 48px;
  font-weight: 800;
  color: var(--commands-main-title-color, #ffffff);
  text-align: left;
}

.commands-table-section {
  background-color: var(--commands-table-bg, #2a2a30);
  border-radius: 8px;
  padding: 1px;
  overflow-x: auto;
}

.commands-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  color: var(--commands-text-body, #e0e0e0);
}
.commands-table th, .commands-table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid var(--commands-table-border, #44444c);
}
.commands-table th {
  background-color: var(--commands-table-header-bg, #383842);
  color: var(--commands-text-header, #c0c0c0);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9em;
  letter-spacing: 0.5px;
}
.commands-table tbody tr:last-child td {
  border-bottom: none;
}
.commands-table td:first-child {
  font-weight: 600;
  white-space: nowrap;
}
.commands-table code {
  background-color: var(--commands-code-bg, rgba(0, 0, 0, 0.2));
  padding: 2px 5px;
  border-radius: 4px;
  font-family: Consolas, Monaco, "Andale Mono", "Ubuntu Mono", monospace;
  font-size: 0.95em;
  color: var(--commands-code-text, #f1c40f);
}

@media (max-width: 767px) {
  .wiki-commands-page {
    padding-top: 70px;
  }
  .wiki-commands-container {
    padding: 0 10px;
  }
  .commands-main-title {
    font-size: 36px;
    text-align: center;
  }
  .commands-table {
    font-size: 14px;
  }
  .commands-table th, .commands-table td {
    padding: 10px 8px;
  }
}
@media (max-width: 480px) {
  .commands-main-title {
    font-size: 30px;
  }
  .commands-table {
    font-size: 13px;
  }
  .commands-table td:first-child {
    white-space: normal;
  }
}/*# sourceMappingURL=WIKI.css.map */