@charset "UTF-8";

/*
 * Nanum Gothic (Korean) http://www.google.com/webfonts/earlyaccess
 */

  /* * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
  } */

  body_sport {
      background-color: #f4f6f9;
      color: #333;
      padding: 40px 20px;

  }

  .sport_container {
      max-width: 1200px;
      margin: 0 auto;
  }

  /* 섹션 타이틀 */
  .section-header {
      display: flex;
      align-items: center;
      margin-bottom: 24px;
      font-size: 22px;
      font-weight: 700;
      color: #111;
  }

  .section-header i {
      color: #0055ff;
      margin-right: 8px;
      font-size: 18px;
  }

  /* 3x3 그리드 레이아웃 */
  .grid-container {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
  }

  /* 종목 카드 스타일 */
  .game-card {
      background: #ffffff;
      border-radius: 12px;
      padding: 24px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      border: 1px solid #e2e8f0;
  }

  .game-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
      border-color: #cbd5e1;
  }

  .card-top {
      display: flex;
      align-items: center;
      margin-bottom: 16px;
  }

  .game-icon {
      width: 50px;
      height: 50px;
      background-color: #eff6ff;
      color: #2563eb;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      margin-right: 16px;
  }

  .game-info h3 {
      font-size: 18px;
      font-weight: 700;
      color: #1e293b;
      margin-bottom: 4px;
      font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif  !important;
  }

  .game-info .genre {
      font-size: 13px;
      color: #64748b;
  }

  .card-tags {
      display: flex;
      gap: 6px;
      margin-top: 12px;
      flex-wrap: wrap;
  }

  .tag {
      background-color: #f1f5f9;
      color: #475569;
      font-size: 11px;
      font-weight: 600;
      padding: 4px 8px;
      border-radius: 4px;
  }