.tilting-game-mask {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    max-width: 100%;
    background: linear-gradient(135deg, #87ceeb 0%, #4169e1 100%);
    overflow: hidden;
    border-radius: 18px 18px 0 0;
    box-shadow: 0 4px 12px rgba(65, 105, 225, 0.2);
    position: relative;
    }
  
    .tilting-game-mask img {
    width: clamp(100px, 15vw, 175px);
    height: auto;
    margin-right: 2.75vw;
    margin-left: 1.75vw;
    }
  
    .tilting-game-mask > .button-content {
    flex: 1;
    font-family: "Fuzzy Bubbles", cursive;
    font-weight: 700;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.3em;
    z-index: 10;
    position: relative;
    }
  
.tilting-game-mask > .button-content h2,
.tilting-game-mask > .button-content h3,
.tilting-game-mask > .button-content a {
  margin: 0;
  padding: 0;
  line-height: 1.1;
}

.tilting-game-mask > .button-content h2{
  font-size: clamp(4px, 6vw, 95px);
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.tilting-game-mask > .button-content h3{
  font-size: clamp(2px, 2.5vw, 35px);
  color: #ffffff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  font-weight: 400;
  opacity: 0.9;
}

.tilting-game-mask > .button-content a{
  color: #ffffff;
  font-family: "Fuzzy Bubbles", cursive;
  font-weight: 400;
  font-size: clamp(2px, 2.5vw, 35px);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  transition: all 0.2s ease;
  opacity: 0.8;
}

.tilting-game-mask > .button-content a:hover{
  opacity: 1;
  transform: scale(1.02);
}

    /* Content's Info */
  .tilting-game > .content{
    background: linear-gradient(135deg, #a8c8f5 0%, #6b9eff 100%);
    border-radius: 0 0 18px 18px;
    }

  .tilting-game > .content.show{
    padding: 2.5% 2.5% 2.5% 2.5%;
    }
  
    .tilting-game > .content p{
    color: #ffffff;
    font-family: "Rowdies", sans-serif;
    font-weight: 400;
    font-size: 20px;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    text-align: justify;
    line-height: 1.5;
    margin-bottom: 1em;
    }
  
    .tilting-game > .content a{
    color: #ffa733;
    font-family: "Rowdies", sans-serif;
    font-weight: 600;
    font-size: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 12px;
    border-radius: 8px;
    transition: all 0.2s ease;
    display: inline-block;
    }
    
    .tilting-game > .content a:hover{
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
    }
  
    .tilting-game > .content > .flex-container {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    }

    .tilting-game > .content > .flex-container > div {
    flex: 1;
    }

    .tilting-game > .content > .flex-container > div img {
    max-width: 100%;
    height: auto;
    }

    .tilting-game > .content > .flex-container > div:last-child {
    flex: 2;
    text-align: left;
    }

    /* Responsive layout */
    @media (max-width: 768px) {
    .tilting-game > .content > .flex-container {
        flex-direction: column;
        align-items: center;
    }

    .tilting-game > .content > .flex-container > div {
        width: 100%;
        text-align: center;
    }
    }
