/* ========== Coin Section Base ========== */
.coin-section {
  margin-top: 0;
  padding-top: 0;
  max-width: none;
}
/* ========== Coin Header ========== */
.coin-header {
  display: flex;
  align-items: center;
  height: 200px;
  justify-content: space-between;
  border-bottom: 1.5px solid rgba(255,255,255,0.07);
}

.coin-header-left {
  display: flex;
  gap: 0.05rem;
  flex-direction: column;
  align-items: flex-start;
}

.coin-pretitle {
  display: block;
  font-family: 'UNCAGE', sans-serif;
  font-size: 1.33rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 6px;
  color: #ffe98a;
  margin-bottom: 0.35rem;
  line-height: 1.1;
  position: relative;
}
.coin-pretitle::after {
  content: '';
  display: block;
  width: 32px;
  height: 3px;
  background: linear-gradient(90deg, #ffe98a 50%, transparent 100%);
  border-radius: 2px;
  margin-top: 4px;
}

.coin-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.3rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin: 0 0 0.3rem 0;
  line-height: 1.12;
  color: #fff;
}

.coin-subtitle {
  font-family: 'KievitOT', monospace;
  font-weight: 300;
  font-size: 1.12rem;
  letter-spacing: 0.1px;
  color: #fff;
  margin-top: 0.2rem;
  line-height: 1.45;
  max-width: 760px;
  padding-left: 50px;
}

/* ========== Coin Phase Slides ========== */
.coin-phase-slides {
  position: relative;
  width: 98vw;           /* почти вся ширина экрана */
  max-width: 1800px;     /* по желанию: можно 100vw, если прям во весь экран */
  margin-left: 0;        /* убрать авто-центрирование */
  margin-right: 0;
  min-height: 500px;
  max-height: 460px;
  overflow-x: hidden;
  overflow-y: auto;
  box-shadow: 0 6px 28px rgba(84, 12, 97, 0.25);
  background: none;
}

.coin-phase-slide,
.coin-phase-slide.active {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.5s, transform 0.5s;
  pointer-events: none;
  z-index: 0;
}
.coin-phase-slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  z-index: 1;
}

/* Убираем margin-right и box-sizing: content-box! Только padding! */
.coin-phase {
  background: linear-gradient(90deg, #594176 0%, #981954 100%);
  padding: 36px 36px 36px 32px; /* Левый отступ 32px, если надо — ставь меньше! */
  border-radius: 0;
  box-shadow: 0 6px 28px rgba(84, 12, 97, 0.25);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0;
}

.coin-phase-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  opacity: 1;
}
.coin-phase-header span {
  font-family: 'KievitOT', monospace;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 1.4rem;
  color: #fff;
  letter-spacing: 0.01em;
  opacity: 1;
}

.coin-phase-content { margin-top: 10px; }

.coin-phase-desc {
  width: 60%;
  color: #f6d9fa;
  font-family: 'KievitOT', monospace;
  font-size: 1.08rem;
  margin-bottom: 25px;
  font-weight: 300;
  text-align: justify;
  opacity: 1;
  line-height: 1.4em;
}

.coin-phase-features {
  display: flex;
  gap: 80px;
  margin-bottom: 26px;
}

.coin-feature {
  color: #ffe98a;
  font-family: 'KievitOT', monospace;
  padding-top: 40px;
  padding-bottom: 40px;
  max-width: 300px;
  font-weight: 800;
  font-size: 1.4rem;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  opacity: 1;
}

.coin-feature .dot {
  width: 14px;
  height: 14px;
  background: #ffe98a;
  border-radius: 50%;
  display: inline-block;
  margin-right: 9px;
  flex-shrink: 0;
}

.coin-phase-details {
  font-family: 'KievitOT', monospace;
  text-align: justify;
  font-weight: 300;
  color: #fff;
  font-size: 1rem;
  opacity: 0.88;
  margin-left: 60%;
  line-height: 1.4em;
}

/* ========== Слайдер Навигация и Счётчик ========== */
.coin-slide-counter {
  font-size: 2rem;
  padding-top: 120px;
  color: #fff;
  opacity: 0.5;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-left: 36px;
  min-width: 80px;
  text-align: right;
  font-weight: 200;
}
.coin-slider-nav {
  display: flex;
  gap: 14px;
}
.coin-slider-nav button {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.8rem;
  cursor: pointer;
  opacity: 0.8;
  transition: background 0.18s, color 0.21s, border-color 0.19s;
  display: flex;
  justify-content: center;
}
.coin-slider-nav button:disabled {
  opacity: 0.23;
  cursor: default;
}
.coin-slider-nav button:hover:enabled {
  background:    #ffe98a;
  color:         #a3257b;
  border:        2px solid #e3c243;
}

/* ========== Stay Connected ========== */
.coin-stay-connected {
  width: 76%;
  margin: 3rem 0 0;
  margin-left: -8px;
  margin-right: 282px;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 2rem;
  color: #f6f6f6;
  font-family: 'KievitOT', monospace;
}
.coin-stay-connected h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
  margin: 0 0 0.5rem;
  letter-spacing: 0.5px;
}
.coin-stay-connected p {
  font-size: 1rem;
  line-height: 1.5;
  margin: 0 0 1.5rem;
  color: #f6d9fa;
}
.coin-social-list {
  display: flex;
  gap: 1.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.coin-social-list li a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  color: #ffe98a;
  text-decoration: none;
  transition: color 0.2s, text-shadow 0.2s;
}
.coin-social-list li a:hover {
  color: #fff;
  text-shadow: 0 0 6px #ffe98a99;
}

/* ========== Мобильная адаптация ========== */
@media (max-width: 1200px) {
  .coin-header, .coin-phase, .coin-phase-slides {
    width: 98% !important;
    padding: 0 16px !important;
    margin-right: auto  !important;
    margin-left: auto  !important;
    max-width: 100% !important;
  }
  .coin-phase-features { gap: 18px; }
  .coin-stay-connected {
    width: 98%;
    margin-left: 0;
    margin-right: 0;
    padding-top: 1.5rem;
  }
}
@media (max-width: 900px) {
  .coin-header, .coin-phase, .coin-phase-slides { width: 100% !important; padding: 0 8px !important; }
  .coin-phase-features { flex-direction: column; gap: 18px; }
  .coin-stay-connected { width: 100%; padding-top: 1rem; }
}
@media (max-width: 719px) {
  .coin-header, .coin-phase, .coin-phase-slides {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 18px 12px !important;
    max-width: 100vw !important;
  }
  .coin-header {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    padding-bottom: 0 !important;
  }
  .coin-title { font-size: 1.4rem; }
  .coin-pretitle { font-size: 0.75rem; letter-spacing: 1.5px; }
  .coin-subtitle { font-size: 0.95rem; margin-top: 0.3rem; }
  .coin-phase-desc,
  .coin-phase-details {
    width: 100% !important;
    margin: 0 0 1.5rem 0;
    font-size: 0.93rem;
  }
  .coin-phase-features {
    flex-direction: column !important;
    gap: 1rem !important;
  }
  .coin-feature { font-size: 1rem; }
  .coin-feature .dot { width: 12px; height: 12px; }
  .coin-phase-details { margin-left: 0 !important; margin-top: 0.7rem !important; }
  .coin-stay-connected {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-top: 1rem;
  }
  .coin-stay-connected h3 { font-size: 1.2rem; }
  .coin-stay-connected p  { font-size: 0.85rem; }
}
/* -- Точные под смартфоны -- */
@media only screen and (max-width: 430px) and (min-width: 391px) {
  .coin-header, .coin-phase, .coin-phase-slides {
    padding: 22px 10px 22px 24px !important;
    margin-right: 0 !important;
    min-height: 210px;
    max-width: 100vw !important;
  }
  .coin-title { font-size: 1.16rem; }
  .coin-pretitle { font-size: 0.71rem; }
  .coin-phase-desc { font-size: 0.92rem; }
  .coin-feature   { font-size: 0.95rem; }
  .coin-slide-counter { font-size: 1.4rem; }
  .coin-slider-nav button { width: 26px; height: 26px; font-size: 1rem; }
  .coin-stay-connected h3 { font-size: 1.07rem; }
  .coin-stay-connected p { font-size: 0.84rem; }
}
@media only screen and (max-width: 393px) and (min-width: 361px) {
  .coin-header, .coin-phase, .coin-phase-slides {
    padding: 18px 8px 18px 18px !important;
    margin-right: 0 !important;
    min-height: 170px;
    max-width: 100vw !important;
  }
  .coin-title { font-size: 1.04rem; }
  .coin-pretitle { font-size: 0.66rem; }
  .coin-phase-desc { font-size: 0.89rem; }
  .coin-feature   { font-size: 0.9rem; }
  .coin-slide-counter { font-size: 1.25rem; }
  .coin-slider-nav button { width: 22px; height: 22px; font-size: 0.9rem; }
  .coin-stay-connected h3 { font-size: 0.98rem; }
  .coin-stay-connected p { font-size: 0.77rem; }
}
@media only screen and (max-width: 360px) {
  .coin-header, .coin-phase, .coin-phase-slides {
    padding: 13px 4px 13px 11px !important;
    margin-right: 0 !important;
    min-height: 130px;
    max-width: 100vw !important;
  }
  .coin-title { font-size: 0.89rem; }
  .coin-pretitle { font-size: 0.57rem; }
  .coin-phase-desc { font-size: 0.82rem; }
  .coin-feature   { font-size: 0.81rem; }
  .coin-slide-counter { font-size: 1rem; }
  .coin-slider-nav button { width: 18px; height: 18px; font-size: 0.7rem; }
  .coin-stay-connected h3 { font-size: 0.7rem; }
  .coin-stay-connected p { font-size: 0.61rem; }
}
@media only screen and (max-width: 411px) and (min-width: 394px) {
  .coin-header, .coin-phase, .coin-phase-slides {
    padding: 19px 8px 19px 20px !important;
    margin-right: 0 !important;
    min-height: 150px;
    max-width: 100vw !important;
  }
  .coin-title { font-size: 1.09rem; }
  .coin-pretitle { font-size: 0.69rem; }
  .coin-phase-desc { font-size: 0.87rem; }
  .coin-feature   { font-size: 0.88rem; }
  .coin-slide-counter { font-size: 1.18rem; }
  .coin-slider-nav button { width: 21px; height: 21px; font-size: 0.87rem; }
  .coin-stay-connected h3 { font-size: 0.88rem; }
  .coin-stay-connected p { font-size: 0.77rem; }
}
