/* General reset to avoid unwanted margins/paddings */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.4;
}

.container {
  display: flex;
  flex-direction: column;
  font-weight: 400;
  justify-content: center;
  width: 100%;
  min-height: 100px;
}

.wrapper {
  background-color: #0e0536;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding: 20px 50px;
}

@media (max-width: 991px) {
  .wrapper {
    padding: 20px;
  }
}

.inner-container {
  display: flex;
  width: 100%;
  max-width: 1541px;
  gap: 20px;
  justify-content: space-between;
  margin: 0;
  padding: 0;
}

@media (max-width: 991px) {
  .inner-container {
    flex-direction: column;
    align-items: center;
  }
}

.left-bar {
  align-self: start;
  display: flex;
  margin-top: 7px;
  gap: 20px;
  padding: 20px;
}

@media (max-width: 991px) {
  .left-bar {
    flex-direction: column;
    align-items: center;
    margin: 0 auto; /* Centering the left-bar horizontally */
  }
}

.blue-bar {
  border-radius: 10px;
  background-color: #7b00dc;
  align-self: start;
  width: 6px;
  height: 132px;
}
@media (max-width: 991px) {
  .blue-bar {
    flex-direction: column;
    align-items: center;
    margin: 0 auto; /* Centering the left-bar horizontally */
  }
}
.info-section {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  flex-basis: 0;
  width: fit-content;
  white-space: nowrap;
}

@media (max-width: 991px) {
  .info-section {
    align-items: center;
  }
}

.title {
  color: #ffedd8;
  text-transform: uppercase;
  font: 22px Kanit, sans-serif;
}

@media (max-width: 991px) {
  .title {
    text-align: center;
  }
}

.section {
  color: #ffedd8;
  text-transform: uppercase;
  margin-top: 12px;
  font: 22px Kanit, sans-serif;
}

@media (max-width: 991px) {
  .section {
    text-align: center;
  }
}

.request-demo {
  display: flex;
  margin-top: 9px;
  gap: 20px;
}

@media (max-width: 991px) {
  .request-demo {
    flex-direction: column;
    align-items: center;
  }
}

.demo-text {
  color: #6deeff;
  text-transform: uppercase;
  flex-grow: 1;
  flex-basis: auto;
  margin: auto 0;
  font: 22px Kanit, sans-serif;
}

.logo {
  color: #999cd8;
  text-align: center;
  justify-content: center;
  padding: 2px 0;
  font: 50px Kanit, sans-serif;
}

@media (max-width: 991px) {
  .logo {
    font-size: 40px;
  }
}

.blog {
  color: #ffedd8;
  text-transform: uppercase;
  margin-top: 7px;
  font: 22px Kanit, sans-serif;
}

@media (max-width: 991px) {
  .blog {
    text-align: center;
  }
}

.main-img {
  aspect-ratio: 0.9;
  object-fit: auto;
  object-position: center;
  width: 144px;
  max-width: 100%;
  padding: 20px;
}

.meta {
  font-family: Zen Dots, -apple-system, Roboto, Helvetica, sans-serif;
  color: rgba(113, 116, 166, 1);
}

.game {
  font-family: Comfortaa, -apple-system, Roboto, Helvetica, sans-serif;
  color: rgba(153, 156, 216, 1);
}

.footer {
  background: #0e0536;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-content {
  max-width: 1541px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.footer-logo {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.footer-logo img {
  width: 50%;
  height: 50%;
}

@media (max-width: 600px) {
  .footer-logo img {
    width: 80%;
    height: 80%;
  }
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: rgba(69, 67, 117);
  font: bold 16px Kanit, sans-serif;
  text-decoration: none;
  text-align: center;
}

.footer-icons {
  display: flex;
  gap: 10px;
}

.footer-icons img {
  width: 24px;
  height: 24px;
}

@media (max-width: 768px) {
  .footer-icons img {
    width: 20px;
    height: 20px;
  }
}
