.changelog-container {
  width: 85.5%;
  max-width: 1296px;
  margin: 18px auto;
  padding: 0 0 18px 0;
}
.changelog-controls {
  margin-bottom: 20px;
}
.search-container {
  width: 100%;
}
.changelog-search {
  width: 100%;
  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;
}
.changelog-search:focus {
  outline: none;
  border-color: rgba(255,255,255,0.4);
}
.changelog-search::placeholder {
  color: #ccc;
}
.changelog-section {
  margin-bottom: 18px;
  padding: 23px 27px;
  border-radius: 18px;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}
.changelog-section:hover {
  border-color: rgba(255,255,255,0.3);
}
.changelog-section.latest {
  border-color: rgba(255, 224, 102, 0.3);
}
.changelog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 15px;
}
.changelog-version-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.changelog-version-text {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-shadow: 1px 1px rgba(0,0,0,0.3);
}
.changelog-date-text {
  color: #ccc;
  font-size: 13px;
  text-shadow: 1px 1px rgba(0,0,0,0.3);
}
.changelog-changes {
  display: none;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,0.1);
  -webkit-user-select: text;
  -khtml-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
  cursor: text;
}
.changelog-section.expanded .changelog-changes {
  display: block;
}
.changes-list {
  margin: 0;
  padding-left: 20px;
  color: #fff;
  font-size: 14px;
  line-height: 1.6;
  -webkit-user-select: text;
  -khtml-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
  cursor: text;
  text-shadow: 1px 1px rgba(0,0,0,0.3);
  word-wrap: break-word;
  word-break: break-word;
  overflow-wrap: break-word;
}
.changes-list li {
  margin-bottom: 8px;
  word-wrap: break-word;
  word-break: break-word;
  overflow-wrap: break-word;
}
.changelog-loading {
  text-align: center;
  color: #ccc;
  font-style: italic;
  padding: 40px;
  font-size: 16px;
}
.changelog-empty {
  text-align: center;
  color: #ccc;
  padding: 40px;
  font-size: 16px;
}
@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;
  }
  .changelog-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 15px;
    box-sizing: border-box;
  }
  .changelog-section {
    padding: 15px;
    margin-bottom: 15px;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0;
    border-bottom: 1px solid rgba(51, 144, 236, 0.15) !important;
  }
  .changelog-section:hover {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-bottom: 1px solid rgba(51, 144, 236, 0.15) !important;
  }
  .changelog-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .changelog-version-text {
    font-size: 16px;
    color: #ffffff !important;
    text-shadow: none !important;
  }
  .changelog-date-text {
    font-size: 12px;
    color: #e4e4e4 !important;
    text-shadow: none !important;
  }
  .changelog-search {
    background: rgba(30, 39, 50, 0.6) !important;
    border: 1px solid rgba(51, 144, 236, 0.3) !important;
    color: #ffffff !important;
    box-shadow: none !important;
  }
  .changelog-search:focus {
    border-color: rgba(51, 144, 236, 0.5) !important;
    box-shadow: none !important;
  }
  .changelog-changes {
    border-top: 1px solid rgba(51, 144, 236, 0.15) !important;
  }
  .changes-list {
    font-size: 13px;
    padding-left: 16px;
    color: #e4e4e4 !important;
    text-shadow: none !important;
  }
  .changes-list li {
    margin-bottom: 6px;
    color: #e4e4e4 !important;
  }
  .changelog-loading,
  .changelog-empty {
    color: #e4e4e4 !important;
    text-shadow: none !important;
  }
}
