/* /Components/Game/CategorySelector.razor.rz.scp.css */
.category-selector[b-zhdue3e7mr] {
  max-width: 600px;
  margin: 0 auto;
  padding: 1rem;
  text-align: center;
}

.category-selector h2[b-zhdue3e7mr] {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.category-selector p[b-zhdue3e7mr] {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.category-grid[b-zhdue3e7mr] {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  max-height: 300px;
  overflow-y: auto;
}

/* Make the random button span full width of top row */
.category-button.random-button[b-zhdue3e7mr] {
  grid-column: 1 / -1;
  min-height: 100px;
  background: white;
  color: #333;
}

.category-button.random-button:hover[b-zhdue3e7mr] {
  background: #fdf5f2;
  border-color: #8b3a15;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(189, 76, 27, 0.2);
}

.category-button.random-button.selected[b-zhdue3e7mr] {
  background: #fdf5f2;
  border-color: #bd4c1b;
  box-shadow: 0 4px 12px rgba(189, 76, 27, 0.3);
}

.category-button.random-button .category-emoji[b-zhdue3e7mr] {
  font-size: 2.5rem;
}

.category-button.random-button .category-name[b-zhdue3e7mr] {
  font-size: 1.2rem;
  font-weight: bold;
  color: #bd4c1b;
}

.category-button.random-button .category-description[b-zhdue3e7mr] {
  font-size: 0.9rem;
  color: #666;
}

.category-button[b-zhdue3e7mr] {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.75rem 0.5rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  background: white;
  cursor: pointer;
  transition: all 0.2s ease;
  min-height: 80px;
  text-align: center;
}

.category-button:hover[b-zhdue3e7mr] {
  border-color: #bd4c1b;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(189, 76, 27, 0.15);
}

.category-button.selected[b-zhdue3e7mr] {
  border-color: #bd4c1b;
  background: #fdf5f2;
  box-shadow: 0 2px 8px rgba(189, 76, 27, 0.2);
}

.category-emoji[b-zhdue3e7mr] {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
  display: block;
}

.category-name[b-zhdue3e7mr] {
  font-size: 0.85rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.1rem;
  display: block;
}

.category-description[b-zhdue3e7mr] {
  font-size: 0.7rem;
  color: #666;
  display: block;
  line-height: 1.2;
}

.start-game-button[b-zhdue3e7mr] {
  background: linear-gradient(135deg, #bd4c1b, #8b3a15);
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 250px;
}

.start-game-button:hover[b-zhdue3e7mr] {
  background: linear-gradient(135deg, #8b3a15, #6b2d10);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(189, 76, 27, 0.3);
}

.start-game-button:active[b-zhdue3e7mr] {
  transform: translateY(0);
}

/* Responsive design */
@media (max-width: 768px) {
  .category-grid[b-zhdue3e7mr] {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.4rem;
  }

  .category-button[b-zhdue3e7mr] {
    padding: 0.5rem 0.25rem;
    min-height: 70px;
  }

  .category-button.random-button[b-zhdue3e7mr] {
    grid-column: 1 / -1;
    min-height: 90px;
  }

  .category-button.random-button .category-emoji[b-zhdue3e7mr] {
    font-size: 2rem;
  }

  .category-button.random-button .category-name[b-zhdue3e7mr] {
    font-size: 1rem;
  }

  .category-button.random-button .category-description[b-zhdue3e7mr] {
    font-size: 0.8rem;
  }

  .category-emoji[b-zhdue3e7mr] {
    font-size: 1.25rem;
  }

  .category-name[b-zhdue3e7mr] {
    font-size: 0.75rem;
  }

  .category-description[b-zhdue3e7mr] {
    font-size: 0.65rem;
  }

  .start-game-button[b-zhdue3e7mr] {
    min-width: 200px;
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .category-selector[b-zhdue3e7mr] {
    padding: 0.75rem;
  }

  .category-grid[b-zhdue3e7mr] {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.3rem;
  }

  .category-button[b-zhdue3e7mr] {
    min-height: 60px;
    padding: 0.4rem 0.2rem;
  }

  .category-button.random-button[b-zhdue3e7mr] {
    grid-column: 1 / -1;
    min-height: 80px;
  }

  .category-button.random-button .category-emoji[b-zhdue3e7mr] {
    font-size: 1.8rem;
  }

  .category-button.random-button .category-name[b-zhdue3e7mr] {
    font-size: 0.9rem;
  }

  .category-button.random-button .category-description[b-zhdue3e7mr] {
    font-size: 0.75rem;
  }

  .category-emoji[b-zhdue3e7mr] {
    font-size: 1rem;
  }

  .category-name[b-zhdue3e7mr] {
    font-size: 0.7rem;
  }

  .category-description[b-zhdue3e7mr] {
    font-size: 0.6rem;
  }

  .start-game-button[b-zhdue3e7mr] {
    width: 100%;
    min-width: auto;
    font-size: 0.85rem;
  }
}
/* /Components/Game/GameContainer.razor.rz.scp.css */
.gameWrapper[b-vnbxmy8btw] {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.gameHeader[b-vnbxmy8btw] {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.gameTitle[b-vnbxmy8btw] {
  font-size: 2rem;
  color: #1e3620;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
  margin: 0;
}

.scoreDisplay[b-vnbxmy8btw] {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: rgba(255,255,255,0.9);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: bold;
  color: #1e3620;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}

.scoreValue[b-vnbxmy8btw] { transition: transform 0.2s ease; }
.scoreChanged[b-vnbxmy8btw] { animation: scorePop-b-vnbxmy8btw 0.5s ease; }

@keyframes scorePop-b-vnbxmy8btw {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.scoreLabel[b-vnbxmy8btw] { margin-right: 0.25rem; opacity: 0.85; }

.clueCounter[b-vnbxmy8btw] { font-size: 0.9rem; opacity: 0.9; }

.feedback[b-vnbxmy8btw] {
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-weight: 600;
}

.feedback.success[b-vnbxmy8btw] { background: #e8f5e9; color: #2e7d32; border: 1px solid #c8e6c9; }
.feedback.error[b-vnbxmy8btw] { background: #ffebee; color: #c62828; border: 1px solid #ffcdd2; }
.feedback.info[b-vnbxmy8btw] { background: #e3f2fd; color: #1565c0; border: 1px solid #bbdefb; }

.gameMainContent[b-vnbxmy8btw] { width: 100%; flex: 1; }

.gameContent[b-vnbxmy8btw] { width: 100%; }

.gameStart[b-vnbxmy8btw], .gameCompleted[b-vnbxmy8btw] {
  width: 100%;
  text-align: center;
  padding: 1rem;
}

.startGameButton[b-vnbxmy8btw], .newGameButton[b-vnbxmy8btw], .changeCategoryButton[b-vnbxmy8btw], .infoButton[b-vnbxmy8btw] {
  border: none;
  border-radius: 10px;
  padding: 0.8rem 1rem;
  font-weight: 700;
  cursor: pointer;
}

.startGameButton[b-vnbxmy8btw], .newGameButton[b-vnbxmy8btw] {
  background: #1e3620;
  color: white;
}

.changeCategoryButton[b-vnbxmy8btw] {
  background: #6c757d;
  color: white;
}

.infoButtonContainer[b-vnbxmy8btw] {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.infoButton[b-vnbxmy8btw] { background: #cfe9ee; color: #333; }

.gameEndButtons[b-vnbxmy8btw] {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.scoreSummary[b-vnbxmy8btw] {
  background: rgba(255,255,255,0.85);
  border-radius: 12px;
  padding: 1rem;
  margin: 1rem 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}

.finalScore span[b-vnbxmy8btw] { font-size: 1.6rem; font-weight: 900; color: #1e3620; }

.encouragement[b-vnbxmy8btw] { font-weight: 700; }
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.app-root[b-phb7vaoc8a] {
  min-height: 100vh;
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-z1eu371ahj] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked[b-z1eu371ahj] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-z1eu371ahj] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-z1eu371ahj] {
    font-size: 1.1rem;
}

.bi[b-z1eu371ahj] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-z1eu371ahj] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-z1eu371ahj] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-z1eu371ahj] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-z1eu371ahj] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-z1eu371ahj] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-z1eu371ahj] {
        padding-bottom: 1rem;
    }

    .nav-item[b-z1eu371ahj]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

.nav-item[b-z1eu371ahj]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-z1eu371ahj]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-z1eu371ahj] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-z1eu371ahj] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-z1eu371ahj] {
        display: none;
    }

    .nav-scrollable[b-z1eu371ahj] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-r239b7mmmh],
.components-reconnect-repeated-attempt-visible[b-r239b7mmmh],
.components-reconnect-failed-visible[b-r239b7mmmh],
.components-pause-visible[b-r239b7mmmh],
.components-resume-failed-visible[b-r239b7mmmh],
.components-rejoining-animation[b-r239b7mmmh] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-r239b7mmmh],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-r239b7mmmh],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-r239b7mmmh],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-r239b7mmmh],
#components-reconnect-modal.components-reconnect-retrying[b-r239b7mmmh],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-r239b7mmmh],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-r239b7mmmh],
#components-reconnect-modal.components-reconnect-failed[b-r239b7mmmh],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-r239b7mmmh] {
    display: block;
}


#components-reconnect-modal[b-r239b7mmmh] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-r239b7mmmh 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-r239b7mmmh 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-r239b7mmmh 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-r239b7mmmh]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-r239b7mmmh 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-r239b7mmmh {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-r239b7mmmh {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-r239b7mmmh {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-r239b7mmmh] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-r239b7mmmh] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-r239b7mmmh] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-r239b7mmmh] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-r239b7mmmh] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-r239b7mmmh] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-r239b7mmmh] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-r239b7mmmh 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-r239b7mmmh] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-r239b7mmmh {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/ResponsiveContainer.razor.rz.scp.css */
.responsive-container[b-ruj2b8230t] {
  background: var(--card-bg);
  color: var(--card-text);
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  padding: 24px;
  margin: 32px auto;
  width: 90%;
  max-width: 900px;
  box-sizing: border-box;
  transition: all 300ms ease;
}

@media (min-width: 768px) {
  .responsive-container[b-ruj2b8230t] { width: 70%; }
}

@media (min-width: 1024px) {
  .responsive-container[b-ruj2b8230t] { width: 50%; }
}

.responsive-container:focus-within[b-ruj2b8230t] {
  outline: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2), 0 0 0 3px rgba(59,130,246,0.7);
}
/* /Shared/MainLayout.razor.rz.scp.css */
.app-root[b-72sor4ycft] {
  min-height: 100vh;
}
