* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: black;
  color: #e0e0e0;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: rgb(214, 214, 214);
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  color: rgb(165, 165, 165);
}

.btn {
  border: none;
  border-radius: 5px;
  padding: 0.6rem 1.2rem;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn-primary {
  background-color: white;
  color: black;
  height: 50px;
  border-radius: 50px;
}

.btn-primary:hover {
  background-color: rgb(212, 212, 212);
}

.btn-secondary {
  background-color: black;
  color: white;
  border: solid;
  border-width: 0.1px;
  height: 50px;
  width: 120%;
  border-radius: 50px;
  border-color: rgb(101, 101, 101);
}

.btn-secondary:hover {
  background-color: rgb(17, 17, 17);
  color: #fff;
}

.btn-large {
  font-size: 1.25rem;
  padding: 1rem 2rem;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: black;
  border-bottom: 1px solid #333;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: 100px;
}

.logo {
  height: 40px;
  width: 40px;
  object-fit: contain;
}

.site-name {
  font-weight: 700;
  font-size: 1.5rem;
  color: #bb86fc;
}

.header-right {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-right: 100px;
}

.nav-link {
  font-weight: 600;
  font-size: 1rem;
  padding: 0.25rem 0.5rem;
}

.main-content {
  flex-grow: 1;
  padding: 2rem;
  max-width: 960px;
  margin: 0 auto;
}

.hero-container {
  position: relative;
  display: inline-block;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
}

.hero-image img.main-logo {
  height: 120px;
  width: 120px;
}

.green-dot {
  width: 10px;
  height: 10px;
  background-color: #17d844;
  border-radius: 50%;
  display: inline-block;
}

.green-dot1 {
  width: 10px;
  height: 10px;
  background-color: rgb(0, 153, 255);
  border-radius: 50%;
  display: inline-block;
}

.info-dot {
  width: 10px;
  height: 10px;
  background-color: #3e3e3e;
  border-radius: 50%;
  display: inline-block;
}

.hero-text {
  flex: 2 1 300px;
  color: #e0e0e0;
}

.add-btn {
  background-color: white;
  color: black;
  height: 50px;
  border-radius: 50px;
  border: none;
  width: 340px;
  font-size: larger;
}

.add-btn:hover {
  background-color: rgb(212, 212, 212);
}

.hero-buttons {
  flex-basis: 100%;
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.features-section {
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: white;
  text-align: center;
}

.section-subtitle {
  text-align: center;
  margin-bottom: 2rem;
  color: #ccc;
}

.features-container {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.feature-card {
  background-color: #2a2a2a;
  padding: 1.5rem;
  border-radius: 10px;
  max-width: 300px;
  color: #ddd;
  box-shadow: 0 0 8px rgba(187, 134, 252, 0.3);
}

.stats-section {
  display: flex;
  justify-content: center;
  gap: 6rem;
  margin-bottom: 3rem;
  color: white;
  font-weight: 700;
}

.stat-item h2 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 0.25rem;
  color: white;
}

.stat-item p {
  font-size: 1.25rem;
  text-align: center;
  color: white;
}

.call-to-action {
  text-align: center;
  margin-bottom: 3rem;
  color: #e0e0e0;
}

.call-to-action h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.call-to-action p {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.cta-button-wrapper {
  display: flex;
  justify-content: center;
}

footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #111;
  color: #eee;
}

.footer-left,
.footer-center,
.footer-right {
  flex: 1;
}

.footer-center {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.footer-right {
  margin-left: auto;
  display: flex;
  gap: 1rem;
  align-items: center;
}


.footer-left img.footer-logo {
  height: 40px;
  width: 40px;
}

.footer-center p {
  color: #666;
  font-size: 0.9rem;
}

.footer-right {
  display: flex;
  gap: 1rem;
}

.footer-a {
  color: rgb(214, 214, 214);
  text-decoration: none;
}

.footer-a:hover {
  text-decoration: none;
  color: rgb(165, 165, 165);
}

.status-containers {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.status-containers > div {
  background-color: #1e1e1e;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.6);
  flex: 1 1 250px;
  transition: background-color 0.3s ease;
}

.status-containers > div:hover {
  background-color: #272727;
}

.status-containers h2,
.status-containers h3,
.updates h2,
.updates h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  color: white;
}

.status-containers p,
.updates p {
  line-height: 1.5;
  color: #ccc;
}

.updates {
  background-color: #1e1e1e;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.6);
  color: #eee;
}

.updates > div {
  margin-bottom: 1rem;
  border-bottom: 1px solid #333;
  padding-bottom: 0.75rem;
}

.updates > div:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
