#game-container {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

h1 {
  color: white;
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

#tic-tac-toe {
  display: grid;
  grid-template-columns: repeat(3, 100px);
  gap: 10px;
}

.cell {
  width: 100px;
  height: 100px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.5em;
  cursor: pointer;
  transition: all 0.3s ease;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.cell:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.cell.x {
  color: #ffd700;
}

.cell.o {
  color: #00ffff;
}

#reset {
  display: block;
  margin: 20px auto 0;
  padding: 10px 20px;
  font-size: 1em;
  color: white;
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

#reset:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

#status {
  text-align: center;
  color: white;
  font-size: 1.2em;
  margin-top: 20px;
  height: 1.5em;
}

.report-box {
  border-radius: 10px;
  height: 78vh;
  flex: 1;
  z-index: 1;
  margin-top: 20px;
}

.report-icons__container,
.report-icons,
.page-icons,
.page-icons__container{
  height: 135px;
  transition: all .3s ease-out;
}

.icons-container {
  right: -3.2rem;
}

.report-icon {
  padding: 5px 10px;
  border: 1px solid #777;
  border-radius: 6px;
  background-color: rgba(0, 0, 0, 0.3);
  font-size: 30px;
  backdrop-filter: blur(5px);
  color: #777;
  width: 43px;
  height: 43px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 5px 10px rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  transition: all .2s;
}

.report-icon__active {
  box-shadow: 0 5px 10px rgba(255, 255, 255, 0.4);
  color: #fff;
  border: 1px solid #f1f1f1;
}

.report-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 5px;
  height: 5px;
  background-color: rgba(255, 255, 255, 0.4);
  z-index: -1;
  transition: all .2s;
}

.report-icon:hover {
  box-shadow: 0 5px 10px rgba(255, 255, 255, 0.4);
  color: #fff;
  border: 1px solid #f1f1f1;
}

.report-icon:hover::after {
  transform: translate(-50%, -50%) scale(10);
}

.report-icon__tooltip {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(45deg) scale(0);
  background-color: #333333;
  color: #ffffff;
  font-size: 10px;
  border-radius: 5px;
  border: 1px solid #ffffff;
  padding: 5px 10px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.report-icon__parent:hover .report-icon__tooltip {
  right: 120%;
  transform: translateY(-50%) rotate(0) scale(1);
  opacity: 1;
}

.report-icon__tooltip::after {
  content: '';
  width: 8px;
  height: 8px;
  position: absolute;
  right: -5px;
  border-top: 1px solid #ffffff;
  transform: translateY(-50%) rotate(45deg);
  background: #333333;
  top: 50%;
  border-right: 1px solid #ffffff;
}

.report-filter_box{
  transform: translateX(200%);
  transition: all .2s ease;
}

.report-filter_box-backDrop {
  transform: translateX(200%) scale(10);
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(3px);
  transition: all .2s ease;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  width: 100%;
  z-index: 1000;
}

.report-filter_box-open {
  transform: translate(-50%, -50%);
  z-index: 1100;
}

.report-box__header {
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(3px);
}

.report-box__body {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(3px);
}

@media only screen and (max-width: 1600px){
  .report-box {
    height: 72vh;
  }
}


@media only screen and (max-width: 1024px) {
  .report-box {
    display: none ;
  }
}

@media only screen and (max-width: 768px) {
  .report-icons {
    display: none;
  }
}

@keyframes win-animation {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.win {
  animation: win-animation 0.5s ease-in-out;
}