.game-summary-section {
    padding: 20px;
    background: linear-gradient(to bottom, #00203f, #005f73);
    border-radius: 15px;
    color: #fff;
    font-family: 'Arial', sans-serif;
}

.game-summary-section h2 {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.team-overview {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.team-box {
    text-align: center;
}

.team-logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 10px;
}

.vs-box {
    font-size: 24px;
    font-weight: bold;
    color: #f4a261;
    padding: 0 20px;
}

.stat-comparison {
    margin-top: 20px;
}

.stat-row {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.stat-label {
    width: 100px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}

.stat-bars {
    display: flex;
    flex: 1;
    align-items: center;
    gap: 10px;
}

.stat-bar {
    flex: 1;
    height: 25px;
    text-align: center;
    line-height: 25px;
    border-radius: 5px;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
}

.stat-bar.away {
    background: #e63946;
}

.stat-bar.home {
    background: #2a9d8f;
}

.shooting-stats {
    margin-top: 40px;
    text-align: center;
}

.shooting-stats h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.shooting-comparison {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.shooting-item {
    text-align: center;
}

.circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: conic-gradient(#f4a261 {{ data-value }}%, #eaeaea 0%);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    margin: 0 auto;
}


/* Mobile adjustments */
@media (max-width: 768px) {
  .game-betting-layout {
    flex-direction: column;
    align-items: center;
  }

  .team-panel, .game-info {
    width: 100%;
    margin-bottom: 20px;
  }

  .team-logo {
    width: 80px;
    height: 80px;
  }

  .betting-table, .recommended-plays-table {
    font-size: 14px;
    width: 100%;
    overflow-x: auto;
  }

  .last-10-games th, .last-10-games td {
    font-size: 12px;
    padding: 5px;
  }

  .avg-stats-container, .game-summary-section {
    flex-direction: column;
    align-items: center;
  }

  .team-averages, .graph-container {
    width: 100%;
    margin-bottom: 20px;
  }
}
