/* Стили для страницы "Как зайти на сервер" */
body {
  margin: 0;
  padding: 0;
  /* отступ под шапку — в layout/main; не суммировать с margin-top body */
  background-color: #1a1a1a;
  color: #f0f0f0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}

/* Глобальные сбросы стилей */
.how-to-join *,
.how-to-join *::before,
.how-to-join *::after {
  box-sizing: border-box;
}

/* Основной контейнер */
.how-to-join {
  max-width: 1200px;
  margin: 20px auto 50px;
  background-color: #20232a9d;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15), 0 1px 3px rgba(0, 0, 0, 0.1);
  border-top: 4px solid #ff4d4d;
  overflow: hidden;
  backdrop-filter: blur(12px);
  animation: fadeInUp 0.6s ease-out;
  position: relative;
}

.how-to-join::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 77, 77, 0.3), transparent);
  transform: translateY(4px);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.guide-container {
  padding: 0;
}

.guide-header {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.08), rgba(255, 77, 77, 0.02));
  padding: 40px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(7px);
  position: relative;
}

.guide-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ff4d4d, transparent);
  border-radius: 2px;
}

.guide-title {
  font-family: 'Future Z', sans-serif;
  color: #ff4d4d;
  font-size: 2.5rem;
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Карточки шагов */
.step {
  background-color: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  transition: background-color 0.3s ease;
  position: relative;
}

.step:last-child {
  border-bottom: none;
}

.step:hover {
  background-color: rgba(255, 77, 77, 0.008);
}

.step--highlighted {
  background: linear-gradient(135deg, rgba(255, 77, 77, 0.02), rgba(255, 77, 77, 0.01));
  border-bottom-color: rgba(255, 77, 77, 0.1);
}

.step-content {
  padding: 40px;
  animation: fadeInLeft 0.5s ease-out;
  animation-fill-mode: both;
}

.step:nth-child(2) .step-content { animation-delay: 0.1s; }
.step:nth-child(3) .step-content { animation-delay: 0.2s; }
.step:nth-child(4) .step-content { animation-delay: 0.3s; }

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.step-title {
  font-size: 1.5rem;
  color: #ff4d4d;
  margin: 0 0 24px 0;
  font-weight: 500;
  position: relative;
  padding-left: 20px;
  transition: color 0.2s ease;
}

.step-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 24px;
  background: linear-gradient(135deg, #ff4d4d, #ff6b6b);
  border-radius: 2px;
  transition: all 0.2s ease;
}

.step:hover .step-title::before {
  width: 5px;
  height: 26px;
  box-shadow: 0 0 8px rgba(255, 77, 77, 0.3);
}

.step-description {
  color: #e0e0e0;
}

.step-description > p {
  margin: 0 0 20px 0;
  font-size: 1rem;
  line-height: 1.6;
  transition: color 0.2s ease;
}

/* Списки */
.guide-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0 0;
  counter-reset: step-counter;
}

.guide-item {
  counter-increment: step-counter;
  position: relative;
  margin-bottom: 32px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.25));
  border-radius: 8px;
  border-left: 3px solid #ff4d4d;
  transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.guide-item:hover {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.4));
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), -2px 0 8px rgba(255, 77, 77, 0.1);
  border-left-width: 4px;
}

.guide-item::before {
  content: counter(step-counter);
  position: absolute;
  left: -16px;
  top: 24px;
  background: linear-gradient(135deg, #ff4d4d, #e60000);
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  border: 3px solid #20232a;
  box-shadow: 0 2px 8px rgba(255, 77, 77, 0.25);
  transition: all 0.2s ease;
}

.guide-item:hover::before {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(255, 77, 77, 0.4);
}

.guide-item > p {
  margin: 0;
  padding-right: 16px;
  color: #e0e0e0;
  line-height: 1.6;
  transition: color 0.2s ease;
}

.guide-item:hover > p {
  color: #f0f0f0;
}

.item-content > p {
  margin: 0 0 16px 0;
}

.item-content > p:last-child {
  margin-bottom: 0;
}

/* Группы действий и кнопки */
.action-group {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.action-group--multiple {
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn--primary {
  background: linear-gradient(135deg, #ff4d4d, #e60000);
  color: white;
  box-shadow: 0 2px 8px rgba(255, 77, 77, 0.2);
}

.btn--primary:hover {
  background: linear-gradient(135deg, #e60000, #cc0000);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 77, 77, 0.3);
}

.btn--secondary {
  background: rgba(255, 77, 77, 0.05);
  color: #ff4d4d;
  border-color: rgba(255, 77, 77, 0.3);
  backdrop-filter: blur(10px);
}

.btn--secondary:hover {
  background: linear-gradient(135deg, #ff4d4d, #e60000);
  color: white;
  transform: translateY(-2px);
  border-color: #ff4d4d;
  box-shadow: 0 6px 20px rgba(255, 77, 77, 0.2);
}

.btn-text {
  white-space: nowrap;
  position: relative;
  z-index: 1;
}

/* Контейнеры изображений */
.guide-item--with-image .image-container {
  margin-top: 20px;
}

.image-container {
  margin: 20px 0;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.image-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent, rgba(255, 77, 77, 0.02), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.image-container:hover::before {
  opacity: 1;
}

.guide-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: block;
  transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.guide-image:hover {
  transform: scale(1.02) translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 77, 77, 0.1);
  border-color: rgba(255, 77, 77, 0.2);
}

/* Скроллбар */
.how-to-join::-webkit-scrollbar {
  width: 8px;
}

.how-to-join::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}

.how-to-join::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #ff4d4d, #e60000);
  border-radius: 4px;
}

.how-to-join::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #e60000, #cc0000);
}

/* === АДАПТИВНЫЕ СТИЛИ === */

@media (max-width: 1200px) {
  .how-to-join {
    max-width: 95%;
    margin: 18px auto 44px;
  }
}

@media (max-width: 992px) {
  .how-to-join {
    margin: 18px auto 40px;
    border-radius: 10px;
  }
  
  .guide-header {
    padding: 32px 24px;
  }
  
  .guide-title {
    font-size: 2.2rem;
  }
  
  .step-content {
    padding: 32px 24px;
  }
  
  .step-title {
    font-size: 1.4rem;
  }
  
  .guide-item::before {
    width: 30px;
    height: 30px;
    left: -15px;
  }
}

@media (max-width: 768px) {
  .how-to-join {
    margin: 14px 16px 28px;
    border-radius: 8px;
  }
  
  .guide-header {
    padding: 28px 20px;
  }
  
  .guide-title {
    font-size: 1.8rem;
  }
  
  .step-content {
    padding: 28px 20px;
  }
  
  .step-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-left: 16px;
  }
  
  .step-title::before {
    height: 20px;
  }
  
  .guide-item {
    padding: 20px;
    margin-bottom: 28px;
  }
  
  .guide-item::before {
    top: 20px;
    width: 26px;
    height: 26px;
    font-size: 0.8rem;
    left: -13px;
  }
  
  .action-group {
    flex-direction: column;
    gap: 10px;
  }
  
  .btn {
    justify-content: center;
    padding: 14px 20px;
  }
  
  /* Отключаем некоторые анимации на мобильных */
  .guide-item:hover {
    transform: none;
  }
}

@media (max-width: 600px) {
  .how-to-join {
    margin: 16px 12px 24px;
  }
  
  .guide-header {
    padding: 24px 16px;
  }
  
  .guide-title {
    font-size: 1.6rem;
  }
  
  .step-content {
    padding: 24px 16px;
  }
  
  .step-title {
    font-size: 1.2rem;
    margin-bottom: 16px;
  }
  
  .guide-item {
    padding: 16px;
    margin-bottom: 24px;
    border-left-width: 2px;
  }
  
  .guide-item::before {
    left: -12px;
    top: 16px;
    width: 24px;
    height: 24px;
    font-size: 0.75rem;
    border-width: 2px;
  }
  
  .guide-item > p,
  .item-content > p {
    font-size: 0.95rem;
    padding-right: 8px;
  }
  
  .btn {
    font-size: 0.9rem;
    padding: 12px 16px;
  }
}

@media (max-width: 480px) {
  .how-to-join {
    margin: 12px 8px 20px;
  }
  
  .guide-header {
    padding: 20px 12px;
  }
  
  .guide-title {
    font-size: 1.4rem;
  }
  
  .step-content {
    padding: 20px 12px;
  }
  
  .step-title {
    font-size: 1.1rem;
    padding-left: 12px;
  }
  
  .step-title::before {
    width: 3px;
    height: 16px;
  }
  
  .guide-item {
    padding: 14px;
    margin-bottom: 20px;
  }
  
  .guide-item::before {
    left: -11px;
    top: 14px;
    width: 22px;
    height: 22px;
    font-size: 0.7rem;
  }
  
  .guide-item > p,
  .item-content > p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
}

@media (max-width: 360px) {
  .how-to-join {
    margin: 8px 4px 16px;
  }
  
  .guide-header {
    padding: 16px 8px;
  }
  
  .guide-title {
    font-size: 1.3rem;
  }
  
  .step-content {
    padding: 16px 8px;
  }
  
  .step-title {
    font-size: 1rem;
    padding-left: 10px;
  }
  
  .guide-item {
    padding: 12px;
    margin-bottom: 16px;
  }
  
  .guide-item::before {
    left: -10px;
    top: 12px;
    width: 20px;
    height: 20px;
    font-size: 0.65rem;
  }
  
  .guide-item > p,
  .item-content > p {
    font-size: 0.85rem;
    padding-right: 4px;
  }
  
  .btn {
    font-size: 0.85rem;
    padding: 10px 14px;
  }
}

/* Touch-устройства */
@media (hover: none) and (pointer: coarse) {
  .btn {
    min-height: 44px;
  }
  
  /* Отключаем hover эффекты */
  .step:hover,
  .guide-item:hover,
  .guide-item:hover::before,
  .guide-image:hover,
  .btn--primary:hover,
  .btn--secondary:hover {
    transform: none;
    background-color: inherit;
    box-shadow: inherit;
  }
  
  .btn--primary:hover {
    background: linear-gradient(135deg, #ff4d4d, #e60000);
  }
  
  .btn--secondary:hover {
    background: rgba(255, 77, 77, 0.05);
  }
  
  .btn:hover::before {
    width: 0;
    height: 0;
  }
}

/* ── Lightbox ─────────────────────────────────────── */

.guide-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 20px;
  backdrop-filter: blur(6px);
  animation: lbFadeIn 0.2s ease;
}

.guide-lightbox.active {
  display: flex;
}

@keyframes lbFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.guide-lb-img-wrap {
  position: relative;
  max-width: calc(100vw - 160px);
  max-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
}

#guide-lb-img {
  max-width: 100%;
  max-height: calc(100vh - 100px);
  border-radius: 10px;
  box-shadow: 0 16px 60px rgba(0,0,0,0.8), 0 0 0 1px rgba(255,255,255,0.08);
  display: block;
  animation: lbImgIn 0.2s ease;
}

@keyframes lbImgIn {
  from { opacity: 0; transform: scale(0.97); }
  to   { opacity: 1; transform: scale(1); }
}

.guide-lb-counter {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  white-space: nowrap;
}

.guide-lb-close {
  position: fixed;
  top: 18px;
  right: 22px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 10001;
}

.guide-lb-close:hover {
  background: rgba(220,53,69,0.7);
}

.guide-lb-nav {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.15s;
}

.guide-lb-nav:hover {
  background: rgba(220,53,69,0.6);
  transform: scale(1.08);
}

.guide-lb-nav:disabled {
  opacity: 0.2;
  pointer-events: none;
}

/* Make images look clickable */
.image-container {
  cursor: zoom-in;
}

@media (max-width: 600px) {
  .guide-lb-img-wrap {
    max-width: calc(100vw - 100px);
  }
  .guide-lb-nav {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
}

/* ── New elements ─────────────────────────────────── */

/* Header icon */
.guide-header-icon {
  font-size: 2.8rem;
  color: #ff4d4d;
  margin-bottom: 12px;
  filter: drop-shadow(0 0 14px rgba(255,77,77,0.45));
}

/* Sub-title under main title */
.guide-header-sub {
  font-size: 1rem;
  color: rgba(200,200,200,0.7);
  margin: 8px 0 24px;
}

/* Steps overview pills */
.guide-steps-overview {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.guide-step-pip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,77,77,0.1);
  border: 1px solid rgba(255,77,77,0.25);
  color: rgba(220,220,220,0.85);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
}

.guide-step-pip i {
  color: #ff6060;
}

.guide-step-pip--final {
  background: rgba(255,77,77,0.18);
  border-color: rgba(255,77,77,0.45);
  color: #ff7070;
}

.guide-step-pip-arrow {
  color: rgba(255,77,77,0.4);
  font-size: 0.75rem;
}

/* Step title icon */
.step-title-icon {
  margin-right: 6px;
  opacity: 0.9;
}

/* Button icon */
.btn-icon {
  margin-right: 7px;
  font-size: 0.9em;
  position: relative;
  z-index: 1;
}

/* Warning box */
.guide-warning {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(255, 160, 0, 0.1);
  border: 1px solid rgba(255, 160, 0, 0.3);
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 12px;
  color: #ffd080;
  font-size: 0.95rem;
  line-height: 1.5;
}

.guide-warning-icon {
  color: #ffaa00;
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Final block */
.guide-final {
  text-align: center;
  padding: 44px 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: linear-gradient(135deg, rgba(255,77,77,0.04), rgba(255,77,77,0.01));
}

.guide-final-icon {
  font-size: 2.4rem;
  color: #ff4d4d;
  margin-bottom: 14px;
  filter: drop-shadow(0 0 10px rgba(255,77,77,0.4));
}

.guide-final-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f0f0f0;
  margin: 0 0 10px;
}

.guide-final-sub {
  font-size: 0.95rem;
  color: rgba(200,200,200,0.65);
  margin: 0;
}

@media (max-width: 600px) {
  .guide-steps-overview {
    gap: 6px;
  }
  .guide-step-pip {
    font-size: 0.76rem;
    padding: 4px 10px;
  }
  .guide-step-pip-arrow {
    display: none;
  }
  .guide-final {
    padding: 30px 20px;
  }
}

/* =====================================================
   STYLE OVERRIDE — align guide with site palette
   accent: #dc3545 | bg: rgba(10,12,18,...)
   ===================================================== */

/* Обновляем цвета под общий стиль сайта */
body {
  background-color: rgba(10, 12, 18, 0.95);
  color: #e8e8e8;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.how-to-join {
  background: rgba(12, 14, 20, 0.92);
  border-top-color: #dc3545;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-top: 4px solid #dc3545;
  backdrop-filter: none;
}

.how-to-join::after {
  background: linear-gradient(90deg, transparent, rgba(220, 53, 69, 0.3), transparent);
}

.guide-header {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.15), rgba(220, 53, 69, 0.03));
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: none;
}

.guide-header::after {
  background: linear-gradient(90deg, transparent, #dc3545, transparent);
}

.guide-title {
  color: #dc3545;
}

.step-title {
  color: #dc3545;
}

.step-title::before {
  background: linear-gradient(135deg, #dc3545, #f87171);
}

.step--highlighted {
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.03), rgba(220, 53, 69, 0.015));
  border-bottom-color: rgba(220, 53, 69, 0.1);
}

.step:hover {
  background-color: rgba(220, 53, 69, 0.015);
}

.step:hover .step-title::before {
  box-shadow: 0 0 8px rgba(220, 53, 69, 0.3);
}

.guide-item {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.3));
  border-left: 3px solid #dc3545;
}

.guide-item:hover {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.45));
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2), -2px 0 8px rgba(220, 53, 69, 0.12);
}

.guide-item::before {
  background: linear-gradient(135deg, #dc3545, #b91c2c);
  border-color: rgba(12, 14, 20, 0.95);
  box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
}

.guide-item:hover::before {
  box-shadow: 0 4px 12px rgba(220, 53, 69, 0.45);
}

.guide-item > p,
.step-description > p {
  color: #d4d4d4;
}

.guide-item:hover > p {
  color: #e8e8e8;
}

/* Кнопки */
.btn--primary {
  background: linear-gradient(135deg, #dc3545, #b91c2c);
  box-shadow: 0 2px 8px rgba(220, 53, 69, 0.25);
}

.btn--primary:hover {
  background: linear-gradient(135deg, #b91c2c, #9a1728);
  box-shadow: 0 6px 20px rgba(220, 53, 69, 0.35);
}

.btn--secondary {
  background: rgba(220, 53, 69, 0.06);
  color: #f87171;
  border-color: rgba(220, 53, 69, 0.3);
  backdrop-filter: none;
}

.btn--secondary:hover {
  background: linear-gradient(135deg, #dc3545, #b91c2c);
  color: white;
  border-color: #dc3545;
  box-shadow: 0 6px 20px rgba(220, 53, 69, 0.25);
}

/* Изображения */
.guide-image {
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

.guide-image:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 20px rgba(220, 53, 69, 0.1);
  border-color: rgba(220, 53, 69, 0.2);
}

/* Скроллбар */
.how-to-join::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #dc3545, #b91c2c);
}

.how-to-join::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #b91c2c, #9a1728);
}

/* Touch-устройства — фиксируем цвета при hover-disable */
@media (hover: none) and (pointer: coarse) {
  .btn--primary:hover {
    background: linear-gradient(135deg, #dc3545, #b91c2c) !important;
  }

  .btn--secondary:hover {
    background: rgba(220, 53, 69, 0.06) !important;
    color: #f87171 !important;
    border-color: rgba(220, 53, 69, 0.3) !important;
    box-shadow: none !important;
  }
}

/* Специальные стили для лучшей читаемости */
@media (prefers-reduced-motion: reduce) {
  .how-to-join,
  .step-content,
  .guide-item,
  .guide-image,
  .btn {
    animation: none;
    transition: none;
  }
  
  .step:hover,
  .guide-item:hover,
  .guide-image:hover,
  .btn:hover {
    transform: none;
  }
}