body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #333;
  color: #ffffff;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
}

header {
  background-color: #222;
  color: #ffffff;
  text-align: center;
  padding: 1em 0;
  box-sizing: border-box;
  font-size: 1.5em;
  border-bottom: 2px solid #444;
  margin-bottom: 10px;
}

header h1 {
  margin: 0;
  font-size: 1.5em;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px;
  box-sizing: border-box;
}

.site-grid {
  display: grid;
  gap: 10px;
  margin-top: 10px;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.site-card {
  background-color: #444;
  border: 1px solid #333;
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
  text-decoration: none;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}

.site-card:hover {
  transform: scale(1.05);
}

.site-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 18px 18px 0 0;
}

.site-info {
  padding: 10px;
  text-align: center;
  flex-grow: 1;
}

.site-info h2 {
  margin: 0;
  font-size: 1.2em;
}

.site-link {
  margin-top: 10px;
  color: #ffffff;
  text-decoration: none;
  background-color: #3498db;
  padding: 10px;
  border-radius: 5px;
  display: inline-block;
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.site-link:hover {
  background-color: #2c3e50;
  color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.announcement {
  background-color: #444;
  color: #ffffff;
  padding: 10px;
  margin: 15px 0;
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.announcement p {
  margin: 0;
  font-size: 1em;
}

.rectangle {
  width: 100%;
  height: 10px;
  background-color: #3498db;
  margin-top: 5px;
  border-radius: 6px;
}

.telegram-button {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  background-color: #0088cc;
  border-radius: 5px;
  margin-left: 10px;
  transition: background-color 0.3s ease;
}

.telegram-button:hover {
  background-color: #006699;
}

.telegram-icon {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

@media only screen and (max-width: 600px) {
  .site-card {
    width: 100%;
  }

  .site-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.loader {
  border: 8px solid #f3f3f3;
  border-top: 8px solid #3498db;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.loading-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100%;
  background-color: #333;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.body1{
  margin: 14px;
}