@font-face {
  font-family: 'YekanBakh';
  src: url('assets/fonts/YekanBakh-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-header-footer: #141414;
  --color-card: #1a1a1a;
  --color-accent: #ff7a1b;
  --color-text: #fff;
  --color-text-secondary: #999;
  --border-radius: 10px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'YekanBakh', sans-serif;
  background: #0f0f0f;
  color: var(--color-text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.showStatus {
  max-width: 1000px;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 10px;
}

.status-all-box {
  background-color: var(--color-accent);
  width: 100%;
  text-align: center;
  padding: 15px 0;
  border-radius: var(--border-radius);
  margin-bottom: 20px;
  font-size: 1rem;
  font-weight: 600;
}

.main-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-top: 20px;
}

.main-content .container {
  width: 100%;
  max-width: 1000px;
  padding: 10px 10px 20px 10px;
  overflow-y: auto;
}

.site-header {
  background: var(--color-header-footer);
  height: 5rem;
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  height: 100%;
  width: 100%;
  max-width: 1000px;
}

.logo-wrapper {
  width: 50px;
  height: 50px;
}

.logo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-title {
  font-size: 1.2rem;
  font-weight: 600;
}

.status-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.services-counter {
  background: var(--color-card);
  border: 1px solid #444;
  border-radius: var(--border-radius);
  padding: 0.2rem 0.6rem;
  font-size: 0.8rem;
  margin-right: 0.5rem;
}

.update-info {
  font-size: 0.8rem;
  color: var(--color-text-secondary);
}

.status-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.status-card {
  background: var(--color-card);
  border-radius: var(--border-radius);
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.2s ease;
}

.status-card:hover {
  background: #292929;
}

.service-name {
  font-size: 1rem;
}

.status-badge {
  padding: 0.3rem 0.9rem;
  border-radius: 6px;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.operational {
  background: #0f2e0f;
  color: #6aff89;
}

.outage {
  background: #2e0f0f;
  color: #ff6e6e;
}

.pulse-indicator {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: currentColor;
  animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.3); }
  70% { box-shadow: 0 0 0 9px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

.site-footer {
  background: var(--color-header-footer);
  height: 80px;
}

.footer-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.footer-nav ul {
  display: flex;
  list-style: none;
  gap: 45px;
}

.footer-nav a {
  color: var(--color-text-secondary);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--color-accent);
}