/* TurkeyVirtualPrivateServer — extends virtual-private-server.css */

.turkey-workspace {
  display: block;
}

.turkey-period-toggles .vps-provider-toggle.is-active {
  background: var(--vps-accent-soft);
  border-color: var(--vps-accent);
  color: var(--vps-accent-strong);
  font-weight: 700;
}

.turkey-os-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
}

.turkey-os-badge--linux {
  background: rgba(13, 148, 136, 0.12);
  color: #0f766e;
}

.turkey-os-badge--both {
  background: rgba(37, 99, 235, 0.12);
  color: #1d4ed8;
}

.turkey-plan-code {
  display: block;
  font-size: 0.75rem;
  color: var(--vps-muted);
  margin-top: 0.15rem;
}

.turkey-price-sub {
  display: block;
  font-size: 0.75rem;
  color: var(--vps-muted);
  margin-top: 0.15rem;
}

.turkey-price-monthly-hint {
  display: block;
  font-size: 0.72rem;
  color: var(--vps-accent-strong);
  margin-top: 0.2rem;
}

.turkey-notice {
  margin: 0 0 1.15rem;
  padding: 1.15rem 1.25rem 1.2rem;
  background:
    linear-gradient(135deg, rgba(220, 38, 38, 0.08), rgba(15, 23, 42, 0.02)),
    var(--vps-surface);
  border: 1px solid rgba(220, 38, 38, 0.28);
  border-radius: 18px;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
  position: relative;
  overflow: hidden;
}

.turkey-notice::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #ef4444, #b91c1c);
}

.turkey-notice__head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}

.turkey-notice__icon {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(145deg, #ef4444, #b91c1c);
  box-shadow: 0 6px 14px rgba(220, 38, 38, 0.35);
}

.turkey-notice__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: #991b1b;
  line-height: 1.45;
}

.turkey-notice__list {
  margin: 0;
  padding-inline-start: 1.35rem;
  color: #7f1d1d;
  font-size: 0.92rem;
  line-height: 1.85;
}

.turkey-notice__list li + li {
  margin-top: 0.35rem;
}

@media (max-width: 575.98px) {
  .turkey-notice {
    padding: 1rem 1rem 1.05rem;
  }

  .turkey-notice__title {
    font-size: 0.98rem;
  }

  .turkey-notice__list {
    font-size: 0.88rem;
    line-height: 1.75;
  }
}

[data-bs-theme="dark"] .turkey-os-badge--linux {
  background: rgba(45, 212, 191, 0.18);
  color: #5eead4;
}

[data-bs-theme="dark"] .turkey-os-badge--both {
  background: rgba(96, 165, 250, 0.18);
  color: #93c5fd;
}

[data-bs-theme="dark"] .turkey-notice__title {
  color: #fecaca;
}

[data-bs-theme="dark"] .turkey-notice__list {
  color: #fca5a5;
}

[data-bs-theme="dark"] .turkey-notice {
  border-color: rgba(248, 113, 113, 0.35);
  background:
    linear-gradient(135deg, rgba(220, 38, 38, 0.16), rgba(15, 23, 42, 0.4)),
    var(--vps-surface);
}