body, p{
    margin: 0;
}
body{
    height: 100vh;
    width: 100%;
    overflow-y: scroll;
    /* background: url("abstract-connecting-dots-lines-with-geometric-background_41981-1508.webp"); */
}
body.indexBody{
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #121212;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

body::-webkit-scrollbar{
    opacity: 0;
    width: .1px;
}
.websiteView{
    width: 100%;
    max-width: 1300px;
    padding: 0 2rem;
    margin: auto !important;
    min-height: 100%;
    align-items: center;
}
.indexCardPhoto{
    max-height: 10rem;
}
.cardContainer{
    display: flex;
    height: fit-content;
}
.gameCard{
    width: 100%;
    border-radius: .5rem;
    padding: 2rem;
    box-shadow: 0 0px 20px #e91e625b;
    background-color: rgba(255, 255, 255, 0.815);
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: space-between;
    min-height: 15rem;
}
.gameText{
    font-size: 1.5rem;
    margin: auto 0;
    opacity: 1;
    /* transition: .1s all ease; */
}
.loadSmsText{
    width: fit-content;
    min-width: 10rem;
    font-size: 1rem;
    padding: .5rem 1rem;
    background: linear-gradient(188deg, rgb(104, 182, 84), rgb(109, 122, 218));
    color: white;
    font-weight: 500;
    border-radius: .5rem;
    border: 0px;
    box-shadow: 0 4px 6px rgb(206, 206, 206);
}
.gameButton{
    width: fit-content;
    min-width: 10rem;
    font-size: 1rem;
    padding: .5rem 1rem;
    background: linear-gradient(188deg, rgb(104, 182, 84), rgb(109, 122, 218));
    color: white;
    font-weight: 500;
    border-radius: .5rem;
    border: 0px;
    box-shadow: 0 4px 6px rgb(99, 99, 99);
    text-decoration: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
}
.gameButton2{ 
    width: 100%;
      padding: 1rem 3rem;
      font-size: 1.1rem;
      border: none;
      border-radius: 10px;
      background-color: #ff4081;
      color: white;
      cursor: pointer;
      transition: background-color 0.2s ease;
      text-decoration: none;
      width: fit-content;
}
.gameButton:hover{
    background-color: #e91e63;
}
.gameButton2:hover{
    color: white;
    transition: all .1s ease;
    box-shadow: 0 0 0 0 #fff, 0 0 0 3px #1de9b6;
}
.gameHeader{
    width: 100%;
    margin: .5rem 0 .5rem 0;
    text-align: center;
    font-size: 2rem;
}
.gameHeader.white{
    color: white;
}
.gameHeader.pink{
    color: #ff4081;
}
.gameHeader2{
    width: 100%;
    margin: 0 0 0 0;
    text-align: center;
    font-size: 1.3rem;
}
.gameHeader2.white{
    color: white;
}
.gameHeader2.pink{
    color: #ff4081;
}
.gameHeader3{
    width: 100%;
    margin: 0 0 0 0;
    text-align: center;
    font-size: .9rem;
    margin-top: .5rem;
}
#playerListUl{}
#playerListUl li{
    width: 100%;
    margin: 0 0 0 0;
    text-align: center;
    font-size: 1.2rem;
    margin-top: .5rem;
    /* color: #ff4081; */
    font-weight: 600;
}
.gameHeader3.white{
    color: white;
}
.gameHeader3.pink{
    color: #ff4081;
}
.cardTitle{
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}
.langSelectorUl{
    list-style-type: none;
    padding-left: 0;
}
.langSelectorUl li{
    float: left;
    margin: 0rem 1rem;
    cursor: pointer;
}
/* Tab buttons - hidden by default on large screens */
.tab-buttons {
    display: none;
    margin-bottom: 10px;
    width: 100%;
    justify-content: space-between;
  }

  .tab-button {
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    width: calc(50% - 1rem);
    background-color: #ccc;
    cursor: pointer;
    margin-right: 5px;
    transition: background-color 0.3s ease;
  }

  .tab-button.active {
    background-color: #ff4081;
    color: white;
  }

  .tab-content {
    display: block;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
    margin-bottom: 10px;
  }

  /* MEDIA QUERY: Activate tab mode on screens ≤ 1024px (tablet & mobile) */
  @media (max-width: 1024px) {
    :root{
        font-size: 14px;
    }
    .websiteView{
        flex-flow: column !important;
        justify-content: flex-start !important;
    }
    .gameCard{
        padding: 1rem;
    }
    .tab-buttons {
      display: flex;
    }

    .cardContainer {
      display: none;
    }

    .cardContainer.active {
      display: flex;
    }
  }