.wiki-header {
  width: 85.5%;
  max-width: 1296px;
  margin: 18px auto;
  padding: 18px 23px;
  border-radius: 18px;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  border: 1px solid rgba(255,255,255,0.2);
  text-align: center;
}
.wiki-header h1 {
  color: #fff;
  font-size: 27px;
  font-weight: bold;
  text-shadow: 
    1px 1px 0 rgba(0, 0, 0, 0.3),
    2px 2px 0 rgba(0, 0, 0, 0.2),
    0 0 15px rgba(102, 179, 230, 0.3);
  margin: 0 0 9px 0;
}
.gradient-text {
  background: linear-gradient(90deg, #66b3e6, #3597d4, #66b3e6, #3597d4, #66b3e6);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientFlow 8s linear infinite;
  font-weight: bold;
  text-shadow: none;
  filter: drop-shadow(0 0 15px rgba(102, 179, 230, 0.4));
}
.gradient-text-green {
  background: linear-gradient(90deg, #96e665, #5cb935, #96e665, #5cb935, #96e665);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientFlow 8s linear infinite;
  font-weight: bold;
  text-shadow: none;
  filter: drop-shadow(0 0 15px rgba(150, 230, 101, 0.4));
}
@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 300% 50%;
  }
}
.wiki-header p {
  color: #ccc;
  font-size: 15px;
  margin: 0;
  text-shadow: 1px 1px rgba(0,0,0,0.3);
}
.wiki-sections {
  width: 85.5%;
  max-width: 1296px;
  margin: 18px auto;
  padding-bottom: 27px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(252px, 1fr));
  gap: 14px;
}
.wiki-card {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 18px;
  padding: 16px;
  cursor: pointer;
  transition: all 0.15s ease;
  position: relative;
  overflow: hidden;
}
.wiki-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(102, 179, 230, 0.05) 0%, rgba(53, 151, 212, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.wiki-card:hover::before {
  opacity: 1;
}
.wiki-card:hover {
  transform: none;
  border-color: rgba(102, 179, 230, 0.4);
}
.wiki-card:active {
  transform: translateY(0px);
  border-color: rgba(102, 179, 230, 0.5);
}
.wiki-card-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 14px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,86,122,0.15);
  border-radius: 50%;
  border: 2px solid rgba(102, 179, 230, 0.2);
  transition: all 0.3s ease;
}
.wiki-card:hover .wiki-card-icon {
  border-color: rgba(102, 179, 230, 0.5);
  box-shadow: 0 0 20px rgba(102, 179, 230, 0.3);
  transform: none;
}
.wiki-card-icon i {
  font-size: 28px;
  color: #66b3e6;
  filter: drop-shadow(0 0 5px rgba(102, 179, 230, 0.3));
}
.wiki-card-icon img {
  width: 41px;
  height: 41px;
  object-fit: contain;
  filter: drop-shadow(0 0 5px rgba(102, 179, 230, 0.3));
}
.wiki-card-icon img[src*="SlotMachine.png"] {
  width: 36px;
  height: 36px;
  display: block;
  margin: auto;
  transform: translateX(2px);
}
.wiki-card-icon img[src*="zoom_in.png"] {
  width: 36px;
  height: 36px;
  display: block;
  margin: auto;
  transform: translate(1px, 1px);
}
.wiki-card h3 {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 9px 0;
  text-align: center;
  text-shadow: 1px 1px rgba(0,0,0,0.3);
}
.wiki-card p {
  color: #ccc;
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
  text-align: center;
  text-shadow: 1px 1px rgba(0,0,0,0.3);
}
.wiki-info-block {
  width: 85.5%;
  max-width: 1296px;
  margin: 18px auto;
  padding: 18px 27px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(44, 94, 122, 0.3) 0%, rgba(37, 80, 103, 0.3) 100%);
  border: 1px solid rgba(102, 179, 230, 0.2);
}
.wiki-info-block h4 {
  color: #66b3e6;
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 14px 0;
  text-shadow: 1px 1px rgba(0,0,0,0.3);
}
.wiki-info-block p {
  color: #fff;
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 9px 0;
  text-shadow: 1px 1px rgba(0,0,0,0.3);
}
.wiki-info-block p:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden !important;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
  }
  main {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .wiki-header {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 15px;
    box-sizing: border-box;
    border-radius: 0;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
  }
  .wiki-header h1 {
    font-size: 22px;
    text-shadow: none !important;
  }
  .wiki-header p {
    font-size: 15px;
    text-shadow: none !important;
    color: #e4e4e4;
  }
  .wiki-sections {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 10px;
    box-sizing: border-box;
    gap: 12px;
  }
  .wiki-card {
    padding: 15px;
    box-sizing: border-box;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0;
    transform: none !important;
    width: 100%;
    max-width: 100%;
  }
  .wiki-card::before {
    display: none;
  }
  .wiki-card:hover {
    transform: none !important;
    border-color: transparent !important;
    box-shadow: none !important;
  }
  .wiki-card:active {
    transform: none !important;
    box-shadow: none !important;
  }
  .wiki-card-icon {
    width: 50px;
    height: 50px;
    background: rgba(30, 39, 50, 0.6) !important;
    border: 1px solid rgba(51, 144, 236, 0.3) !important;
  }
  .wiki-card:hover .wiki-card-icon {
    transform: none !important;
    border-color: rgba(51, 144, 236, 0.3) !important;
    box-shadow: none !important;
  }
  .wiki-card-icon img {
    width: 38px;
    height: 38px;
  }
  .wiki-card h3 {
    font-size: 18px;
    text-shadow: none !important;
    color: #ffffff;
  }
  .wiki-card p {
    font-size: 14px;
    text-shadow: none !important;
    color: #e4e4e4;
  }
  .wiki-container {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0;
    padding: 10px;
    margin: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .wiki-info-block {
    width: 100%;
    max-width: 100%;
    margin: 10px 0;
    padding: 15px;
    box-sizing: border-box;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0;
  }
  .wiki-info-block h4 {
    color: #3390ec;
    text-shadow: none !important;
  }
  .wiki-info-block p {
    color: #e4e4e4;
    text-shadow: none !important;
  }
  .wiki-back-button {
    background: rgba(30, 39, 50, 0.6) !important;
    border: 1px solid rgba(51, 144, 236, 0.3) !important;
    box-shadow: none !important;
    color: #ffffff;
  }
  .wiki-back-button:hover {
    background: rgba(30, 39, 50, 0.8) !important;
    border-color: rgba(51, 144, 236, 0.5) !important;
  }
  .wiki-search {
    width: 100%;
    background: rgba(30, 39, 50, 0.6) !important;
    border: 1px solid rgba(51, 144, 236, 0.3) !important;
    box-shadow: none !important;
    color: #ffffff;
    box-sizing: border-box;
  }
  .wiki-search:focus {
    border-color: rgba(51, 144, 236, 0.5) !important;
    box-shadow: none !important;
  }
  .wiki-top-row {
    flex-direction: column;
    gap: 10px;
  }
  .wiki-back-button {
    width: 100%;
    box-sizing: border-box;
  }
  .wiki-table-wrapper {
    background: transparent !important;
    border: none !important;
    border-radius: 0;
  }
  .wiki-table {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0;
  }
  .wiki-table thead th {
    background: rgba(30, 39, 50, 0.6) !important;
    border: none !important;
    border-bottom: 1px solid rgba(51, 144, 236, 0.15) !important;
    text-shadow: none !important;
    color: #3390ec !important;
  }
  .wiki-table tbody td {
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid rgba(51, 144, 236, 0.15) !important;
    text-shadow: none !important;
    color: #e4e4e4;
  }
  .wiki-table tr:hover {
    background-color: rgba(51, 144, 236, 0.1) !important;
  }
  .wiki-detail-item-header {
    width: 100%;
    max-width: 100%;
    margin: 10px 0;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0;
    padding: 10px;
    box-sizing: border-box;
  }
  .wiki-detail-title {
    text-shadow: none !important;
    color: #ffffff;
  }
  .wiki-detail-description {
    text-shadow: none !important;
    color: #e4e4e4;
  }
  .entity-section {
    width: 100%;
    max-width: 100%;
    margin: 10px 0;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0;
  }
  .entity-section-title {
    color: #3390ec;
    text-shadow: none !important;
    background: transparent !important;
    border-bottom: 1px solid rgba(51, 144, 236, 0.15) !important;
  }
  .entity-param-key {
    color: #8e9297;
    text-shadow: none !important;
  }
  .entity-param-value {
    color: #e4e4e4;
    text-shadow: none !important;
  }
  .wiki-main-search {
    background: rgba(30, 39, 50, 0.6) !important;
    border: 1px solid rgba(51, 144, 236, 0.3) !important;
    box-shadow: none !important;
    color: #ffffff;
  }
  .wiki-main-search:focus {
    border-color: rgba(51, 144, 236, 0.5) !important;
    box-shadow: none !important;
  }
  .wiki-search-results {
    background: rgba(30, 39, 50, 0.95) !important;
    border: 1px solid rgba(51, 144, 236, 0.3) !important;
    box-shadow: none !important;
  }
  .wiki-search-result-item:hover {
    background: rgba(51, 144, 236, 0.1) !important;
  }
  .wiki-search-result-item-name {
    text-shadow: none !important;
    color: #ffffff;
  }
  .wiki-search-result-item-type {
    color: #3390ec;
  }
  .wiki-search-result-item-description {
    color: #e4e4e4;
  }
  .wiki-search-result-item-link {
    background: rgba(51, 144, 236, 0.15) !important;
    border: 1px solid rgba(51, 144, 236, 0.3) !important;
    color: #3390ec;
  }
  .wiki-search-result-item-link:hover {
    background: rgba(51, 144, 236, 0.25) !important;
    border-color: rgba(51, 144, 236, 0.5) !important;
  }
  .wiki-detail-back-link {
    background: rgba(30, 39, 50, 0.6) !important;
    border: 1px solid rgba(51, 144, 236, 0.3) !important;
    box-shadow: none !important;
    color: #ffffff;
  }
  .wiki-detail-back-link:hover {
    background: rgba(30, 39, 50, 0.8) !important;
    border-color: rgba(51, 144, 236, 0.5) !important;
    color: #ffffff;
  }
  .wiki-detail-image {
    background: rgba(30, 39, 50, 0.6) !important;
  }
  .price-value {
    text-shadow: none !important;
  }
  .wiki-item-name {
    text-shadow: none !important;
    color: #ffffff;
  }
  .wiki-item-description {
    text-shadow: none !important;
    color: #e4e4e4;
  }
  .wiki-sections,
  .wiki-header,
  .wiki-container,
  .wiki-info-block,
  .wiki-table-wrapper,
  .wiki-table,
  .wiki-detail-item-header,
  .entity-section {
    overflow-x: hidden;
  }
}
.wiki-container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 18px;
  display: flex;
  flex-direction: column;
  height: calc(100vh - 108px);
  max-height: calc(100vh - 108px);
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  border-radius: 18px;
  overflow: hidden;
}
.wiki-top-row {
  display: flex;
  gap: 11px;
  margin-bottom: 11px;
  flex-shrink: 0;
}
.wiki-back-button {
  padding: 11px 14px;
  border-radius: 11px;
  border: 1px solid rgba(255,255,255,0.2);
  font-weight: bold;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 7px;
}
.wiki-back-button:hover {
  background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
  border-color: rgba(255,255,255,0.4);
}
.back-icon {
  width: 20px;
  height: 20px;
  transform: scaleX(-1);
}
.wiki-search {
  flex: 1;
  padding: 11px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.2);
  font-weight: bold;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  color: #fff;
  box-sizing: border-box;
  transition: all 0.3s ease;
}
.wiki-search:focus {
  outline: none;
  border-color: rgba(255,255,255,0.4);
}
.wiki-search::placeholder {
  color: #ccc;
}
.wiki-table-wrapper {
  flex: 1 1 auto;
  overflow-y: auto;
  border-radius: 11px;
  border: 1px solid rgba(255,255,255,0.2);
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}
.wiki-table {
  border-collapse: separate;
  border-spacing: 0;
  background-color: #1a1a1a;
  color: #fff;
  font-weight: bold;
  text-shadow: 1px 1px rgba(0,0,0,0.3);
  font-size: 14px;
  width: 100%;
  table-layout: fixed;
  border-radius: 11px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.2);
}
.wiki-table thead th {
  background-color: #2a2a2a;
  color: #fff !important;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 11px;
  text-align: left;
  vertical-align: middle;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wiki-table tbody td {
  border: 1px solid rgba(255,255,255,0.1);
  padding: 7px 11px;
  text-align: left;
  vertical-align: middle;
  overflow: hidden;
  text-overflow: ellipsis;
  background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 100%);
}
.wiki-table tr:hover {
  background-color: rgba(0,86,122,0.2);
}
.wiki-table tr {
  cursor: pointer;
}
.wiki-detail-pre {
  white-space: pre-wrap;
  font-family: monospace;
  background-color: rgba(0,0,0,0.3);
  padding: 9px;
  border-radius: 11px;
  margin: 9px 0;
}
.wiki-table-wrapper::-webkit-scrollbar {
  width: 10px;
}
.wiki-table-wrapper::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.05);
  border-radius: 11px;
}
.wiki-table-wrapper::-webkit-scrollbar-thumb {
  background-color: rgba(255,255,255,0.2);
  border-radius: 11px;
}
.wiki-table-wrapper::-webkit-scrollbar-thumb:hover {
  background-color: rgba(255,255,255,0.3);
}
.wiki-preview {
  width: 5%;
}
.wiki-name {
  width: 95%;
}
.wiki-item-image {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.wiki-item-name {
  font-weight: bold;
  color: #fff;
}
.wiki-item-description {
  color: #ccc;
  font-size: 14px;
}
.wiki-item-name-container {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.star-rating {
  display: flex;
  gap: 2px;
  align-items: center;
}
.star-icon {
  width: 14px;
  height: 14px;
  object-fit: contain;
}
.wiki-detail-header {
  margin-bottom: -30px;
}
.wiki-detail-back-link {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 15px;
  transition: color 0.3s ease;
  background-color: rgba(0,86,122,0.3);
  padding: 7px 11px;
  border-radius: 11px;
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0px 0.5px 0px 0.5px rgba(255,255,255,0.1), 0px 4px 0px 0.5px rgba(0,0,0,0.3);
}
.wiki-detail-back-link:hover {
  color: #ffe066;
}
.wiki-detail-item-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 auto 14px auto;
  padding: 14px;
  background-color: rgba(0,86,122,0.3);
  border-radius: 11px;
  width: 85.5%;
  max-width: 810px;
  box-sizing: border-box;
}
.wiki-detail-image {
  width: 54px;
  height: 54px;
  object-fit: contain;
  background-color: rgba(255,255,255,0.1);
  border-radius: 11px;
  padding: 7px;
}
.wiki-detail-title {
  color: #fff;
  font-size: 22px;
  margin: 0 0 7px 0;
  font-weight: bold;
  text-shadow: 1px 1px rgba(0,0,0,0.3);
}
.wiki-detail-description {
  color: #ccc;
  font-size: 15px;
  margin: 0;
  line-height: 1.4;
}
.entity-section {
  width: 85.5%;
  max-width: 810px;
  margin: 0 auto 18px auto;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.2);
  overflow: hidden;
}
.entity-section-title {
  color: #66b3e6;
  font-size: 18px;
  font-weight: bold;
  margin: 0;
  padding: 11px 18px;
  background: linear-gradient(135deg, rgba(0,86,122,0.3) 0%, rgba(0,86,122,0.2) 100%);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  text-shadow: 1px 1px rgba(0,0,0,0.3);
}
.entity-section-toggle {
  cursor: pointer;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}
.entity-section-toggle:hover {
  color: #88ccff;
}
.entity-section-content {
  padding: 14px 18px;
}
.entity-param {
  display: flex;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.entity-param:last-child {
  border-bottom: none;
}
.entity-param-key {
  color: #aaa;
  font-size: 14px;
  font-weight: bold;
  min-width: 180px;
  flex-shrink: 0;
  text-shadow: 1px 1px rgba(0,0,0,0.3);
}
.entity-param-value {
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  text-shadow: 1px 1px rgba(0,0,0,0.3);
}
.wiki-detail-action-arrow {
  transition: transform 0.3s ease;
  font-size: 16px;
}
.wiki-detail-action-arrow.expanded {
  transform: rotate(90deg);
}
.price-container {
  display: flex;
  align-items: center;
  gap: 6px;
}
.price-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
}
.price-value {
  color: #FFD700;
  font-weight: bold;
  text-shadow: 1px 1px rgba(0,0,0,0.3);
}
.wiki-search-container {
  position: relative;
  width: 100%;
  max-width: 540px;
  margin: 18px auto 0;
}
.wiki-main-search {
  width: 100%;
  padding: 13px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.2);
  font-weight: bold;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  color: #fff;
  font-size: 14px;
  box-sizing: border-box;
  transition: all 0.3s ease;
}
.wiki-main-search:focus {
  outline: none;
  border-color: rgba(102, 179, 230, 0.5);
}
.wiki-main-search::placeholder {
  color: #888;
}
.wiki-search-results {
  position: absolute;
  top: calc(100% + 7px);
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 18px;
  max-height: 450px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
}
.wiki-search-results.active {
  display: block;
}
.wiki-search-result-item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  cursor: pointer;
  transition: background 0.2s ease;
}
.wiki-search-result-item:last-child {
  border-bottom: none;
}
.wiki-search-result-item:hover {
  background: rgba(102, 179, 230, 0.1);
}
.wiki-search-result-item-image {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}
.wiki-search-result-item-info {
  flex: 1;
  min-width: 0;
}
.wiki-search-result-item-name {
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 4px;
  text-shadow: 1px 1px rgba(0,0,0,0.3);
}
.wiki-search-result-item-type {
  color: #66b3e6;
  font-size: 11px;
  text-transform: capitalize;
  margin-bottom: 2px;
}
.wiki-search-result-item-description {
  color: #ccc;
  font-size: 12px;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.wiki-search-result-item-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}
.wiki-search-result-item-link {
  display: inline-block;
  padding: 4px 7px;
  background: rgba(102, 179, 230, 0.15);
  border: 1px solid rgba(102, 179, 230, 0.3);
  border-radius: 11px;
  color: #66b3e6;
  font-size: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}
.wiki-search-result-item-link:hover {
  background: rgba(102, 179, 230, 0.25);
  border-color: rgba(102, 179, 230, 0.5);
  color: #88c5f0;
}
.wiki-search-results-loading {
  padding: 18px;
  text-align: center;
  color: #ccc;
  font-size: 13px;
}
.wiki-search-results-empty {
  padding: 18px;
  text-align: center;
  color: #888;
  font-size: 13px;
}
.wiki-search-results::-webkit-scrollbar {
  width: 8px;
}
.wiki-search-results::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.05);
  border-radius: 11px;
}
.wiki-search-results::-webkit-scrollbar-thumb {
  background-color: rgba(255,255,255,0.2);
  border-radius: 11px;
}
.wiki-search-results::-webkit-scrollbar-thumb:hover {
  background-color: rgba(255,255,255,0.3);
}
@media (max-width: 768px) {
  .wiki-search-container {
    width: 100%;
    max-width: 100%;
    margin: 15px 0 0 0;
    padding: 0 10px;
    box-sizing: border-box;
  }
  .wiki-main-search {
    width: 100%;
    font-size: 14px;
    padding: 12px 16px;
    box-sizing: border-box;
  }
  .wiki-search-results {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    max-height: 100vh !important;
    height: 100vh !important;
    background: #17212B !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    z-index: 1000000 !important;
    padding: 110px 15px 15px 15px !important;
    box-sizing: border-box !important;
    overflow-y: auto !important;
  }
  .wiki-search-results-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: #17212B;
    border-bottom: 1px solid rgba(51, 144, 236, 0.3);
    z-index: 1000001;
    padding: 10px 50px 10px 15px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
  }
  .wiki-search-results-header .wiki-main-search {
    width: 100%;
    margin: 0;
  }
  .wiki-search-results-close {
    position: fixed;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 34px;
    font-weight: 300;
    z-index: 1000002;
    cursor: pointer;
    line-height: 1;
  }
  .wiki-search-result-item {
    padding: 10px 12px;
  }
  .wiki-search-result-item-image {
    width: 35px;
    height: 35px;
  }
  .wiki-search-result-item-name {
    font-size: 16px;
  }
  .wiki-search-result-item-description {
    font-size: 14px;
  }
}
