

/*                 */
/*     CONTENT     */
/*                 */
.content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px;
  width: 100%;
  background-color: #ffffff;
  flex: 1 0 auto;
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}



.main-wrapper {
  display: flex;
  grid-template-columns:
    minmax(200px, 1fr)
    minmax(auto, 1200px)
    minmax(200px, 1fr);
  gap: 20px;  
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}



.sidebar {
  padding: 20px;
  background: #f5f5f5;
  position: sticky;
  top: 100px;
  height: fit-content;
}






.content-text {
  margin: 0px 0;
  line-height: 1.6;
}

/* Заголовки */
.content h1 {
  font-size: 2.5rem;
  margin: 0 0 0;
  color: #2a2a2a;
  display: flex;
  align-items: center;
}

.content h3 {
  font-size: 1.5rem;
  margin: 10px 0 20px;
  color: #3a3a3a;
  position: relative;
  display: inline-block;
}

.content h3 p {
  margin: 0;
}

.content h4 {
  font-size: 1.2rem;
  margin: 25px 0 15px;
  color: #4a4a4a;
  font-weight: 500;
}

.content-text li {
  margin-bottom: 3px;
}

li {
  margin-bottom: 6px;
  position: relative;
  padding-left: 20px;
  list-style-type: none;
}

.content-text li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #74008b;
  font-weight: bold;
}



/* hot tabs */
.tabs-container {
  margin: 0 auto;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.tabs-container {
  width: 100%;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.tabs {
  display: flex;
  border-bottom: 1px solid #ddd;
}

.tab {
  padding: 15px 25px;
  cursor: pointer;
  transition: background 0.3s;
  flex-grow: 1;
  text-align: center;
}

.tab:hover {
  background: #f0f0f0;
}

.tab.active {
  background: #6200ee;
  color: white;
  border-bottom: 3px solid #3700b3;
  outline: 1px solid var(--header-bg, #6200ee);
  background-image: var(--noise-texture);
  background-blend-mode: overlay;
  animation: glitch-effect 0.3s linear infinite alternate;
}

.tab-content {
  display: none;
  padding: 25px;
  opacity: 0;
  transition: opacity 10.0s ease;
}

.tab-content.active {
  display: block;
  opacity: 1;
}






/* other */


table {
  width: 100%;
  border-collapse: collapse;
  margin: 15px 0;
  font-family: 'Segoe UI', system-ui, sans-serif;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

th {
  background-color: #000000;
  color: white;
  padding: 12px;
  text-align: left;
  font-weight: 600;
}

td {
  padding: 10px 12px;
  border-bottom: 1px solid #e0e0e0;
}

tr:nth-child(even) {
  background-color: #f8f9fa;
}

tr:hover {
  background-color: #f1f3ff;
}

/* Для мобильных устройств */
@media (max-width: 600px) {
  td, th {
      padding: 8px 10px;
      font-size: 14px;
  }
}

 quote {
  border-left: 2px solid blue;
  padding: 10px 0 3px 10px;
  margin: 10px 0;
  font-style: italic;
}







/* Анимации */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.content-text, .spoiler, h3, .separator {
  animation: fadeIn 0.6s ease-out forwards;
}






code {
  font-family: 'Consolas', monospace;
  background-color: rgba(32, 34, 37, 0.158);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.9em;
  color: #1d1d1d;
}


.command-usage {
  background-color: rgba(88, 101, 242, 0.1);
  padding: 15px;
  border-radius: 8px;
  margin: 15px 0;
}

.command-usage-title {
  font-weight: 600;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.command-usage-title i {
  margin-right: 8px;
}
.command-usage li {
  list-style-type: none;
}