/* start.css — стили страницы "С чего начать" (BEM) */

/* === CRAFT BLOCK (бывший .fullnews_craft) === */
.start__craft {
  background: hsla(240, 7%, 12%, 0.88);
  padding: 25px;
  border-bottom: 7px solid rgba(85, 122, 149, 0.7);
  box-shadow: 0px -1px 4px rgb(200 196 196 / 8%), 0px 4px 4px rgb(200 196 196 / 25%);
  border-radius: 10px;
  margin-bottom: 100px;
}

/* === STEP === */
.start-step { margin-bottom: 1rem; }

/* === HEADING (бывший .h2 — класс на div; color из bootstrap.css) === */
.start__heading {
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
  font-size: 2rem;
  color: #5ab9ea;
}

/* === DESCRIPTION === */
.start-step__description { margin-bottom: 1rem; }

/* === BTN (бывший .btns — display:inline-block для простых кнопок) === */
.start__btn {
  border: 1px solid rgba(85, 178, 253, 0.28);
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  height: 36px;
  border-radius: 8px;
  line-height: 22px;
  outline: none;
  background: rgba(85, 178, 253, 0.10);
  color: #55b2fd;
  padding: 7px 22px;
  text-decoration: none !important;
  box-sizing: border-box;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}
.start__btn:hover { background: rgba(85, 178, 253, 0.22); border-color: rgba(85, 178, 253, 0.65); color: #fff; box-shadow: 0 0 16px rgba(85, 178, 253, 0.35), 0 4px 12px rgba(85, 178, 253, 0.20); transform: translateY(-2px); }
.start__btn:active { background: rgba(85, 178, 253, 0.30); border-color: rgba(85, 178, 253, 0.80); color: #fff; box-shadow: 0 0 8px rgba(85, 178, 253, 0.20); transform: translateY(0); }
.start__btn > .icon { fill: currentColor; }

/* === BTN-BLOCK (бывший .btn-block + поглощены d-flex, justify-content-between, align-items-center) === */
.start__btn-block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  margin-right: 20px;
}
.start__btn-block + .start__btn-block { margin-top: 0.5rem; }

/* === DOWNLOAD ROW (бывший .row с justify-content:center) === */
.start__download-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
  justify-content: center;
}

/* === BTN-GROUP (бывший .start-step__download .btn-group) === */
.start-step__download .start__btn-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* === DOWNLOAD ICONS === */
.start-step__download-icons {
  font-size: 1.4rem;
  font-weight: 400 !important;
  display: inline-block;
  padding-right: 0.5rem;
}
.start-step__download-icons i { position: relative; top: 2px; }

/* === DOWNLOAD INFO === */
.start-step__download-info--label { position: relative; top: -1px; }
.start-step__download-info--extension { color: #5ab9ea; }
a.start-step__download-info--extension {
  line-height: 33px;
  padding: 9px 1rem 7px !important;
}

/* === ALERT (бывший .alert кастомный override) === */
.start__alert {
  position: relative;
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.5rem;
  color: #fff;
  font-size: 1.1rem;
  background-color: #18191c !important;
}

/* === ALERT JAVA (бывший .reveds_alert — background не переопределяем, start__alert даёт #18191c) === */
.start__alert--java {
  box-shadow: 0px -1px 4px rgb(200 196 196 / 8%), 0px 4px 4px rgb(200 196 196 / 25%);
  border-radius: 7px;
}

/* === ALERT WARNING (бывший .alert-warning + margin из .mt-4) === */
.start__alert--warning {
  border-color: #856404;
  margin-top: 1.5rem;
}

/* === ALERT DANGER (бывший .alert-danger + margin из .mt-4) === */
.start__alert--danger {
  border-color: #f14130;
  margin-top: 1.5rem;
}

/* === ALERT TEXT (бывший .alert__text a) === */
.start__alert-text a { color: #f14130; }

/* === COL (бывший .col из bootstrap.css) === */
.start__col {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}

/* === table.css rules, scoped === */
.start__table {
  border: 1px solid rgba(90, 185, 234, 0.2);
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 100%;
  table-layout: fixed;
}

.start__table tr {
  border: 1px solid rgba(90, 185, 234, 0.12);
  padding: .35em;
}

.start__table th,
.start__table td {
  padding: .625em;
  text-align: center;
  color: #d5dfea;
}

.start__table th {
  font-size: .85em;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #5AB9EA;
}

@media screen and (max-width: 991px) {
  .start__table { border: 0; }

  .start__table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }

  .start__table tr {
    border-bottom: 3px solid rgba(90, 185, 234, 0.2);
    display: block;
    margin-bottom: .625em;
  }

  .start__table td {
    border-bottom: 1px solid rgba(90, 185, 234, 0.15);
    display: block;
    font-size: .8em;
    text-align: right;
  }

  .start__table td::before {
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
  }

  .start__table td:last-child { border-bottom: 0; }
}

/* === ORPHANED CSS из reference start.css === */

.start-steps { counter-reset: stepsCounter; }

.start-step__counter { width: 90px; }

.start-step__counter:before {
  width: 60px;
  height: 60px;
  display: block;
  border: 2px solid rgba(90, 185, 234, 0.5);
  border-radius: 8px;
  position: absolute;
  top: 5px;
  left: 15px;
  counter-increment: stepsCounter;
  content: counter(stepsCounter);
  color: #5ab9ea;
  font-size: 38px;
  font-weight: 600;
  line-height: 54px;
  text-align: center;
}

.start-step__button { width: 353px; }

.start-step__info { margin-top: 0.5rem; }
.start-step__info-jar { font-size: 0.95rem; }
.start-step__info .start__alert {
  font-size: 1rem !important;
  padding-bottom: 0.25rem !important;
  background-color: rgba(0, 0, 0, 0) !important;
  color: #96afc0;
}

button.start__btn {
  background: linear-gradient(135deg, #55b2fd, #6573ea);
  padding: 0 10px;
  color: #fff;
  border-radius: 8px;
  width: 190px;
  height: 53px;
  border: none;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  display: block;
  line-height: 53px;
  text-align: -webkit-center;
  float: left;
  margin-left: 15px;
  transition: filter 0.2s ease, transform 0.15s ease;
}

.bbcodes,
.btn-border {
  border: none;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  height: 36px;
  border-radius: 8px;
  line-height: 22px;
  outline: none;
  background: linear-gradient(135deg, #55b2fd, #6573ea);
  color: #fff;
  padding: 7px 22px;
  text-decoration: none !important;
  box-sizing: border-box;
  transition: filter 0.2s ease, transform 0.15s ease;
}
.bbcodes:hover,
.ui-button:hover { filter: brightness(1.1); transform: translateY(-1px); }

.btn-white > .icon { fill: #5ab9ea; }
.btn-white { background: rgba(255, 255, 255, 0.04); color: #5ab9ea; border: 1px solid rgba(90, 185, 234, 0.14); }
.btn-white:hover > .icon { fill: #fff; }
.btn-white:hover { background: rgba(90, 185, 234, 0.10); color: #fff; border-color: rgba(90, 185, 234, 0.38); }

.btn-big { height: 46px; padding: 12px 27px; border-radius: 23px; }

.btn-border {
  color: #5ab9ea;
  border: 2px solid rgba(90, 185, 234, 0.3);
  line-height: 22px;
  padding: 5px 20px;
  background-color: transparent !important;
  overflow: hidden;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.btn-border:hover { border-color: rgba(90, 185, 234, 0.6); color: #fff; }

.alert-heading { color: inherit; }
.alert-link { font-weight: 700; }
.alert-dismissible { padding-right: 4rem; }
.alert-dismissible .close { position: absolute; top: 0; right: 0; padding: 0.75rem 1.25rem; color: inherit; }
.alert-primary { color: #004085; background-color: #cce5ff; border-color: #b8daff; }
.alert-primary hr { border-top-color: #9fcdff; }
.alert-primary .alert-link { color: #002752; }
.alert-secondary { color: #383d41; background-color: #e2e3e5; border-color: #d6d8db; }
.alert-secondary hr { border-top-color: #c8cbcf; }
.alert-secondary .alert-link { color: #202326; }
.alert-success { color: #155724; background-color: #d4edda; border-color: #c3e6cb; }
.alert-success hr { border-top-color: #b1dfbb; }
.alert-success .alert-link { color: #0b2e13; }
.alert-info { color: #0c5460; background-color: #d1ecf1; border-color: #bee5eb; }
.alert-info hr { border-top-color: #abdde5; }
.alert-info .alert-link { color: #062c33; }
.alert-warning { color: #856404; background-color: #fff3cd; border-color: #ffeeba; }
.alert-warning hr { border-top-color: #ffe8a1; }
.alert-warning .alert-link { color: #533f03; }
.alert-danger { color: #721c24; background-color: #f8d7da; border-color: #f5c6cb; }
.alert-danger hr { border-top-color: #f1b0b7; }
.alert-danger .alert-link { color: #491217; }
.alert-light { color: #818182; background-color: #fefefe; border-color: #fdfdfe; }
.alert-light hr { border-top-color: #ececf6; }
.alert-light .alert-link { color: #686868; }
.alert-dark { color: #1b1e21; background-color: #d6d8d9; border-color: #c6c8ca; }
.alert-dark hr { border-top-color: #b9bbbe; }
.alert-dark .alert-link { color: #040505; }
