body {
      width: 100%;
  background: #1b1d22;
  color: #fff;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.container {
  margin: 0 auto;
  width: 100%;
}

.content {
  background: #1b1d22;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.logo img {
  width: 200px;
  height: 200px;
}

.header {
  max-width: 650px;
  margin-bottom: 20px;
  text-align: center;
}

.header h1 {
  color: #e5e5e5;
  margin-bottom: 10px;
}

.header p {
  text-align: center;
  color: #e5e5e5;
  font-size: 18px;
  margin-bottom: 20px;
}

/* Responsive Styles */
@media (max-width: 576px) {
  .header {
    max-width: 415px;
  }
}

.bookmark-text {
  color: #b5b5b5;
  font-size: 14px;
  padding: 5px;
  text-align: center;
}

.m-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.m-list li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 10px;
  width: 100%;
}

.m-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #242625;
  padding: 0.5rem 0.8rem;
  margin: 0.3rem 0;
  border-radius: 0.4rem;
  border: 1px solid #3e403f;
  color: #b5b5b5;
  text-decoration: none;
  transition: border-color .3s, background .3s;
  width: 100%;
}


.m-list li a .dotr {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #ff0000;
  box-shadow: 0 0 7px #ff5050;
  border-radius: 50%;
  margin-left: 10px;
  animation: blink 1.5s infinite;
}


.m-list li a .doty {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #ffc107;
  box-shadow: 0 0 7px #ffc107;
  border-radius: 50%;
  margin-left: 10px;
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0; }
}



.m-list li a .dot {
  width: 8px;
  height: 8px;
  background-color: #128bd3;
  box-shadow: 0 0 7px #128bd3;
  border-radius: 50%;
  margin-left: 10px;
  animation: blink 1.5s infinite;
}



.m-list li a .live-text {
  margin-left: auto;
  color: #e5e5e5;
}

.m-list li a:hover {
  border-color: #128bd3;
  background: #007bff;
}

.m-list li a:hover .dot {
  background-color: #128bd3;
}

.content .main ul.m-list li a span:first-child {
  font-weight: 600;
  color: #e5e5e5;
}

@keyframes blink {
  0% {
    box-shadow: 0 0 7px #128bd3;
    opacity: 1;
  }
  20% {
    box-shadow: 0 0 7px rgba(18, 139, 211, 0.8);
    opacity: 0.8;
  }
  40% {
    box-shadow: 0 0 7px rgba(18, 139, 211, 0.6);
    opacity: 0.6;
  }
  60% {
    box-shadow: 0 0 7px rgba(18, 139, 211, 0.8);
    opacity: 0.8;
  }
  80% {
    box-shadow: 0 0 7px rgba(18, 139, 211, 0.6);
    opacity: 0.6;
  }
  100% {
    box-shadow: 0 0 7px #128bd3;
    opacity: 1;
  }
}

/* Responsive Styles */
@media (max-width: 576px) {
  .logo img {
    width: 150px;
    height: 150px;
  }


  .m-list li a {
    font-size: 18px;
  }
}

/* Additional Styles */
.content .main {
  max-width: 650px;
  position: relative;
  margin: 0 1rem;
  z-index: 1;
  background: #1e201f;
  border-radius: 0.7rem;
  padding: 1.5rem;
  box-shadow: 0 1px 0 rgba(255,255,255,.1), inset 0 3px 3px rgba(0,0,0,.5);
  margin-bottom: 1rem;
}

.content .main .mt-5 {
  text-align: left;
  margin-top: 1.5rem;
  background: #26282b;
  color: #a4a8a4;
  font-size: 14px;
  font-family: "Inter", sans-serif;
  padding: 1rem;
}

.support-link {
  color: #229ED9;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
}
.support-link:hover {
  color: #3fa7d9;
  text-decoration: none;
}

.support-team a {
  color: #ffffff;
  text-decoration: none;
}

.footer {
  margin: 5px;
  color: #a4a8a4;
  font-size: 15px;
  text-align: center;
}
