/* Persian Femboy Server Section - Responsive, colorful, dark-theme friendly */

:root {
  --pf-bg: #0f0f13;
  --pf-card: #13141a;
  --pf-text: #e6e6ea;
  --pf-muted: #a0a3ad;
  --pf-border: #1c1e26;
  --pf-accent: #a855f7; /* purple */
  --pf-accent-2: #22d3ee; /* cyan */
}

.pf-section {
  background: radial-gradient(80% 120% at 50% 0%, rgba(168,85,247,0.14) 0%, rgba(34,211,238,0.08) 30%, rgba(15,15,19,0) 65%), var(--pf-bg);
}

.pf-wrap {
  max-width: 1220px;
  margin-inline: auto;
  padding: 24px;
}

.pf-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.pf-logo {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(168,85,247,0.35), 0 2px 8px rgba(34,211,238,0.15);
  border: 1px solid var(--pf-border);
}

.pf-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--pf-text);
}

.pf-subtitle {
  font-size: 14px;
  color: var(--pf-muted);
}

.pf-card {
  position: relative;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(19,20,26,0.9), rgba(19,20,26,0.85));
  border: 1px solid var(--pf-border);
  overflow: hidden;
}

/* rainbow top bar */
.pf-card::before {
  content: "";
  position: absolute;
  inset-block-start: 0;
  inset-inline: 0;
  height: 4px;
  background: linear-gradient(90deg,
    #ff3d3d 0%, #ff7a00 16%, #ffd300 33%, #4bdc4b 50%, #3d90ff 66%, #9b3dff 83%, #ff3d86 100%);
}

.pf-body {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  padding: 24px;
}

.pf-desc {
  color: var(--pf-text);
  font-size: 15px;
  line-height: 1.8;
}

.pf-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.pf-ip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #0b0c10;
  border: 1px dashed #2a2d38;
  color: #c9cbcf;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.pf-copy {
  padding: 10px 14px;
  border-radius: 12px;
  background: linear-gradient(180deg, var(--pf-accent), #7c3aed);
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 700;
  transition: transform .15s ease, box-shadow .2s ease;
  box-shadow: 0 10px 24px rgba(168,85,247,0.35);
}
.pf-copy:hover { transform: translateY(-1px); }
.pf-copy:active { transform: translateY(0); }

.pf-note {
  font-size: 13px;
  color: var(--pf-muted);
  margin-top: 8px;
}

.pf-server {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  background: #111319;
  border: 1px solid var(--pf-border);
  border-radius: 14px;
}

.pf-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
}

.pf-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}
.pf-badge.online { color: #18e07d; background: rgba(24,224,125,.12); border: 1px solid rgba(24,224,125,.22); }
.pf-badge.offline { color: #ff6b6b; background: rgba(255,107,107,.12); border: 1px solid rgba(255,107,107,.22); }
.pf-badge.loading { color: #22d3ee; background: rgba(34,211,238,.12); border: 1px solid rgba(34,211,238,.22); }

.pf-stat {
  color: var(--pf-text);
  background: #0d0f15;
  border: 1px solid var(--pf-border);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
}

.pf-motd {
  color: #c6d8ff;
  font-size: 13px;
  opacity: .9;
}

/* Responsive */
@media (max-width: 992px) {
  .pf-body { grid-template-columns: 1fr; }
  .pf-wrap { padding: 18px; }
}

/* Minimal fade-in */
.pf-card { opacity: 0; transform: translateY(6px); }
.pf-card.show { opacity: 1; transform: translateY(0); transition: opacity .35s ease, transform .35s ease; }