
.cell {
  width: 24px;
  height: 24px;
}
.cell:not(.brand-color){
  background-image: url("../assets/eye_svg.svg");
  background-size: cover;
}

.search-cell {
  width: 24px;
  height: 24px;
  background-size: cover;
}

.eye {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid black;
  position: relative;
  overflow: hidden;
  background: white;
  margin-top: 1px;
  margin-left: 1px;
}

.search-eye {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 1px solid black;
  position: relative;
  overflow: hidden;
  background: white;
  margin-top: 1px;
  margin-left: 1px;
}
/* The pupil of the eye - it will move inside the eye */
.pupil {
  position: absolute;
  width: 6px;
  height: 6px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  transition: transform 0.1s ease;
}

.search-pupil {
  position: absolute;
  width: 25px;
  height: 25px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  transition: transform 0.1s ease;
}

.move-left {
  transform: translate(-80%, -50%);
}

.move-right {
  transform: translate(-20%, -50%);
}
/* Eyelid */

.eyelid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: #87408d;
  z-index: 2;
}

@keyframes growHeight {
  0% {
    height: 0%;
  }
  25% {
    height: 100%;
  }
  50% {
    height: 0%;
  }
  100% {
    height: 0%;
  }
}
.platinum {
  background: rgb(95, 217, 233) !important;
}
.diamond {
  background: rgb(168, 70, 70) !important;
}
.brand-color {
  background: linear-gradient(
    135deg,
    #e0b3ec,
    #87408d,
    #b85fc6,
    #e0b3ec,
    #87408d
  );
  background-size: 300% 300%;
  animation: shimmer 3s infinite;
  color: white;
  font-weight: bold;
  border-radius: 8px;
  box-shadow: 0 0 10px #87408d, 0 0 20px #b85fc6;
  transition: transform 0.3s ease;
}

.brand-color:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px #b85fc6, 0 0 30px #e0b3ec;
}

@keyframes shimmer {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.merged-square {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: black; /* Fallback background color */
  border: 2px solid #fff; /* White border */
  z-index: 1; /* Ensure the merged square is above other cells */
  overflow: hidden; /* Prevent video from overflowing */
  position: relative; /* For absolute positioning of the video */
}

/* Video inside the merged square */
.merged-square video {
  position: absolute; /* Position the video absolutely within the container */
  top: 0;
  left: 0;
  width: 100%; /* Make the video fill the container */
  height: 100%;
  object-fit: cover; /* can be on cover */
  object-position: center 10%;
}
/* Content inside the merged square */
.square-content {
  font-size: 24px; /* Larger text */
  color: white; /* Text color */
  text-align: center;
}
