.insane-style {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: #fff;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #0fcc45; /* Тонкий темно-зеленый контур */
  font-family: 'Arial', sans-serif;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  overflow: hidden;
}

.insane-style h2, .insane-style h3 {
  color: #f9b208;
  text-transform: uppercase;
  font-size: 1.4rem;
}

.insane-highlight {
  background: rgba(15, 204, 69, 0.15); /* Темно-зеленый фон */
  border-left: 3px solid #0fcc45; /* Тонкий темно-зеленый контур */
  padding: 15px;
  margin: 20px 0;
  border-radius: 0 8px 8px 0;
}

.table-container {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 20px 0;
  border: 1px solid #0fcc45; /* Тонкий темно-зеленый контур */
  border-radius: 8px;
  padding: 5px;
}

.insane-table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
  background: rgba(0, 0, 0, 0.6);
}

.insane-table th {
  background: #0a8a30; /* Темно-зеленый */
  color: #fff;
  padding: 12px 10px;
  text-align: left;
  text-transform: uppercase;
  font-size: 13px;
  white-space: nowrap;
}

.insane-table td {
  padding: 12px 10px;
  border-bottom: 1px solid #1a3a27; /* Темно-зеленый оттенок */
  font-size: 14px;
}

.insane-table tr:nth-child(even) {
  background: rgba(15, 204, 69, 0.08); /* Светло-зеленый оттенок */
}

.insane-table tr:hover {
  background: rgba(15, 204, 69, 0.15); /* Зеленый при наведении */
}

.slot-highlight {
  color: #f9b208;
  font-weight: bold;
}

.insane-tip {
  background: rgba(249, 178, 8, 0.15);
  border: 1px solid #f9b208; /* Тонкий контур */
  padding: 20px;
  margin: 25px 0;
  border-radius: 8px;
}

.insane-link {
  color: #0fcc45;
  text-decoration: none;
  font-weight: bold;
}

.future-slots {
  list-style-type: none;
  padding: 0;
}

.future-slots li {
  padding: 12px;
  margin-bottom: 12px;
  background: rgba(15, 204, 69, 0.1);
  border-left: 3px solid #0fcc45; /* Тонкий темно-зеленый контур */
  border-radius: 4px;
}

.insane-conclusion {
  background: rgba(15, 204, 69, 0.12);
  border: 1px solid #0fcc45; /* Тонкий темно-зеленый контур */
  padding: 20px;
  border-radius: 8px;
  margin-top: 25px;
}

.insane-conclusion ol {
  padding-left: 20px;
}

.insane-conclusion ol li {
  margin-bottom: 12px;
}

/* Мобильная адаптация */
@media only screen and (max-width: 768px) {
  .insane-style {
    padding: 15px;
    border-width: 1px;
  }
  
  .insane-style h2 {
    font-size: 1.3rem;
  }
  
  .insane-style h3 {
    font-size: 1.1rem;
  }
  
  .insane-table th, 
  .insane-table td {
    padding: 10px 8px;
    font-size: 13px;
  }
  
  .insane-tip,
  .insane-conclusion {
    padding: 15px;
  }
  
  .table-container {
    border-radius: 6px;
    margin: 15px -10px;
    width: calc(100% + 20px);
  }
}

@media only screen and (max-width: 480px) {
  .insane-style {
    padding: 12px;
    border-radius: 8px;
  }
  
  .insane-style h2 {
    font-size: 1.2rem;
  }
  
  .insane-table th, 
  .insane-table td {
    padding: 8px 6px;
    font-size: 12px;
  }
  
  .insane-highlight,
  .insane-tip,
  .insane-conclusion {
    padding: 12px;
    margin: 15px 0;
  }
  
  .slot-highlight {
    font-size: 13px;
  }
}