body {
  padding: 0;
  margin: 0
}

#unity-container {
  position: absolute
}

#unity-container.unity-desktop {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%)
}

#unity-container.unity-mobile {
  width: 100%;
  height: 100%
}

#unity-canvas {
  background: #231F20
}

.unity-mobile #unity-canvas {
  width: 100%;
  height: 100%
}

#unity-loading-bar {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: none
}

#unity-logo {
  width: 154px;
  height: 130px;
  background: url('unity-logo-dark.png') no-repeat center
}

#unity-progress-bar-empty {
  width: 141px;
  height: 18px;
  margin-top: 10px;
  margin-left: 6.5px;
  background: url('progress-bar-empty-dark.png') no-repeat center
}

#unity-progress-bar-full {
  width: 0%;
  height: 18px;
  margin-top: 10px;
  background: url('progress-bar-full-dark.png') no-repeat center
}

#unity-footer {
  position: relative
}

.unity-mobile #unity-footer {
  display: none
}

#unity-webgl-logo {
  float: left;
  width: 204px;
  height: 38px;
  background: url('webgl-logo.png') no-repeat center
}

#unity-build-title {
  float: right;
  margin-right: 10px;
  line-height: 38px;
  font-family: arial;
  font-size: 18px
}

#unity-fullscreen-button {
  float: right;
  width: 38px;
  height: 38px;
  background: url('fullscreen-button.png') no-repeat center
}

#unity-warning {
  position: absolute;
  left: 50%;
  top: 5%;
  transform: translate(-50%);
  background: white;
  padding: 10px;
  display: none
}


body {
  background-image: url('../background.jpeg');
  /* Background image */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

h1 {
  font-size: 24px;
  font-weight: bold;
  color: #f77406;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 20px;
}

.logo-container {
  position: absolute;
  top: 12px;
  left: 20px;
  display: flex;
  align-items: center;
}

.logo-container img {
  height: 50px;
  margin-right: 10px;
  border: 2px solid #f77406;
  border-radius: 10px;
}

.logo-container span {
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
  /* Adjust text color */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  /* Add shadow for better visibility */
}

/* Navigation bar styling */
.nav-bar {
  position: absolute;
  top: 28px;
  right: 20px;
}

.nav-bar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}

.nav-bar li {
  display: inline;
}

.nav-bar a {
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  color: #ffffff;
  padding: 8px 10px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.nav-bar a:hover,
.nav-bar a.active {
  background-color: #f77406;
}

.bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #101e29;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
}

.bottom-left {
  display: flex;
  align-items: center;
}

.bottom-logo {
  height: 30px;
  margin-right: 10px;
}

.bottom-text {
  font-size: 16px;
  font-weight: bold;
  color: #ffffff;
}

.play-button {
  background-color: #f77406;
  color: white;
  font-size: 20px;
  font-weight: bold;
  padding: 10px 36px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.play-button:hover {
  background-color: #d65a04;
}

.bottom-right {
  font-size: 14px;
  color: #ffffff;
  padding-right: 2rem;
}

.centered-div {
  position: absolute;
  overflow: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 1rem;
  border: 1px solid #f77406;
  border-radius: 20px;
  background-color: #101e29;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  max-height: 68vh;
  padding-top: 0;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 20px;
}

.product-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.product-image {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 10px;
  background-color: white;
}

.product-details {
  display: flex;
  flex-direction: column;
}

.product-title {
  font-size: 18px;
  font-weight: bold;
  color: #f77406;
  margin: 0;
}

.product-description {
  font-size: 14px;
  color: white;
  margin: 5px 0 0;
}

a {
  text-decoration: none;
  color: #f77406;
}

strong {
  color: #f77406;
}

.language-switcher {
  display: inline-block;
  margin-left: 10px;
}

#language-select {
  font-size: 14px;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #ffffff;
  color: #333;
  cursor: pointer;
}

/* Spinner animation */
#loading-popup div {
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.hidden {
  visibility: hidden;
}

.image-container {
  display: flex;
  justify-content: center;
  /* Centers the images horizontally */
  align-items: center;
  /* Aligns the images vertically */
  gap: 20px;
  /* Adds spacing between the images */
}