/* Fonte Pixel */
@font-face {
    font-family: 'Pixeled';
    src: url('/fonts/Pixeled.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }
  
  .pixel-font {
    font-family: 'Pixeled', monospace;
    letter-spacing: 1px;
  }
  
  /* Cards dos Jogos */
  .game-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  }
  
  .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease;
  }
  
  .game-card:hover .card-overlay {
    opacity: 1;
  }
  
  .card-body {
    text-align: center;
    color: white;
    padding: 15px;
    width: 100%;
  }
  
  .card-body h6 {
    font-size: 1rem;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
  }
  
  .card-body .btn {
    padding: 8px 16px;
    font-size: 0.9rem;
    min-width: 100px;
  }
  
  /* Componente de Ganhadores Recentes */
  .winners-container {
    /* background-color: #11131B; */
    border-left: 2px solid var(--bs-primary);
    overflow: hidden;
    min-width: 280px;
    height: 500px;
    border-radius: 6px;
    position: relative;
  }
  
  .winners-scroll {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    overflow-y: auto;
    padding: 0 10px;
    scrollbar-width: thin;
    scrollbar-color: var(--bs-primary) rgba(0, 0, 0, 0.1);
  }
  
  .winners-scroll::-webkit-scrollbar {
    width: 5px;
  }
  
  .winners-scroll::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
  }
  
  .winners-scroll::-webkit-scrollbar-thumb {
    background-color: var(--bs-primary);
    border-radius: 10px;
  }
  
  .winner-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    background-color: var(--bs-primary);
    border: 0.5px solid rgba(var(--bs-primary-rgb), 0.4);
    width: 100%;
    height: 84px;
    padding: 1rem;
    border-radius: 4px;
    margin: 8px 0;
    transition: transform 0.2s ease;
    text-decoration: none;
    cursor: pointer;
  }
  
  .winner-item:hover {
    transform: translateX(5px);
    border-color: var(--bs-primary);
    filter: brightness(1.1);
  }
  
  .winner-item img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    border: 1px solid var(--bs-primary);
    object-fit: cover;
  }
  
  .winner-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
  }
  
  .winner-name {
    text-align: left;
    font-weight: 500;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: white;
    margin-bottom: 4px;
  }
  
  .winner-game {
    font-size: 12px;
    color: rgb(230, 230, 230);
  }
  
  .title-ganhadores {
    background-color: #11131B;
    color: var(--bs-primary);
    padding: 10px;
    text-transform: uppercase;
    text-align: center;
    border-bottom: 1px solid var(--bs-primary);
    margin-bottom: 10px;
    font-family: 'Pixeled', monospace;
  }
  
  /* Seção FAQ - Perguntas Frequentes */
  .faq-container {
    width: 100%;
    background-color: #191c24;
    border-radius: 8px;
    overflow: hidden;
  }
  
  .faq-item {
    border-bottom: 1px solid #2c2e36;
  }
  
  .faq-item:last-child {
    border-bottom: none;
  }
  
  .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .faq-question:hover {
    background-color: #222530;
  }
  
  .faq-question h5 {
    margin: 0;
    color: #ffffff;
    font-size: 1.1rem;
  }
  
  .faq-toggle {
    color: var(--bs-primary);
    font-size: 1.5rem;
    font-weight: bold;
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .faq-answer {
    padding: 0 20px 20px;
    color: #9ca3af;
  }
  
  .faq-answer p {
    margin: 0;
    line-height: 1.6;
  } 