#main_page {
  position: static !important;
}

header {
  z-index: 99 !important;
}
.match-game-section {
    background-color: #202227;
  }
  .match-game-section .match-game-area {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
  }
  .match-game-section .match-game-area .left-area {
    max-width: 18rem;
    width: 100%;
    position: sticky;
    top: 8.2rem;
  }
  .match-game-section .match-game-area .left-area .likeme-menu-button {
    height: 3rem;
    width: 8rem;
    border-radius: 0.4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.06);
    color: #FFFFFF;
    display: none;
    font-size: 1.1rem;
  }
  .match-game-section .match-game-area .left-area .likeme-menu-button:hover {
    background-color: rgba(255, 255, 255, 0.07);
  }
  .match-game-section .match-game-area .left-area .like-me-bg {
    display: none;
  }
  .match-game-section .match-game-area .left-area .like-me {
    padding: 1rem;
    border-radius: 0.3rem;
    background-color: rgba(255, 255, 255, 0.06);
    color: #FFFFFF;
  }
  .match-game-section .match-game-area .left-area .like-me .like-me-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
  }
  .match-game-section .match-game-area .left-area .like-me .like-me-title .close-likeme {
    display: none;
  }
  .match-game-section .match-game-area .left-area .like-me .like-me-title .name {
    font-size: 1.15rem;
    font-weight: 500;
  }
  .match-game-section .match-game-area .left-area .like-me .like-me-area li {
    border-radius: 0.3rem;
    margin-bottom: 0.3rem;
    position: relative;
  }
  .match-game-section .match-game-area .left-area .like-me .like-me-area li .badge {
    position: absolute;
    top: 50%;
    right: 0.5rem;
    transform: translateY(-50%);
    width: 1.5rem;
    height: 1.5rem;
    font-size: 0.65rem;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 2rem;
    z-index: 2;
    pointer-events: none;
  }
  .match-game-section .match-game-area .left-area .like-me .like-me-area li a{
    text-decoration: none;
  }
  .match-game-section .match-game-area .left-area .like-me .like-me-area li:last-child {
    margin-bottom: 0;
  }
  .match-game-section .match-game-area .left-area .like-me .like-me-area li button {
    color: #FFFFFF;
    padding: 0.8rem 0.5rem;
    font-size: 0.875rem;
    cursor: pointer;
    border-radius: 0.3rem;
    text-align: left;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    gap: 0.8rem;
  }
  .match-game-section .match-game-area .left-area .like-me .like-me-area li button:hover {
    background-color: rgba(255, 255, 255, 0.06);
  }
  .match-game-section .match-game-area .left-area .like-me .like-me-area li button.active {
    background-color: rgba(255, 255, 255, 0.06);
  }
  .match-game-section .match-game-area .left-area .like-me .like-me-area li button i {
    font-size: 1.1rem;
    height: 1.3rem;
    width: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .match-game-section .match-game-area .right-area {
    max-width: calc(100% - 18rem);
    width: 100%;
    margin-top: 1rem;
  }
  .match-game-section .match-game-area .right-area .game-user-list-area {
    margin-bottom: 2rem;
  }
  .match-game-section .match-game-area .right-area .game-user-list-inner {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(9rem, 1fr));
    grid-gap: 20px;
    gap: 20px 10px;
  }
  .match-game-section .match-game-area .right-area .game-user-list-inner.skeleton-loading {
    margin-top: 20px;
  }
  .match-game-section .match-game-area .right-area .game-user-list-inner.skeleton-loading .item {
    pointer-events: none;
    user-select: none;
    overflow: hidden;
    animation: blink 1s infinite alternate;
  }
  .match-game-section .match-game-area .right-area .game-user-list-inner.skeleton-loading .item::after {
    content: "";
    position: absolute;
    top: 0;
    left: -20%;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0) 100%);
    z-index: 10;
    animation: shine 3s infinite;
  }
  .match-game-section .match-game-area .right-area .game-user-list-inner.skeleton-loading .item .image {
    background: rgba(255, 255, 255, 0.2);
  }
  .match-game-section .match-game-area .right-area .game-user-list-inner.skeleton-loading .item .image::before {
    display: none;
  }
  .match-game-section .match-game-area .right-area .game-user-list-inner.skeleton-loading .item .content .name {
    height: 1rem;
    border-radius: 4px;
    width: 80%;
    background: rgba(255, 255, 255, 0.2);
  }
  .match-game-section .match-game-area .right-area .game-user-list-inner.skeleton-loading .item .content .location {
    height: 0.8rem;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.2);
  }
  .match-game-section .match-game-area .right-area .game-user-list-inner.skeleton-loading .item .chat-button {
    background: rgba(255, 255, 255, 0.2);
  }
  .match-game-section .match-game-area .right-area .game-user-list-inner .item {
    position: relative;
  }
  .match-game-section .match-game-area .right-area .game-user-list-inner .item:hover .image img {
    transform: scale(1.1);
  }
  .match-game-section .match-game-area .right-area .game-user-list-inner .item .chat-button {
    height: 2rem;
    font-size: 0.9rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    background-color: #CB3288;
    color: #FFFFFF;
    font-weight: 500;
    cursor: pointer;
    margin-top: 0.3rem;
    text-decoration: none;
  }
  .match-game-section .match-game-area .right-area .game-user-list-inner .item .chat-button:hover {
    background-color: #b72d7a;
  }
  .match-game-section .match-game-area .right-area .game-user-list-inner .item .remove-user {
    position: absolute;
    top: 0.2rem;
    right: 0.2rem;
    cursor: pointer;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    height: 1.5rem;
    width: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: rgba(20, 20, 20, 0.3);
    z-index: 2;
  }
  .match-game-section .match-game-area .right-area .game-user-list-inner .item .remove-user:hover {
    background-color: rgba(20, 20, 20, 0.4);
    color: #FFFFFF;
  }
  .match-game-section .match-game-area .right-area .game-user-list-inner .item .content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 0.5rem;
    z-index: 2;
    width: 100%;
    color: #FFFFFF;
  }
  .match-game-section .match-game-area .right-area .game-user-list-inner .item .content .name {
    font-size: 14px;
    width: 98%;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-bottom: 0.2rem;
    color: #FFFFFF;
    cursor: pointer;
  }
  .match-game-section .match-game-area .right-area .game-user-list-inner .item .content .name:hover {
    color: #38aefd;
    text-decoration: underline;
  }
  .match-game-section .match-game-area .right-area .game-user-list-inner .item .content .name:hover sup {
    color: #fff;
    text-decoration: none;
  }
  .match-game-section .match-game-area .right-area .game-user-list-inner .item .content .location {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.3rem;
  }
  .match-game-section .match-game-area .right-area .game-user-list-inner .item .content .location span {
    font-size: 0.7rem;
    width: 98%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .match-game-section .match-game-area .right-area .game-user-list-inner .item .content .location i {
    font-size: 0.6rem;
  }
  .match-game-section .match-game-area .right-area .game-user-list-inner .item .image {
    height: 100%;
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    height: 11rem;
  }
  .match-game-section .match-game-area .right-area .game-user-list-inner .item .image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 65%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
  }
  .match-game-section .match-game-area .right-area .game-user-list-inner .item .image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-fit: cover;
    transition: 0.5s cubic-bezier(0.15, 0.2, 0.1, 1.2);
  }
  .match-game-section .match-game-area .right-area .load-more button {
    padding: 0.5rem;
    width: 100%;
    margin: 1rem auto 0;
    display: block;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: #FFFFFF;
    background-color: rgba(203, 50, 136, 0.5);
    border-radius: 0.3rem;
    transition: 0.5s cubic-bezier(0.15, 0.2, 0.1, 1.2);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
  }
  .match-game-section .match-game-area .right-area .load-more button:hover {
    background-color: #d14594;
    box-shadow: 0 0 7px rgba(203, 50, 136, 0.8);
  }
  
  @keyframes blink {
    0% {
      opacity: 0.5;
    }
    100% {
      opacity: 0.8;
    }
  }
  @keyframes shine {
    0% {
      left: -50%;
    }
    100% {
      left: 150%;
    }
  }
  @media only screen and (max-width: 991px) {
    .match-game-section .match-game-area .left-area {
      max-width: 15rem;
    }
    .match-game-section .match-game-area .left-area .like-me {
      padding: 0.5rem;
    }
    .match-game-section .match-game-area .left-area .like-me .like-me-title {
      margin-bottom: 1rem;
      padding: 0.5rem;
      padding-bottom: 0;
    }
    .match-game-section .match-game-area .left-area .like-me .like-me-title .name {
      font-size: 1.2rem;
    }
    .match-game-section .match-game-area .left-area .switch-buttons .switch-buttons-area .switch-button button {
      font-size: 0.7rem;
    }
    .match-game-section .match-game-area .left-area .game-user-list-inner {
      grid-template-columns: repeat(2, 1fr);
    }
    .match-game-section .match-game-area .right-area {
      max-width: calc(100% - 15rem);
    }
    .match-game-section .match-game-area .right-area .match-games-area .match-games-list {
      grid-template-columns: 1fr 1fr;
    }
    .match-game-section .match-game-area .right-area .match-games-area .match-games-list .match-games-item .match-games-details {
      gap: 0.6rem;
    }
    .match-game-section .match-game-area .right-area .match-games-area .match-games-list .match-games-item .match-games-image {
      height: 12rem;
    }
    .match-game-section .match-game-area .right-area .match-games-area .match-games-list .match-games-item .match-games-info {
      width: 100%;
    }
    .match-game-section .match-game-area .right-area .match-games-area .match-games-list .match-games-item .match-games-info .name {
      font-size: 0.9rem;
      margin-bottom: 0.3rem;
    }
    .match-game-section .match-game-area .right-area .match-games-area .match-games-list .match-games-item .match-games-info .match-game-back {
      font-size: 0.7rem;
    }
    .match-game-section .match-game-area .right-area .match-games-area .match-games-list .match-games-item .match-games-info .date {
      font-size: 0.65rem;
    }
    .match-game-section .match-game-area .right-area .match-games-area .match-games-list .match-games-item .remove-button {
      padding: 0.5rem 1rem;
      font-size: 0.7rem;
    }
  }
  @media only screen and (max-width: 850px) {
    .match-game-section {
      padding-bottom: 5rem;
    }
    .match-game-section .match-game-area {
      flex-direction: column;
      gap: 0.5rem;
    }
    .match-game-section .match-game-area .left-area {
      position: relative;
      top: 0;
      min-width: 100%;
      z-index: 10;
      padding: 1rem 0 0;
    }
    .match-game-section .match-game-area .left-area .likeme-menu-button {
      display: flex;
    }
    .match-game-section .match-game-area .left-area .like-me {
      position: absolute;
      left: 0;
      top: 5rem;
      min-width: 92%;
      max-width: 92%;
      width: 92%;
      background-color: #2d2f34;
      z-index: 10;
      opacity: 0;
      pointer-events: none;
    }
    .match-game-section .match-game-area .left-area .like-me.active {
      opacity: 1;
      pointer-events: all;
    }
    .match-game-section .match-game-area .left-area .switch-buttons {
      margin-bottom: 1rem;
    }
    .match-game-section .match-game-area .left-area .switch-buttons .switch-buttons-area .switch-button button {
      font-size: 0.8rem;
    }
    .match-game-section .match-game-area .left-area .game-user-list-area {
      max-height: calc(100svh - 13rem);
    }
    .match-game-section .match-game-area .left-area .game-user-list-inner .item {
      height: 12rem;
    }
    .match-game-section .match-game-area .right-area {
      max-width: 100%;
    }
    .matched-popup .matched-popup-container .matched-popup-content .matched-popup-title {
      font-size: 2.2rem;
    }
    .matched-popup .matched-popup-container .matched-popup-content .matched-images {
      transform: scale(1.2);
    }
  }
  @media only screen and (max-width: 575px) {
    header nav {
      display: none !important;
    }
    .match-game-section .match-game-area {
      padding: 0;
    }
    .match-game-section .match-game-area .left-area {
      padding: 0.5rem 0 0;
    }
    .match-game-section .match-game-area .left-area .likeme-menu-button {
      font-size: 0.9rem;
      height: 2.7rem;
      width: 6.3rem;
    }
    .match-game-section .match-game-area .left-area .like-me {
      top: 3.7rem;
    }
    .match-game-section .match-game-area .right-area .match-games-area {
      padding: 0.5rem 0 1.5rem;
      padding-top: 0;
    }
    .match-game-section .match-game-area .right-area .match-games-area .match-games-title {
      font-size: 1rem;
    }
    .match-game-section .match-game-area .right-area .match-games-area .match-games-list {
      height: calc(100svh - 8.3rem);
      justify-content: flex-end;
      padding-bottom: 1rem;
      padding-top: 0;
    }
    .match-game-section .match-game-area .right-area .match-games-area .match-games-list .game-card-container {
      width: 270px;
      height: 380px;
    }
    .matched-popup .matched-popup-container .matched-popup-content {
      padding-top: 4rem;
    }
    .matched-popup .matched-popup-container .matched-popup-content .matched-popup-title {
      font-size: 1.7rem;
    }
    .matched-popup .matched-popup-container .matched-popup-content .matched-images {
      transform: scale(1);
      margin: 0;
    }
    .matched-popup .matched-popup-container .matched-popup-content .content {
      width: 100%;
    }
    .matched-popup .matched-popup-container .matched-popup-content .button-group {
      flex-direction: column;
      width: 100%;
    }
    .matched-popup .matched-popup-container .matched-popup-content .button-group button {
      width: 100%;
    }
    .matched-popup .matched-popup-container .matched-popup-content .button-group button:nth-child(1) {
      order: 2;
    }
    .matched-popup .matched-popup-container .matched-popup-content .button-group button:nth-child(2) {
      order: 1;
    }
  }
  @media (max-width: 340px) {
    .match-game-section .wrapper {
      max-width: 100%;
    }
  }/*# sourceMappingURL=styles.css.map */