body {
  margin: 0;
  font-family: sans-serif;
  background-color: #1e1e1e;
  color: #fff;
  text-align: center;
}

header {
  background-color: #111;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
}

header h1 {
  color: red;
  cursor: pointer;
  font-size: 28px;
}

header button {
  background-color: #fff;
  color: #000;
  border: none;
  padding: 8px 14px;
  cursor: pointer;
  font-weight: bold;
  border-radius: 4px;
}

.video-wrapper {
  margin: 30px auto;
  max-width: 560px;
}

.main-video {
  width: 100%;
  height: 315px;
  border-radius: 8px;
}

.boosty-section {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.boosty-card {
  background-color: #2b2b2b;
  padding: 15px;
  border-radius: 10px;
  width: 250px;
  transition: transform 0.3s;
}

.boosty-card:hover {
  transform: scale(1.05);
}

.boosty-card img {
  width: 100%;
  border-radius: 8px;
}

.boosty-card p {
  margin-top: 10px;
  font-weight: bold;
  color: #fff;
}

.row-four-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin: 40px auto;
  padding: 0 20px;
}

.boosty-card {
  background-color: #2b2b2b;
  padding: 15px;
  border-radius: 10px;
  width: 220px;
  transition: transform 0.3s;
  text-align: center;
}

.boosty-card:hover {
  transform: scale(1.05);
}

.boosty-card img {
  width: 100%;
  border-radius: 8px;
}

.boosty-card p {
  margin-top: 10px;
  font-weight: bold;
  color: #fff;
}

.question strong {
  color: orange;
  font-weight: bold;
  font-size: 18px;
  display: block;
  margin-bottom: 5px;
}

.socials {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px 20px;
  max-width: 600px;
  margin: 0 auto;
}

.social {
  border-radius: 12px;
  padding: 20px;
  text-align: left;
  transition: transform 0.3s, box-shadow 0.3s;
}

.social:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.social a {
  text-decoration: none;
  color: white;
  display: block;
}

.social h2 {
  margin: 0 0 10px;
  font-size: 22px;
}

.social p {
  margin: 0;
  font-size: 16px;
}

.social.tg {
  background: linear-gradient(135deg, #0088cc, #00cfff);
}

.social.ds {
  background: linear-gradient(135deg, #5865f2, #404eed);
}

.social.yt {
  background: linear-gradient(135deg, #ff0000, #cc0000);
}

.social.tt {
  background: linear-gradient(135deg, #25f4ee, #ff0050);
}

.logo-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  text-align: center;
}

.logo-img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin-bottom: 5px;
}