* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #0a0a0a;
  color: #e0e0e0;
  line-height: 1.6;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(124, 179, 66, 0.15);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
}

.logo,
.logo-footer {
  display: flex;
  align-items: center;
  margin-right: 10px;
  text-decoration: none;
  width: 50px;
  border-radius: 20%;
}
.logo-footer {
  width: 45px;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: bold;
  background: linear-gradient(135deg, #7cb342, #8bc34a);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links {
  display: flex;
  gap: 2rem;
}
.nav-link {
  color: #9ca3af;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-link:hover,
.nav-link.active {
  color: #7cb342;
}

.btn {
  background: linear-gradient(135deg, #7cb342, #8bc34a);
  color: white;
  font-weight: 600;
  padding: 0.625rem 1.5rem;
  border-radius: 0.375rem;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(124, 179, 66, 0.3);
}
/* HERO GRID BASE */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* IMAGE CONTAINER (visible on desktop only) */
.hero-grid > div:last-child {
  text-align: center;
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
}

.hero-grid img {
  width: 100%;
  max-width: 650px;
  height: auto;
  display: block;
}

@media (max-width: 1024px) {
  /* Switch to 1 column */
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;          /* Centers text/content */
    justify-items: center;       /* Center grid children */
  }

  /* Hide the image container */
  .hero-grid > div:last-child {
    display: none;
  }
}

/* Small tablet and mobile — no image because it's already hidden */
@media (max-width: 768px) {
  .hero-grid {
    text-align: center;
    justify-items: center;
  }
}

@media (max-width: 480px) {
  .hero-grid {
    text-align: center;
    justify-items: center;
  }
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 64px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(124, 179, 66, 0.1),
    transparent 70%
  );
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

h1 {
  font-size: 3.5rem;
  font-weight: bold;
  color: #fff;
  line-height: 1.2;
}

.gradient-text {
  background: linear-gradient(135deg, #7cb342, #8bc34a);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.25rem;
  color: #9ca3af;
  margin: 1.5rem 0;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  margin: 2rem 0;
}

.btn-outline {
  background: transparent;
  border: 1px solid #7cb342;
  color: #7cb342;
  padding: 1rem 2rem;
  border-radius: 0.375rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-outline:hover {
  background: #7cb342;
  color: white;
}

/* Features */
.section {
  padding: 6rem 0;
}
.bg-dark {
  background: linear-gradient(to bottom right, #050505, #0a0a0a);
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  margin-bottom: 1rem;
}
.section-desc {
  font-size: 1.25rem;
  color: #9ca3af;
  text-align: center;
  max-width: 768px;
  margin: 0 auto 4rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: all 0.3s;
}

.card:hover {
  transform: translateY(-10px);
  border-color: rgba(124, 179, 66, 0.3);
  background: rgba(255, 255, 255, 0.03);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.icon-red {
  background: rgba(239, 68, 68, 0.15);
}
.icon-blue {
  background: rgba(59, 130, 246, 0.15);
}
.icon-yellow {
  background: rgba(234, 179, 8, 0.15);
}
.icon-purple {
  background: rgba(168, 85, 247, 0.15);
}

.card h3 {
  color: #fff;
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}
.card p {
  color: #9ca3af;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.feature-list {
  list-style: none;
}
.feature-list li {
  display: flex;
  align-items: center;
  color: #6b7280;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}
.bullet {
  width: 6px;
  height: 6px;
  background: #7cb342;
  border-radius: 50%;
  margin-right: 0.5rem;
}

/* CTA */
.cta {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #7cb342, #8bc34a);
}

.cta h2 {
  font-size: 3rem;
  font-weight: bold;
  color: white;
  text-align: center;
  margin-bottom: 1.5rem;
}
.cta p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  max-width: 768px;
  margin: 0 auto 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 4rem;
}

.btn-white {
  background: white;
  color: #7cb342;
  padding: 1.25rem 2rem;
  border-radius: 0.375rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
}

.stat-value {
  font-size: 2rem;
  font-weight: bold;
  color: white;
  margin: 1rem 0 0.5rem;
}
.stat-label {
  color: rgba(255, 255, 255, 0.8);
}

/* FAQ Styles */
.faq-container {
  margin-top: 2rem;
}

.faq-item {
  margin-bottom: 1rem;
  border: 1px solid #374151;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #7CB342;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: transparent;
  border: none;
  color: white;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: #7CB342;
}

.faq-icon {
  transition: transform 0.3s ease;
  font-size: 0.875rem;
  color: #7CB342;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-answer p {
  color: #9ca3af;
  line-height: 1.6;
  margin: 0;
}

/* Footer */
footer {
  background: #050505;
  color: white;
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

footer h3 {
  margin-bottom: 1rem;
}
footer ul {
  list-style: none;
}
.general-link,
footer a {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.2s;
}
.general-link:hover,
footer a:hover {
  color: #7cb342;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  text-align: center;
  color: #6b7280;
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none;
  }
  h1 {
    font-size: 2.5rem;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* DOCS */
/* Sidebar */
.docs-container {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 64px;
}

.sidebar {
  width: 280px;
  position: sticky;
  top: 64px;
  height: calc(100vh - 64px);
  overflow-y: auto;
  background: rgba(15, 15, 15, 0.5);
  border-right: 1px solid rgba(124, 179, 66, 0.15);
  padding: 2rem 1rem;
}

.sidebar h3 {
  color: #7cb342;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  padding: 0 1rem;
}

.sidebar-link {
  display: block;
  padding: 0.75rem 1rem;
  color: #9ca3af;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: all 0.2s;
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.sidebar-link:hover {
  background: rgba(124, 179, 66, 0.1);
  color: #7cb342;
}

.sidebar-link.active {
  background: rgba(124, 179, 66, 0.15);
  color: #7cb342;
  font-weight: 600;
}

/* Main Content */
.main-content {
  flex: 1;
  padding: 3rem 2rem;
  max-width: 900px;
}

.hero-section {
  margin-bottom: 3rem;
  padding: 2rem;
  background: linear-gradient(
    135deg,
    rgba(124, 179, 66, 0.1),
    rgba(139, 195, 74, 0.05)
  );
  border-radius: 1rem;
  border: 1px solid rgba(124, 179, 66, 0.2);
}

.hero-section h1 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.hero-section p {
  font-size: 1.125rem;
  color: #9ca3af;
}

.command-section {
  margin-bottom: 3rem;
  scroll-margin-top: 80px;
}

.command-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0.75rem;
  padding: 2rem;
  transition: all 0.3s;
}

.command-card:hover {
  border-color: rgba(124, 179, 66, 0.3);
  background: rgba(255, 255, 255, 0.03);
}

.command-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.command-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.5rem;
  background: rgba(124, 179, 66, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.command-card h2 {
  color: #fff;
  font-size: 1.75rem;
  margin: 0;
}

.command-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

/* Badge Colors */
.badge-fun {
  background: rgba(168, 85, 247, 0.2);
  color: #a855f7;
}

.badge-game {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
}

.badge-utility {
  background: rgba(59, 130, 246, 0.2);
  color: #3b82f6;
}

.badge-social {
  background: rgba(236, 72, 153, 0.2);
  color: #ec4899;
}

.command-description {
  color: #9ca3af;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.usage-section {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 0.5rem;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  border-left: 3px solid #7cb342;
}

.usage-label {
  color: #7cb342;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

.command-syntax {
  font-family: "Courier New", monospace;
  color: #8bc34a;
  font-size: 1rem;
  background: rgba(0, 0, 0, 0.4);
  padding: 0.75rem 1rem;
  border-radius: 0.375rem;
  display: block;
  margin-bottom: 0.5rem;
}

.param {
  color: #fef08a;
}

.examples {
  margin-top: 1.5rem;
}

.examples h4 {
  color: #7cb342;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.example-item {
  background: rgba(0, 0, 0, 0.3);
  padding: 0.75rem 1rem;
  border-radius: 0.375rem;
  margin-bottom: 0.5rem;
  font-family: "Courier New", monospace;
  font-size: 0.9rem;
  color: #a0a0a0;
}

.features {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #9ca3af;
}

.feature-bullet {
  color: #7cb342;
  font-weight: bold;
  margin-top: 0.125rem;
}

.note {
  background: rgba(59, 130, 246, 0.1);
  border-left: 3px solid #3b82f6;
  padding: 1rem;
  border-radius: 0.5rem;
  margin-top: 1rem;
  color: #a0c4ff;
  font-size: 0.95rem;
}

.search-box {
  margin-bottom: 1.5rem;
  position: relative;
}

.search-input {
  width: 100%;
  padding: 0.875rem 1rem 0.875rem 3rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  color: #fff;
  font-size: 1rem;
  transition: all 0.2s;
}

.search-input:focus {
  outline: none;
  border-color: #7cb342;
  background: rgba(255, 255, 255, 0.05);
}

.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #7cb342;
}

/* Filter Section */
.filter-section {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0.75rem;
}

.filter-label {
  color: #7cb342;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.filter-btn {
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  color: #9ca3af;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.875rem;
  font-weight: 500;
}

.filter-btn:hover {
  background: rgba(124, 179, 66, 0.1);
  border-color: rgba(124, 179, 66, 0.3);
  color: #7cb342;
}

.filter-btn.active {
  background: rgba(124, 179, 66, 0.2);
  border-color: #7cb342;
  color: #7cb342;
  font-weight: 600;
}

/* Hidden utility class */
.hidden {
  display: none !important;
}

/* Scrollbar */
.sidebar::-webkit-scrollbar {
  width: 6px;
}

.sidebar::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
}

.sidebar::-webkit-scrollbar-thumb {
  background: rgba(124, 179, 66, 0.3);
  border-radius: 3px;
}

.sidebar::-webkit-scrollbar-thumb:hover {
  background: rgba(124, 179, 66, 0.5);
}

@media (max-width: 768px) {
  .sidebar {
    display: none;
  }

  .main-content {
    padding: 2rem 1rem;
  }

  .hero-section h1 {
    font-size: 2rem;
  }

  .filter-buttons {
    gap: 0.5rem;
  }

  .filter-btn {
    font-size: 0.8rem;
    padding: 0.4rem 0.75rem;
  }
}
/*Privacy Policy*/

.policy-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 8rem 2rem 4rem;
}

.policy-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(124, 179, 66, 0.2);
}

.policy-header h1 {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 1rem;
}

.policy-meta {
  display: flex;
  justify-content: center;
  gap: 2rem;
  color: #9ca3af;
  font-size: 0.95rem;
}

.policy-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.policy-meta-item i {
  color: #7cb342;
}

.policy-content {
  color: #e0e0e0;
  line-height: 1.8;
}

.policy-section {
  margin-bottom: 3rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0.75rem;
  padding: 2rem;
  transition: all 0.3s;
}

.policy-section:hover {
  border-color: rgba(124, 179, 66, 0.3);
  background: rgba(255, 255, 255, 0.03);
}

.policy-section h2 {
  color: #fff;
  font-size: 1.75rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.policy-section h2 i {
  color: #7cb342;
  font-size: 1.5rem;
}

.policy-section h3 {
  color: #7cb342;
  font-size: 1.25rem;
  margin: 1.5rem 0 1rem;
}

.policy-section p {
  color: #9ca3af;
  margin-bottom: 1rem;
}

.policy-list {
  list-style: none;
  margin: 1rem 0;
  padding-left: 0;
}

.policy-list li {
  color: #9ca3af;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.policy-list li:before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #7cb342;
}

.highlight-box {
  background: rgba(124, 179, 66, 0.1);
  border-left: 3px solid #7cb342;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  margin: 1.5rem 0;
}

.highlight-box p {
  color: #e0e0e0;
  margin: 0;
}

.contact-box {
  background: linear-gradient(
    135deg,
    rgba(124, 179, 66, 0.1),
    rgba(139, 195, 74, 0.05)
  );
  border: 1px solid rgba(124, 179, 66, 0.2);
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
  margin-top: 3rem;
}

.contact-box h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.contact-box p {
  color: #9ca3af;
  margin-bottom: 1.5rem;
}

.contact-box a {
  color: #7cb342;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.contact-box a:hover {
  color: #8bc34a;
}

@media (max-width: 768px) {
  .policy-container {
    padding: 6rem 1rem 2rem;
  }

  .policy-header h1 {
    font-size: 2rem;
  }

  .policy-meta {
    flex-direction: column;
    gap: 0.5rem;
  }

  .policy-section {
    padding: 1.5rem;
  }

  .policy-section h2 {
    font-size: 1.5rem;
  }
}
/*Status Page*/

.status-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 8rem 2rem 4rem;
}

.status-header {
  text-align: center;
  margin-bottom: 3rem;
}

.status-header h1 {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 1rem;
}

.status-header p {
  font-size: 1.125rem;
  color: #9ca3af;
}

.overall-status {
  background: linear-gradient(
    135deg,
    rgba(124, 179, 66, 0.1),
    rgba(139, 195, 74, 0.05)
  );
  border: 1px solid rgba(124, 179, 66, 0.2);
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 3rem;
  text-align: center;
}

.overall-status.operational {
  border-color: #22c55e;
  background: linear-gradient(
    135deg,
    rgba(34, 197, 94, 0.1),
    rgba(34, 197, 94, 0.05)
  );
}

.overall-status.degraded {
  border-color: #eab308;
  background: linear-gradient(
    135deg,
    rgba(234, 179, 8, 0.1),
    rgba(234, 179, 8, 0.05)
  );
}

.overall-status.down {
  border-color: #ef4444;
  background: linear-gradient(
    135deg,
    rgba(239, 68, 68, 0.1),
    rgba(239, 68, 68, 0.05)
  );
}

.status-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.status-icon.operational {
  color: #22c55e;
}
.status-icon.degraded {
  color: #eab308;
}
.status-icon.down {
  color: #ef4444;
}

.overall-status h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.overall-status p {
  color: #9ca3af;
  font-size: 1.125rem;
}

.services-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: all 0.3s;
}

.service-card:hover {
  border-color: rgba(124, 179, 66, 0.3);
  background: rgba(255, 255, 255, 0.03);
}

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.service-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.5rem;
  background: rgba(124, 179, 66, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.service-details h3 {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.service-details p {
  color: #6b7280;
  font-size: 0.875rem;
}

.status-badge {
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.status-badge.operational {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
}

.status-badge.degraded {
  background: rgba(234, 179, 8, 0.2);
  color: #eab308;
}

.status-badge.down {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
}

.status-badge i {
  font-size: 0.75rem;
}

.service-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-item {
  text-align: center;
}

.stat-item .label {
  color: #6b7280;
  font-size: 0.75rem;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.stat-item .value {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 600;
}

.loading-spinner {
  text-align: center;
  padding: 3rem;
  color: #7cb342;
}

.loading-spinner i {
  font-size: 3rem;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.error-message {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid #ef4444;
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
  color: #fca5a5;
}

.uptime-info {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
}

.uptime-info h3 {
  color: #7cb342;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.uptime-info p {
  color: #9ca3af;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .status-container {
    padding: 6rem 1rem 2rem;
  }

  .status-header h1 {
    font-size: 2rem;
  }

  .service-stats {
    grid-template-columns: 1fr;
  }

  .service-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

/* Updates page */

.updates-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 8rem 2rem 4rem;
}

.updates-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(124, 179, 66, 0.2);
}

.updates-header h1 {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 1rem;
}

.updates-header p {
  font-size: 1.125rem;
  color: #9ca3af;
  max-width: 600px;
  margin: 0 auto;
}

.beta-announcement {
  background: linear-gradient(
    135deg,
    rgba(124, 179, 66, 0.15),
    rgba(139, 195, 74, 0.1)
  );
  border: 2px solid #7cb342;
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 3rem;
  text-align: center;
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(124, 179, 66, 0.3);
  }
  50% {
    box-shadow: 0 0 30px rgba(124, 179, 66, 0.5);
  }
}

.beta-announcement h2 {
  color: #7cb342;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.beta-badge {
  background: #7cb342;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
}

.beta-announcement p {
  color: #e0e0e0;
  font-size: 1.125rem;
}

.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #7cb342, rgba(124, 179, 66, 0.1));
}

.update-item {
  position: relative;
  margin-bottom: 3rem;
  padding-left: 2rem;
}

.update-dot {
  position: absolute;
  left: -2rem;
  top: 0.5rem;
  width: 1rem;
  height: 1rem;
  background: #7cb342;
  border-radius: 50%;
  border: 3px solid #0a0a0a;
  z-index: 1;
}

.update-dot.major {
  width: 1.25rem;
  height: 1.25rem;
  background: #7cb342;
  box-shadow: 0 0 20px rgba(124, 179, 66, 0.5);
}

.update-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0.75rem;
  padding: 2rem;
  transition: all 0.3s;
}

.update-card:hover {
  border-color: rgba(124, 179, 66, 0.3);
  background: rgba(255, 255, 255, 0.03);
  transform: translateX(5px);
}

.update-header-info {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.update-version {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.update-version h3 {
  color: #fff;
  font-size: 1.5rem;
  margin: 0;
}

.version-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.badge-major {
  background: rgba(124, 179, 66, 0.2);
  color: #7cb342;
}

.update-date {
  color: #9ca3af;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.update-category {
  margin-bottom: 1.5rem;
}

.update-category h4 {
  color: #7cb342;
  font-size: 1rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.update-list {
  list-style: none;
  padding-left: 0;
}

.update-list li {
  color: #9ca3af;
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.update-list li:before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #7cb342;
  font-size: 0.75rem;
}

.update-list.fixes li:before {
  content: "\f188";
  color: #ef4444;
}

.update-list.improvements li:before {
  content: "\f0eb";
  color: #3b82f6;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.stat-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s;
}

.stat-box:hover {
  border-color: rgba(124, 179, 66, 0.3);
  transform: translateY(-5px);
}

.stat-box i {
  font-size: 2rem;
  color: #7cb342;
  margin-bottom: 0.5rem;
}

.stat-box .stat-value {
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 0.25rem;
}

.stat-box .stat-label {
  color: #9ca3af;
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .updates-container {
    padding: 6rem 1rem 2rem;
  }

  .updates-header h1 {
    font-size: 2rem;
  }

  .timeline {
    padding-left: 1rem;
  }

  .update-item {
    padding-left: 1.5rem;
  }

  .update-dot {
    left: -1.5rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .update-header-info {
    flex-direction: column;
  }
}
