/* Основа модального окна */
.glassContainer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}

.crystalOverlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.582);
  backdrop-filter: blur(5px);
  opacity: 0;
  animation: overlayShow 0.3s ease forwards;
}

.aquaDialog {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: white;
  padding: 40px 35px;
  border-radius: 20px;
  width: 90%;
  max-width: 380px;
  opacity: 0;
  animation: dialogShow 0.4s ease 0.1s forwards;
}

/* Анимации */
@keyframes overlayShow {
  to { opacity: 1; }
}

@keyframes dialogShow {
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

/* Заголовок */
.oceanTitle {
  text-align: center;
  margin-bottom: 32px;
  font-size: 24px;
  font-weight: 600;
  position: relative;
  padding-bottom: 15px;
}

/* Опции связи */
.waveOptions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rippleOption {
  display: flex;
  align-items: center;
  padding: 18px 24px;
  background: #00A4B2;
  border-radius: 14px;
  text-decoration: none;
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  transition: all 1s ease;
  border: 1px solid rgba(32, 201, 151, 0.1);
  position: relative;
  overflow: hidden;
}

.rippleOption:hover {
  background: #00737e;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(32, 201, 151, 0.12);
}

.rippleOption i{
    color: white;
    margin-right: 10px;
}

.rippleDisabled {
  opacity: 0.6;
}

.rippleDisabled:hover {
  cursor: no-drop;
}

.flowText {
  flex-grow: 1;
  color: white;
}

.soonBadge {
  background: rgba(32, 201, 151, 0.1);
  color: #20c997;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Кнопка закрытия */
.crystalClose {
  position: absolute;
  top: 18px;
  right: 22px;
  background: rgba(32, 201, 151, 0.08);
  border: none;
  color: #666;
  font-size: 26px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.crystalClose:hover {
  background: rgba(32, 201, 151, 0.15);
  color: #20c997;
  transform: rotate(90deg);
}

/* Триггер кнопка */
.connectTrigger {
  display: inline-block;
  padding: 14px 28px;
  background: #20c997;
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid #20c997;
  box-shadow: 0 4px 12px rgba(32, 201, 151, 0.2);
}

.connectTrigger:hover {
  background: white;
  color: #20c997;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(32, 201, 151, 0.25);
}