* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
#obrazky {
  height: 92vh;
  width: 100vw;
  display: flex;
  align-items: center;
  gap: 0px;
}
#obrazky img {
  margin: 0 7.5vw; /* Add horizontal spacing between images */
}
#obrazky img {
  margin: 7vw;
}
#title {
  width: 60vw;
  height: auto;
  position: relative;
  right: 4vw;
}
#cifer {
  height: 50vh;
  width: auto;
  position: relative;
  right: 13vw;
}
.gaming-showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  font-family: "Segoe UI", sans-serif;
  padding: 0 7vw;
  width: 100vw;
  height: 75vh;
  margin: auto;
}

.gaming-showcase__text-block {
  width: 50vw;
}

.gaming-showcase__title {
  font-size: 7vh;
  font-weight: bold;
  margin-bottom: 0.2em;
  color: white;
}

.gaming-showcase__subtitle {
  font-size: 2em;
  color: #00e699;
  margin-top: 0;
  margin-bottom: 0.8em;
}

.gaming-showcase__description {
  font-size: 1em;
  color: #ccc;
  line-height: 1.5;
}

.gaming-showcase__logos {
  padding-top: 4vh;
  width: 100vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-left: 0;
}

.gaming-showcase__logo {
  object-fit: contain;
  filter: brightness(0) invert(1);
  width: 20vw;
  height: auto;
}

.gaming-showcase__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
#instagram {
  padding-top: 12vh;
  padding-bottom: 5vh;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
}

#instagram-header {
  height: 0px;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 0%,
    rgba(255, 255, 255, 1) 100%
  );
}
.button-box {
  height: 30vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: 5vw;
  width: 90%;
}
.socials-button {
  background-color: rgb(41, 37, 37);
  height: 20vh;
  width: 20vh;
  border-radius: 5vh;
  box-shadow: 8px 8px 32px -1px rgb(68, 62, 62);
  transition: transform 0.2s;
}
.socials-button:hover {
  transform: scale(1.2);
}
#socials {
  margin-top: -10vh;
  padding-bottom: 10vh;
  height: 35vh;
  overflow: hidden;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.001) 0%,
    rgba(0, 0, 0, 0.999) 100%
  );
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
}

.hexagon-wrapper {
  margin: auto;
  display: flex;
  text-align: initial;
  width: 200px;
  height: 200px;
  cursor: pointer;
  margin-bottom: 40vh;
}

.hexagon {
  position: relative;
  width: 46%;
  height: 80%;
  margin: auto;
  color: white;
  background: linear-gradient(-180deg, #fff, #08c1b1 80%);
  display: flex;
  align-content: center;
  justify-content: center;
  transition: 0.5s;
}

.hexagon i {
  z-index: 1;
  font-size: 50px;
  font-style: normal;
  margin: auto;
  color: transparent;
  background: linear-gradient(45deg, #08c1b1, #2c2c2c);
  background-clip: text;
  -webkit-background-clip: text;
  line-height: 1;
}

.hexagon:before,
.hexagon:after {
  position: absolute;
  content: "";
  background: inherit;
  height: 100%;
  width: 100%;
  border-radius: 0;
  transition: 0.5s;
  transform-origin: center;
}
.hexagon:before {
  transform: rotateZ(60deg);
}
.hexagon:after {
  transform: rotateZ(-60deg);
}
.hexagon:hover {
  border-radius: 50px;
  transition: 0.5s;
}
.hexagon:hover:before,
.hexagon:hover:after {
  border-radius: 50px;
  transition: 0.5s;
}
#socials a {
  text-decoration: none;
}
.lightwidget-widget {
  width: 60%;
}
@media (max-width: 600px) {
  #cifer {
    display: none;
  }
  #title {
    width: 90vw;
    margin: 0 auto;
    left: -1vw;
  }
  #obrazky {
    height: 40vh;
  }
  .gaming-showcase__text-block {
    width: 100vw;
  }
  .gaming-showcase__title {
    font-size: 8vw;
    text-align: center;
    font-weight: bold;
    margin-bottom: 0.2em;
    color: white;
  }
  .gaming-showcase__logos {
    padding-top: 4vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-left: 0;
  }
  .gaming-showcase__logo {
    object-fit: contain;
    filter: brightness(0) invert(1);
    width: 50vw;
    height: auto;
  }
  .lightwidget-widget {
    width: 95vw;
  }
  #socials {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    margin-top: -10vh;
    padding-bottom: 10vh;
    height: auto;
    width: 100%;
  }

  .hexagon-wrapper {
    width: 150px;
    height: 150px;
    margin: 0;
  }

  /* Container for first row - 3 icons */
  #socials a:nth-child(-n + 3) {
    flex: 0 0 30%;
    display: flex;
    justify-content: center;
  }

  /* Create a new row for bottom 2 icons */
  #socials a:nth-child(n + 4) {
    flex: 0 0 40%;
    display: flex;
    justify-content: center;
    margin-top: 20px; /* Space between rows */
  }
}
