/* Kezdőlap - liquid glass */

.home-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  min-height: calc(100vh - 48px);
  padding: 24px clamp(16px, 4vw, 48px) 64px;
  box-sizing: border-box;
  text-align: center;
}

.home-main .logo-wrapper {
  padding-top: 0;
}

.home-main .logo-wrapper #logo {
  height: clamp(70px, 9vw, 110px) !important;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(74, 222, 128, 0.12);
  border: 1px solid rgba(74, 222, 128, 0.35);
  color: #4ade80;
  font-size: 13px;
  font-weight: 600;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
}

.status-pill--offline {
  background: rgba(248, 113, 113, 0.12);
  border-color: rgba(248, 113, 113, 0.35);
  color: #f87171;
}
.status-pill--offline .status-dot {
  background: #f87171;
}

.status-pill--starting {
  background: rgba(251, 146, 60, 0.12);
  border-color: rgba(251, 146, 60, 0.35);
  color: #fb923c;
}
.status-pill--starting .status-dot {
  background: #fb923c;
}

.status-pill--maintenance {
  background: rgba(253, 224, 71, 0.12);
  border-color: rgba(253, 224, 71, 0.35);
  color: #fde047;
}
.status-pill--maintenance .status-dot {
  background: #fde047;
}

.stat-panel {
  width: 100%;
  max-width: 1000px;
  padding: clamp(24px, 4vw, 44px) clamp(20px, 3vw, 40px);
  box-sizing: border-box;
}

.stat-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.stat-card {
  flex: 1;
  min-width: 220px;
  padding: 34px 24px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.stat-label {
  color: var(--text-color);
  font-size: 15px;
  font-weight: 500;
}

.stat-value {
  color: #fff;
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
}

.stat-value-max {
  color: var(--text-dim);
  font-size: 22px;
  font-weight: 600;
}

.stat-progress {
  width: 120px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  overflow: hidden;
}

.stat-progress-bar {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary-color), #f2c35c);
}

.connect-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.ip-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 26px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  color: #d8d8de;
  font-size: 16px;
  cursor: pointer;
  transition: var(--tran-03);
}

.ip-pill:hover {
  border-color: var(--primary-border);
}

.ip-pill i {
  color: var(--primary-color);
  font-size: 19px;
}

.ip-pill span {
  font-family: monospace;
  font-size: 15px;
}

.custom-notification {
  display: none;
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  border-radius: 999px;
  background: rgba(30, 30, 34, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(74, 222, 128, 0.4);
  color: #4ade80;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5);
  z-index: 200;
}

.custom-notification i {
  font-size: 20px;
}

@media (max-width: 480px) {
  .stat-value { font-size: 30px; }
  .ip-pill span { font-size: 13px; }
}
