.my-sport-ticket-page {
  width: 100%;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.my-sport-ticket-page .my-sport-ticket-container {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 24px;
}

/* Seção de Apostas */
.my-sport-ticket-page .my-sport-bets-section {
  width: 1344px;
  height: 698px;
  border: 4px solid #fcfcc7;
  border-radius: 10px;
  background: linear-gradient(180deg, #310102 0%, #741a22 50%, #330002 100%);
  overflow-y: hidden;
}

.my-sport-ticket-page .my-sport-section-header {
  width: 100%;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 4px solid #fcfcc7;
  font-size: 24px;
  color: #fff;
  background: linear-gradient(180deg, #ffc300 0%, #5f3314 63.94%, #c59429 100%);
}

.my-sport-ticket-page .my-sport-bets-list {
  width: 100%;
  height: 650px;
  padding: 32px;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  overflow-y: auto;
}

/* Card de Aposta */
.my-sport-ticket-page .my-sport-bet-card {
  width: calc((100% - 64px) / 3);
  height: 292px;
  border: 4px solid #fcfcc7;
  border-radius: 10px;
  background: linear-gradient(180deg, #5e0002 0%, #8b3a41 50%, #7b0005 100%);
  overflow: hidden;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.my-sport-ticket-page .my-sport-bet-header {
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 24px;
  color: #fff;
  border-bottom: 4px solid #fcfcc7;
  background: linear-gradient(180deg, #ffc300 0%, #5f3314 63.94%, #c59429 100%);
}

.my-sport-ticket-page .my-sport-bet-header.waiting-result {
  background: linear-gradient(180deg, #ffc300 0%, #5f3314 63.94%, #c59429 100%);
}

.my-sport-ticket-page .my-sport-bet-header.bet-won {
  background: linear-gradient(
    10.95deg,
    #137400 -17.19%,
    #114e05 8.69%,
    #5aa347 143.02%
  );
}

.my-sport-ticket-page .my-sport-bet-header.bet-lost {
  background: linear-gradient(180deg, #af0000 0%, #78000a 72.6%, #6c1018 100%);
}

.my-sport-ticket-page .my-sport-bet-body {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  flex: 1;
}

.my-sport-ticket-page .my-sport-bet-body .my-teams-crests-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  width: 84px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 5px;
}

.my-sport-ticket-page .my-sport-bet-body .my-bet-odd {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  opacity: 0.5;
  width: 100%;
}

.my-sport-ticket-page .my-sport-bet-body .my-bet-odd.my-opacity-1 {
  opacity: 1;
}

.my-sport-ticket-page .my-sport-bet-body .my-bet-odd.my-selected-odd {
  opacity: 1;
  background: linear-gradient(180deg, #ffc400 0%, #5f3c14 63.94%, #915400 100%);
}

.my-sport-ticket-page
  .my-sport-bet-body
  .my-bet-odd.my-home-odd.my-selected-odd {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.my-sport-ticket-page
  .my-sport-bet-body
  .my-bet-odd.my-draw-odd.my-selected-odd {
  border-radius: 0;
}

.my-sport-ticket-page
  .my-sport-bet-body
  .my-bet-odd.my-away-odd.my-selected-odd {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.my-sport-ticket-page .my-bet-info-container-sport {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
  height: 100%;
}

.my-sport-ticket-page .my-bet-info-container-sport .my-match-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.my-sport-ticket-page .my-bet-info-container-sport .my-match-odd-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

/* Seção de Resumo */
.my-sport-ticket-page .my-sport-summary-section {
  width: 480px;
  height: 698px;
  border: 4px solid #fcfcc7;
  border-radius: 10px;
  background: linear-gradient(180deg, #310102 0%, #741a22 50%, #330002 100%);
  overflow: hidden;
}

.my-sport-ticket-page .my-sport-summary-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  height: calc(100% - 48px);
}

/* Número do Bilhete */
.my-sport-ticket-page .my-sport-ticket-number {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.my-sport-ticket-page .my-sport-ticket-id {
  font-size: 40px;
  color: #fcfcc7;
}

/* Lista de Informações */
.my-sport-ticket-page .my-sport-info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.my-sport-ticket-page .my-sport-info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 28px;
  color: #fff;
}

/* Botão de Impressão */
.my-sport-ticket-page .my-sport-print-btn {
  width: 100%;
  height: 48px;
  margin-top: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  border: 4px solid #fcfcc7;
  border-radius: 5px;
  font-size: 24px;
  color: #fff;
  background: linear-gradient(
    10.95deg,
    #137400 -17.19%,
    #114e05 8.69%,
    #5aa347 143.02%
  );
}

/* Responsividade */
@media (max-width: 1200px) {
  .my-sport-ticket-page .my-sport-ticket-container {
    flex-direction: column;
    align-items: center;
  }

  .my-sport-ticket-page .my-sport-bets-section {
    width: 100%;
  }

  .my-sport-ticket-page .my-sport-bet-card {
    width: calc((100% - 32px) / 2);
  }
}
